Python News
oursql - a new set of MySQL bindings for python
August 31st, 2010 10:00p.m. | Reddit (RSS)
- oursql has real parameterization, sending the SQL and data to MySQL completely separately.
- oursql allows text or binary data to be streamed into the database and streamed out of the database, instead of requiring everything to be buffered in the client.
- oursql can both insert rows lazily and fetch rows lazily.
- oursql has unicode support on by default.
- oursql supports python 2.4 through 2.7 without any deprecation warnings on 2.6+ (see PEP 218) and without completely failing on 2.7 (see PEP 328).
- oursql runs natively on python 3.x.
- oursql is licensed under the BSD license.
[link] [21 comments]
When can I expect the binary for python 2.7 mysql to come out for windows?
August 31st, 2010 7:57p.m. | Reddit (RSS)
Installing it without the binary is too complicated for me. Thank you in advance.
[link] [10 comments]
New M2Crypto Module in ActivePython
Django Testing Docs v0.01 documentation -- readthedocs.org
Django: How do I create an admin field against a model without it auto-creating a column within the DB for that field?
August 29th, 2010 10:52p.m. | Reddit (RSS)
Lets say I have a model 'Pizza' and want it to have a field called 'ingredients', which is entered via the admin, when creating a new Pizza, as a comma delimited string e.g. "Cheese, BBQ Sauce, Sausage, Meatballs". I don't want the 'Pizza' table to have to have a column in the database called 'ingredients' - I can handle that separately using a seperate model and generic.GenericForeignKey(..).
Any ideas would be appreciated!
Thanks in advance.
[link] [5 comments]
Introducing Django-colors
Global Django requests
August 29th, 2010 6:37a.m. | Reddit (RSS)
submitted by gst
[link] [2 comments]
