Re: import

2014-02-11 Thread Vineet Naik
+1 for getting yourself familiar with Python first before trying to learn a framework like django. Since you mentioned that you have no significant programming experience, I would like to suggest "Learn Python the hard way" which is free to read online ( http://learnpythonthehardway.org/book/) Re

Re: no style in admin pages; learning from djangobook.com

2013-07-01 Thread Vineet Naik
group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > For more options, visit https://groups.goo

Re: Is there any good tutorial on how to daemonize celery?

2013-06-04 Thread Vineet Naik
wrote: > Yeah Vineet, > > I've gone through that. I mentioned it in the first question on SO. You > will even see my settings there. > > Regards, > > > On 4 June 2013 15:55, Vineet Naik wrote: > >> Hi Manu, >> >> Have you seen the "Runnin

Re: Is there any good tutorial on how to daemonize celery?

2013-06-04 Thread Vineet Naik
Hi Manu, Have you seen the "Running the worker as a daemon" section of celery docs - http://docs.celeryproject.org/en/latest/tutorials/daemonizing.html It also includes an example with Django and virtualenv. Regards, Vineet On Tue, Jun 4, 2013 at 3:47 PM, Manu wrote: > Hi all, > > I have had

Re: Urgent-lost everything with ./manage.py migrate myapp 0001

2013-05-14 Thread Vineet Naik
nsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users?hl=en. > For more option

A question about using django compressor with CDN

2013-05-12 Thread Vineet Naik
Hello, I have a question about the django_compressor[1] app. Sorry if this violates the rules of the mailing list but after asking the question on github issues section and not receiving any reply, I think may be someone who is using django_compressor can help me here. I am trying out django_comp

Re: How do I test a function that calls a web API?

2013-05-03 Thread Vineet Naik
Hi Mike, you can use the mock[1] library for this. [1]: http://www.voidspace.org.uk/python/mock/ On Fri, May 3, 2013 at 11:09 AM, Mike wrote: > I'm starting to write tests for my Django project but I'm not sure how to > test a function that calls out to a web API. I read somewhere that I > s