Re: How to insert a search form inside Django?

2010-05-19 Thread bx2
I'm suggesting to use one of signal-based approches as explained at
DjangoCon presentation by co-author of Satchmo.
Here is the link with examples of source code:
http://www.slideshare.net/ecomsmith/custom-signals-for-uncoupled-design.

Furthermore you can look at DjangoBook here: 
http://www.djangobook.com/en/2.0/chapter07/

Have fun!
bx2


On 19 Maj, 08:47, ravi krishna  wrote:
> Hi,
> I want to include a search button inside my Django, which retrieves data
> from some google API or Wikimapia API, But i am stuck with adding a search
> option inside Django. i am a beginner with Django and Python programming.
> Can somebody please help me with this.
>
> --
> Regards,
> Rav!
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group 
> athttp://groups.google.com/group/django-users?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: How to make django use a different python interpreter located at some random location.

2010-03-11 Thread bx2
The best option is to use buildout (there is no need for creating
virtualenv - much more simple and much more flexible solution). Also
it will be easier to further deploy your projects.

The second option is to modify your manage.py script by adding custom
path to it ie.

import sys
sys.path[0:0] = [ ...]

regards,
bx2

On 11 Mar, 05:41, Abhinov  wrote:
> Hi All,
>
> How to make my django use a different python interpreter located at
> some random location ?
> Any help will be of great help.
>
> Regards,
> Abhinov

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.