From satyaakam at gmail.com Mon Oct 8 19:20:06 2012 From: satyaakam at gmail.com (satyaakam goswami) Date: Mon, 8 Oct 2012 22:50:06 +0530 Subject: [Ncr-Python.in] Fwd: [Ilugc] Fwd: Class website for "An Introduction to Interactive Programming in Python" is now open In-Reply-To: References: <0000013a3c97c37a-f799da58-dc9e-4c81-9485-7c90c03cdb95-000000@email.amazonses.com> Message-ID: ---------- Forwarded message ---------- From: "An Introduction to Interactive Programming in Python Course Staff" < noreply at coursera.org> Date: Oct 8, 2012 12:28 AM Subject: Class website for "An Introduction to Interactive Programming in Python" is now open To: Dear shrini, Scott, John, Stephen and I are happy to announce that the class website for our Coursera course "An Introduction to Interactive Programming in Python" is now open. The class's homepage is viewable at https://class.coursera.org/interactivepython-2012-001/class/index The class website includes the first week of class materials as well as a welcome survey that we encourage everyone to take. Class will officially start on Oct. 15th, and your first quiz will be due on Oct. 18th. If you have no previous programming experience, we strongly suggest that you start looking over the first week's material this week and get an early start on the first week's activities. (A typical week has 7-8 videos, but we've included more videos in week one to provide more detail.) We'll be monitoring the class forums this week for your questions. We'd like to conclude by sharing a little bit of our philosophy for this class. We've built a new tool (CodeSkulptor) that will make the process of creating, saving and sharing your Python programs easy. We've designed the class curriculum to be fun (focusing on making simple games). However, learning enough programming to be "dangerous" is a challenging task. We're going to ask you to work hard (we estimate 7-9 hours a week). For our part, we have four instructors and lots of community TAs who are committed to answering your questions on the forums and helping you succeed. We're all very excited to be offering this class, and we hope you are equally excited to be taking it. Joe, Scott, John, Stephen An Introduction to Interactive Programming in Python Course Staff You are receiving this email because tshrinivasan at gmail.com is enrolled in An Introduction to Interactive Programming in Python. To stop receiving similar future emails from this class, please click here. Please do not reply directly to this email. If you have any questions or feedback, please post on the class discussion forums. For general questions, please visit our support site . _______________________________________________ ILUGC Mailing List: http://www.ae.iitm.ac.in/mailman/listinfo/ilugc From kumar3180 at gmail.com Tue Oct 23 14:17:37 2012 From: kumar3180 at gmail.com (Raakesh kumar) Date: Tue, 23 Oct 2012 17:47:37 +0530 Subject: [Ncr-Python.in] Dynamic CSV importer Message-ID: Hello Everybody, I am facing a problem that i have an e-commerce website built in django in which i want to have a massive product upload facility. There has to be a panel where merchant can upload a csv file(format should be table structure, i.e. first row will contain headers and rest will contain data) after that we will populate two form to map csv headers with model fields and when user maps them (mapper could be some drop-down thing), data should go in database. If you know any good library for this. In the mean time i am looking at "django-csv-importer". -- Thanks and Regards RAKESH KUMAR http://raakeshkumar.wordpress.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ragsagar at gmail.com Tue Oct 23 17:32:37 2012 From: ragsagar at gmail.com (ragsagar) Date: Tue, 23 Oct 2012 21:02:37 +0530 Subject: [Ncr-Python.in] Dynamic CSV importer In-Reply-To: References: Message-ID: On Tue, Oct 23, 2012 at 5:47 PM, Raakesh kumar wrote: > Hello Everybody, > I am facing a problem that i have an e-commerce website built in django in > which i want to have a massive product upload facility. There has to be a > panel where merchant can upload a csv file(format should be table structure, > i.e. first row will contain headers and rest will contain data) after that > we will populate two form to map csv headers with model fields and when user > maps them (mapper could be some drop-down thing), data should go in > database. > If you know any good library for this. > In the mean time i am looking at "django-csv-importer". Using the csv module in the python standard library you can read the csv file and loop over the data and populate the model user selects. -- blog : ragsagar.wordpress.com mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in ['gmail','com']])])"