Re: Incorrect Python Version Being Used

2012-11-07 Thread Bestrafung
Thanks for the info. I built mine using:
./configure --with-apxs=/usr/local/apache/bin/apxs 
--with-python=/opt/python2.7/bin/python

I'm fairly certain everything is good there. I'm able to load both projects 
individually using "python manage.py runserver 0.0.0.0:8000" without issue. 
The trouble now comes from trying to access them via the Apache server. 
There's some kind of problem with the bootstrap .wsgi file(s) and I also 
need to figure out how to load both at the same time as Apache spits an 
error and refuses to build the vhost with multiple projects. I hope some of 
this helps others but my issue is definitely in the mod_wsgi/Apache setup 
now.


On Tuesday, November 6, 2012 1:45:49 PM UTC-5, Nikolas Stevenson-Molnar 
wrote:
>
>  If you're running via mod_wsgi, then you need to look at which version of 
> Python mod_wsgi was built with. Probably *not *2.7 in that case.
>
>
> http://code.google.com/p/modwsgi/wiki/InstallationIssues#Multiple_Python_Versions
>
> _Nik
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/prxw6dH87zsJ.
To post to this group, send email to django-users@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: Error setting up Django 1.4 on cPanel Server

2012-11-06 Thread Bestrafung
I think I've pretty well ruled out python as the issue. It looks to be in 
the Apache/mod_wsgi setup somewhere. I can start the built-in runserver, 
"python manage.py runserver 0.0.0.0:8000", and work with it but Apache 
refuses to work. I've never worked with mod_wsgi or Django before so I'm 
not sure what's going on yet. For now I'm just using runserver to set 
everything up while working on the bugs.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/PgtPMRu1HbkJ.
To post to this group, send email to django-users@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: Incorrect Python Version Being Used

2012-11-06 Thread Bestrafung
I'm not familiar with how to do this but the suggestion is noted. I will 
look into it. Thanks.

On Tuesday, November 6, 2012 11:26:41 AM UTC-5, Thomas wrote:
>
> Use virtualenv. Always. 
>
>  - Tom 
> > -- 
> > You received this message because you are subscribed to the Google 
> > Groups "Django users" group. 
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msg/django-users/-/WqpZIEJqalcJ. 
> > To post to this group, send email to 
> > django...@googlegroups.com. 
>
> > To unsubscribe from this group, send email to 
> > django-users...@googlegroups.com . 
> > For more options, visit this group at 
> > http://groups.google.com/group/django-users?hl=en. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/yd9js8Dy6L0J.
To post to this group, send email to django-users@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: Incorrect Python Version Being Used

2012-11-06 Thread Bestrafung
Thank you for the info. That's how I've been doing it but assumed something 
wasn't right as it wasn't working and I keep getting errors. I think I've 
ruled out python as the problem Need to start looking at the mod_wsgi and 
Apache setup.

I have another post regarding Apache errors I will get back to, is there a 
way to close this topic?

On Tuesday, November 6, 2012 11:14:53 AM UTC-5, Nikolas Stevenson-Molnar 
wrote:
>
> Whenever you run a Django command (e.g., startapp, runserver), just use 
> the full path to your Python 2.7 interpreter. For example: 
>
> $ /opt/python2.7/bin/python manage.py runserver 80 
>
> Similarly, if you're installing packages via pip or easy_install: 
>
> $ /opt/python2.7/bin/pip install some_package 
> $ /opt/python2.7/bin/easy_install some_package 
>
> _Nik 
>
> On 11/6/2012 7:09 AM, Bestrafung wrote: 
> > I have been running into this problem for a long while trying to setup 
> > my first Django project and I keep coming back to this problem. I am 
> > relatively new when it come to Linux, I'm learning but still have a 
> > long way to go. I am using CentOS 5.8 cPanel which comes with Python 
> > 2.4. Following instructions I found online for setting up Django with 
> > cPanel I compiled/installed Python 2.7 from source to /opt/python2.7 
> > and set an alias (alias python="/opt/python2.7/bin/python") in the 
> > root and user's .bash_profile and python 2.7 launches as expected when 
> > you use the python command. Every time I try to start a project or 
> > work with it however the system default python 2.4 keeps popping up. I 
> > think this may be the single cause of all of my issues. When starting 
> > a project I have just appended the python command to make sure it 
> > started with the correct version. I believe that once the project is 
> > started it isn't working because everything is still trying to use 
> > 2.4. Is there a way to make Django use my 2.7 install instead of 2.4 
> > without breaking the system by making the 2.7 system default? 
> > -- 
> > You received this message because you are subscribed to the Google 
> > Groups "Django users" group. 
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msg/django-users/-/WqpZIEJqalcJ. 
> > To post to this group, send email to 
> > django...@googlegroups.com. 
>
> > To unsubscribe from this group, send email to 
> > django-users...@googlegroups.com . 
> > For more options, visit this group at 
> > http://groups.google.com/group/django-users?hl=en. 
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/OVUWdCah_fwJ.
To post to this group, send email to django-users@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.



Incorrect Python Version Being Used

2012-11-06 Thread Bestrafung
I have been running into this problem for a long while trying to setup my 
first Django project and I keep coming back to this problem. I am 
relatively new when it come to Linux, I'm learning but still have a long 
way to go. I am using CentOS 5.8 cPanel which comes with Python 2.4. 
Following instructions I found online for setting up Django with cPanel I 
compiled/installed Python 2.7 from source to /opt/python2.7 and set an 
alias (alias python="/opt/python2.7/bin/python") in the root and user's 
.bash_profile and python 2.7 launches as expected when you use the python 
command. Every time I try to start a project or work with it however the 
system default python 2.4 keeps popping up. I think this may be the single 
cause of all of my issues. When starting a project I have just appended the 
python command to make sure it started with the correct version. I believe 
that once the project is started it isn't working because everything is 
still trying to use 2.4. Is there a way to make Django use my 2.7 install 
instead of 2.4 without breaking the system by making the 2.7 system default?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/WqpZIEJqalcJ.
To post to this group, send email to django-users@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.



Error setting up Django 1.4 on cPanel Server

2012-11-05 Thread Bestrafung
I am slowly working all of this out and the first 3 or 4 times I tried to 
setup Django on our cPanel server I kept getting the same 403 Forbidden 
error. I scrapped everything and started from scratch as I wanted to use 
Python 2.7 instead of 2.5. Now I am receiving completely different errors 
I've never encountered before. I used the below post on the cpanel forums 
as a guide, making my own changes as necessary, documenting my full 
progress along the way. The new error lists in the browser as a 200 error 
which has me confused as I thought a 200 meant everything was good. I'm 
re-checking everything for a typo but I really have no idea what's causing 
this.

http://forums.cpanel.net/f5/django-python-cpanel-71229-p2.html#post439009

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/bl1zmYqAQUoJ.
To post to this group, send email to django-users@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.

// Server Setup \\
\\==//

// download and innstall Python 2.7
// file URL http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz
tar -xvzf Python-2.7.3.tgz
cd Python-2.7.3
./configure --enable-shared --prefix=/opt/python2.7
make install

// alias python so always opens 2.7
cd /root
echo alias python='/opt/python2.7/bin/python' >> .bash_profile

// fix LD_LIBRARY_PATH
echo /opt/python2.7/lib > /etc/ld.so.conf.d/python2.7.conf
ldconfig

/ install setuptools
// URL http://peak.telecommunity.com/dist/ez_setup.py
python ez_setup.py
/ install MySQLdb for Python
// http://pypi.python.org/pypi/MySQL-python/1.2.3
tar -xvzf MySQL-python-1.2.3.tar.gz
cd MySQL-python-1.2.3
python setup.py build
python setup.py install

// test import
python
import sqlite3
import MySQLdb
quit()

// install mod_wsgi
// http://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz
tar -xvzf mod_wsgi-3.4.tar.gz
cd mod_wsgi-3.4
./configure --with-apxs=/usr/local/apache/bin/apxs 
--with-python=/opt/python2.7/bin/python
make
make install

// In WHM | Apache Setup, in Pre VirtualHost Include, add:
LoadModule wsgi_module /usr/local/apache/modules/mod_wsgi.so
AddHandler wsgi-script .wsgi
WSGISocketPrefix run/wsgi

// create a “run” directory for Apache's .pid files
mkdir -p /usr/local/apache/run
chmod a+w /usr/local/apache/run

===
 Client Setup
===

// Add to user's .bash_profile:
# Use python 2.7
alias python='/opt/python/bin/python'
# Set python path
export PYTHONPATH='$PYTHONPATH:/home/[username]/sites/[domain.com]'

// Prepare the project folder
mkdir -p /home/[user]/sites/[domain]
cd /home/[user]/sites/[domain]
svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk
=OR=
svn co http://code.djangoproject.com/svn/django/branches/releases/1.4.X/ django
ln -s django-trunk/django django
mkdir .python-eggs
chmod 777 .python-eggs
/home/[username]/sites/domain.com/django/bin/django-admin.py startproject foobar
cd /home/[username]
chown -R [username]: sites

// test imports as user
python
import MySQLdb
import sqlite3
import django
quit()

// create bootstrap
nano /home/username/public_html/something.wsgi

// contents of bootstrap:
#!/opt/python2.7/bin/python
import os, sys
sys.path.insert(0,'/home/username/sites/domain.com')
os.environ['DJANGO_SETTINGS_MODULE'] = 'foobar.settings'
os.environ['PYTHON_EGG_CACHE'] = '/home/username/sites/domain.com/.python-eggs'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

// setup vhost
mkdir -p /usr/local/apache/conf/userdata/std/2/username/domain.com
nano /usr/local/apache/conf/userdata/std/2/username/domain.com/vhost.conf

// contents of vhost.conf

Alias /robots.txt /home/username/sites/domain.com/foobar/media/robots.txt
Alias /site_media /home/username/sites/domain.com/foobar/media
Alias /admin_media /home/username/sites/domain.com/django/contrib/admin/media



# See the link below for an introduction about this mod_wsgi config.
# 
http://groups.google.com/group/modwsgi/browse_thread/thread/60cb0ec3041ac1bc/2c547b701c4d74aa

WSGIScriptAlias / /home/username/public_html/something.wsgi
WSGIDaemonProcess [username] processes=7 threads=1 display-name=%{GROUP}
WSGIProcessGroup [username]
WSGIApplicationGroup %{GLOBAL} 


# This fixes the broken ErrorDocument directive we inherit that breaks auth
# if we use a WSGI app.
ErrorDocument 401 "Authentication Error"
ErrorDocument 403 "Forbidden"

// include the vhost in apache
/scripts/verify_vhost_includes
/scripts/ensure_vhost_includes --user=username

// restart django just to be sure
touch /home/username/public_html/something.wsgi

Re: New Project 403 Forbidden Error

2012-10-08 Thread Bestrafung
I could probably set it up outside of cPanel but ultimately once I get it 
working and learn it I want to set it up for multiple accounts. Better to 
pound my head against the bugs and figure them out now, I think. I've 
noticed that if I run the built-in development web server the project seems 
to run fine on it's bound port. Does the built-in dev server provide it's 
own startup page or is that loaded from the Django testproject? It's 
basically just a page that says Django is setup and now needs to be 
customized or whatever. I'm fighting dependencies on another issue at the 
moment so I can't fire up the dev server again yet. I'm wondering if there 
isn't just a permissions or config error with the mod_wsgi. I know the 
guide was from 2008 and I kept that in mind as I made my way through 
checking for updated files and dependencies, while keeping as close to the 
guide as possible. I could have done a Python 2.7 setup with some extra 
work but I stayed with 2.5 following the guide for example.

On Tuesday, October 2, 2012 8:10:18 PM UTC-4, John Yeukhon Wong wrote:
>
> Just a quick question. Is is possible for you to manually setup this 
> without bothering cpanel?
> I mean u should have access to CentOS (ssh into it) right?
>
> Then the setup should be very easy if you have that. I will use Nginx + 
> gunicorn if you really have that option. I want to make sure you do without 
> bothering these custom setup. Note that blog post is from 2008 and at the 
> time there were very little tools usable for Django.
>
> On Wednesday, September 26, 2012 2:14:01 PM UTC-4, Bestrafung wrote:
>>
>> I have been following these guides to setup Django on a CentOS cPanel 
>> server: 
>> http://forums.cpanel.net/f5/django-python-cpanel-71229-p2.html#post439009and 
>> http://blog.perplexedlabs.com/2008/11/10/setup-python-25-mod_wsgi-and-django-10-on-centos-5-cpanel/.
>>  
>> After following those guides everything would appear to be working normally 
>> except that when I visit the page I receive the Django 403 error specified 
>> in the vhost.conf file. I have checked folder and file permissions and 
>> everything appears to be correct. The guides said after following those 
>> steps I should have a working Django install. Am I missing something? Any 
>> help would;d be greatly appreciated.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/h1hsjU71SEkJ.
To post to this group, send email to django-users@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: New Project 403 Forbidden Error

2012-10-01 Thread Bestrafung
Ok, I'm very new to all of this. I assumed following that guide would give 
me a basic working setup including some kind of "default" or starting 
pages/templates. If I understand correctly I have to create some kind of 
pages and/or templates still. I'm trying to figure that out now.

On Thursday, September 27, 2012 8:24:25 AM UTC-4, Amyth wrote:
>
> What View are you getting the error on ? can you post the code to the View 
> and the template ?
>
> Thanks & Regards
> 
>
> Amyth [Admin - Techstricks]
> Email - aroras@gmail.com , ad...@techstricks.com
> Twitter - @mytharora
> http://techstricks.com/
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/fXmuHgEoqW4J.
To post to this group, send email to django-users@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.



New Project 403 Forbidden Error

2012-09-26 Thread Bestrafung
I have been following these guides to setup Django on a CentOS cPanel 
server: 
http://forums.cpanel.net/f5/django-python-cpanel-71229-p2.html#post439009and 
http://blog.perplexedlabs.com/2008/11/10/setup-python-25-mod_wsgi-and-django-10-on-centos-5-cpanel/.
 
After following those guides everything would appear to be working normally 
except that when I visit the page I receive the Django 403 error specified 
in the vhost.conf file. I have checked folder and file permissions and 
everything appears to be correct. The guides said after following those 
steps I should have a working Django install. Am I missing something? Any 
help would;d be greatly appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/J3LPprjTEsMJ.
To post to this group, send email to django-users@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: SyntaxError Creating New Project

2012-09-18 Thread Bestrafung
I restarted from the beginning using the previously mentioned guide but 
also a very helpful post on the cpanel.net forums and there were some 
missed steps and minor misconfigurations. Everthing seems to be working on 
the webserver side but now have some strange permissions issues that'll go 
into another post. I hope this helps anyone else interested in setting up 
Django on a CentOS 5.x cPanel system.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/GukGIRK-mpwJ.
To post to this group, send email to django-users@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: SyntaxError Creating New Project

2012-09-06 Thread Bestrafung
I've been extremely busy with other projects and just got back to this. It 
would appear you are correct about it not working correctly. I'm new to all 
of this and I'd have been lost long ago without that guide but it is 
severely lacking. Below is the result of the manage.py command.

[-bash-3.2 root@server1: 
/home/username/sites/domain.com/django/bin/testproject] # 
/opt/python2.5/bin/python manage.py
Traceback (most recent call last):
  File "manage.py", line 8, in 
from django.core.management import execute_from_command_line
ImportError: No module named django.core.management


On Monday, August 27, 2012 6:07:50 PM UTC-4, Melvyn Sopacua wrote:
>
> On 27-8-2012 17:05, Bestrafung wrote: 
> > Ok, I think it's worked out now. I added the export line to the root 
> > .bash_profile and then changed the shebang in django-admin.py to 
> > "/opt/python2.5/bin python" and now everything seems to be working. 
>
> I imagine there's a typo there and no space, but a forward slash. 
> > If 
> > anyone is working on an older Red Hat/CentOS system and has to follow 
> the 
> > guide I'm following I hope this helps them. 
> > 
> It's kind of weird that this fix works without problems. You should try 
> the following in your project directory: 
> /opt/python2.5/bin/python manage.py shell 
> On the shell you get then: 
> >>> from django.db import models 
> >>> print models.__file__ 
>
> I'm quite interested what that shows since your installation seems to be 
> all over the place. 
>
> -- 
> Melvyn Sopacua 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/RzVoU1PEINkJ.
To post to this group, send email to django-users@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: SyntaxError Creating New Project

2012-08-27 Thread Bestrafung
Ok, I think it's worked out now. I added the export line to the root 
.bash_profile and then changed the shebang in django-admin.py to 
"/opt/python2.5/bin python" and now everything seems to be working. If 
anyone is working on an older Red Hat/CentOS system and has to follow the 
guide I'm following I hope this helps them.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/xgqKgMFwFD4J.
To post to this group, send email to django-users@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: SyntaxError Creating New Project

2012-08-27 Thread Bestrafung
I ran python and checked the version number. This is what I get:

[-bash-3.2 root@server1: ~] # python
Python 2.5 (r25:51908, Aug 20 2012, 11:55:47)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>

When I run "import django" I get:

>>> import django
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named django


I assumed this was normal since the guide I'm following has all of the 
django setup in the user's home directory. Is this the problem? I will keep 
looking into it, the guide had me enter export 
PYTHONPATH='$PYTHONPATH:/home/username/sites/domain.com' in the user's 
.bash_profile, since I am logged in as root should I add that to the 
/root/.bash_profile?

On Monday, August 27, 2012 9:51:22 AM UTC-4, Bestrafung wrote:
>
> Thank you all for the tips. I was pretty sure I tried using the full path 
> to the 2.5 install with the same error but I'll check again. I'll let you 
> know what I find.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/DVeH65k8aUcJ.
To post to this group, send email to django-users@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: SyntaxError Creating New Project

2012-08-27 Thread Bestrafung
Thank you all for the tips. I was pretty sure I tried using the full path 
to the 2.5 install with the same error but I'll check again. I'll let you 
know what I find.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/90kVMNbxfawJ.
To post to this group, send email to django-users@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.



SyntaxError Creating New Project

2012-08-22 Thread Bestrafung
I'm new to Django and though I've dabbled with Linux off and on for a 
decade I'm still learning so please go easy on me. I'm following this 
guideto
 setup a Django 1.4.1 test project. So far I've setup Python 2.5 with 
MySQL-python-1.2.3 and setuptools, setup mod_wsgi, and edited 
.bash_profile. I've downloaded Django 1.4.1 (not trunk) and so far 
everything looks good. As soon as I run "django-admin.py startproject 
testproject" I receive an error and am having trouble resolving it. I 
apologize if this has come up before bet a quick search wasn't helpful. 
Thanks in advance for any assistance, the error is below:

[-bash-3.2 root@server1: /home/username/sites/domain.com] # 
/home/username/sites/domain.com/django/bin/django-admin.py startproject 
testproject
Traceback (most recent call last):
  File "/home/username/sites/domain.com/django/bin/django-admin.py", line 
2, in ?
from django.core import management
  File "/home/username/sites/domain.com/django/__init__.py", line 15
parts = 2 if version[2] == 0 else 3
   ^
SyntaxError: invalid syntax
[-bash-3.2 root@server1: /home/username/sites/domain.com] #


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/WszNLKVNcxcJ.
To post to this group, send email to django-users@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.