4,355 reputation
31138
bio website
location Brooklyn, NY
age 23
visits member for 2 years, 7 months
seen 9 hours ago
stats profile views 282

2d
comment Python 2 and 3 metaclass compatibility when kwargs are used
You are right. The issue turned out to be related to Django and how I implemented my custom login within the __new__. I just blamed the issue on compatibility. Thanx for clarifying the situation.
2d
accepted Python 2 and 3 metaclass compatibility when kwargs are used
May
18
asked Python 2 and 3 metaclass compatibility when kwargs are used
May
17
answered Import modules that are above project root
May
2
comment How can I open a new tab in Chrome with Python?
how do you run Python in Chrome?
May
1
revised django postgresql insert or update on table violates foreign key constraint
added 6 characters in body
Apr
30
comment how to securely store a password for a 3rd party service in django?
Do the third party services you will be looking have Oauth? No matter how secure you make your communication between the servers, it is conceptually insecure (and unfortunately it cannot be made more secure). Oauth solves all of these issues.
Apr
28
answered Retrieving parent url parameters from ajax call?
Apr
26
awarded  Popular Question
Apr
25
awarded  Notable Question
Apr
20
awarded  Famous Question
Apr
17
comment How to save a local file in a FileField in django
Can you post the full traceback and what is the type of msg['file']. Is that coming from request.FILES?
Apr
15
awarded  Popular Question
Apr
14
revised Importing django modules from java
edited tags
Apr
14
comment How long django 1.4 will be supported?
This sort of question does not have a best fit here on StackOverflow. It will become irrelevant once new versions of Django are released. As for your question, please refer to Django web site for the answer. docs.djangoproject.com/en/dev/internals/security/…
Apr
13
answered django runserver error github fork
Apr
13
comment Filtering model results for Django admin has many data
Also please post the code what you have in admin.py? Without that, it is difficult to debug the issue since by default Django does use pagination to show the results in multiple table. docs.djangoproject.com/en/dev/ref/contrib/admin/…
Apr
13
comment Filtering model results for Django admin has many data
How did you get this SQL code. Did you use django-debug-toolbar?
Apr
13
revised Filtering model results for Django admin has many data
Some English fixes and code formatting for SQL
Apr
12
comment Split Django models and modelforms in seperate file
I would then highly recommend to read the Dive Into Python book. Python is really easy however without understanding the basics it can be overwhelming and confusing. Having a good grasp of Python basics will help you a lot in learning and using Django.