Re: Django w/ XML DOM

2015-09-18 Thread Timothy W. Cook
lxml - I assume using XPath will do what you want. I am not familiar with XML cursor and jaxb. On Fri, Sep 18, 2015 at 9:03 PM, Arnab Banerji wrote: > Hi - I am looking for a way to display XML documents in Django and get the > xml section information from cursor location using XMLCursor like >

Django w/ XML DOM

2015-09-18 Thread Arnab Banerji
Hi - I am looking for a way to display XML documents in Django and get the xml section information from cursor location using XMLCursor like capabilities from XMLBeans (or its replacement, jaxb). Is there a supported library for that? Unfortunately, JSON would not be a good structure for this d

[newbie] import error after restart (virtualenv)

2015-09-18 Thread David
Dear Django experts, I am reading through Harry Percival's "Test-Driven Development with Python". As I finished chapter 3 yesterday, I was fully on track, perfectly aligned with the book. Today I restarted my computer, activated the virtualenv in question -- and get an error message that was not

[no subject]

2015-09-18 Thread Ketan Mittal
Hi I am a Django newbie and wish to contribute to open source. Please guide me through the initial procedure. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dja

Re: Django deployment

2015-09-18 Thread Javier Guerra Giraldez
On Fri, Sep 18, 2015 at 4:51 PM, monoBOT wrote: > The guide Mario Gudelj shared is probably the best you can find on internet. (the best if you like gunicorn) -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from

Re: Django deployment

2015-09-18 Thread monoBOT
The guide Mario Gudelj shared is probably the best you can find on internet. 2015-09-18 21:06 GMT+01:00 Mario Gudelj : > Try this guide > http://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/ > On 18 Sep 2015 6:55 am, "Hugo Kitano" wrote: > >> What is the nginx

Re: Django deployment

2015-09-18 Thread Mario Gudelj
Try this guide http://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/ On 18 Sep 2015 6:55 am, "Hugo Kitano" wrote: > What is the nginx config? And where do I find it? > > On Tuesday, September 15, 2015 at 12:46:40 PM UTC-7, Shawn Milochik wrote: >> >> It's very si

Re: How to hook in/extend Django?

2015-09-18 Thread C. Kirby
Celery[0] with a periodic task[1]. [0] http://celery.readthedocs.org/en/latest/django/first-steps-with-django.html [1]http://celery.readthedocs.org/en/latest/userguide/periodic-tasks.html Kirby On Friday, September 18, 2015 at 10:00:34 AM UTC-5, Stan Rosenbaum wrote: > > > Hey All, > > So my t

How to hook in/extend Django?

2015-09-18 Thread Stan Rosenbaum
Hey All, So my team and I are trying to build a simple Status update app for our group. We want to be able to send SMS text messages to our Django app and update our database entries from the text messages. We have a library that pulls the data from our SMS service [Twilio], but I am not sur