Re: Newbie: ImportError during syncdb

2014-03-06 Thread Jay Parikh
Hi David, Instead of specifying ''django_bookmarks.bookmarks'' in 'INSTALLED_APPS' i would suggest you to use your app name which you have created e.g someting like as below: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.co

Re: Newbie: ImportError during syncdb

2014-03-06 Thread Jay Parikh
Let say for example i am going to create new app say bookmarks then i will do something like *"python manage.py startapp bookmarks" *likewise whatever name you have passed in place of *bookmarks.* Just place it inside INSTALLED_APPS. On Thu, Mar 6, 2014 at 1:06 PM, Robin Lery wrote: > What the

Re: Analysis of csv data

2014-04-10 Thread Jay Parikh
Hi Saransh, Well for just analyzing csv files you can use simple python file io but in order to do more from those extracted data then you could use d3.js for drawing data driven graphs. Could you please provide what kind of csv data you have then probably it would be easy to sort it out. Best, J