Python News

oursql - a new set of MySQL bindings for python

  • 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.

Grab here

submitted by nosklo
[link] [21 comments]

When can I expect the binary for python 2.7 mysql to come out for windows?

Installing it without the binary is too complicated for me. Thank you in advance.

submitted by monthlyaccount38
[link] [10 comments]

New M2Crypto Module in ActivePython

submitted by sridhr
[link] [comment]

Django Testing Docs v0.01 documentation -- readthedocs.org

submitted by number5
[link] [comment]

Django: How do I create an admin field against a model without it auto-creating a column within the DB for that field?

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.

submitted by nickuk2001
[link] [5 comments]

Introducing Django-colors

submitted by hhh333
[link] [comment]

Global Django requests

submitted by gst
[link] [2 comments]

New features for Django Packages

submitted by gst
[link] [comment]

What is the history of Python Django?

submitted by gst
[link] [comment]

Django snippet: OverwritingStorage - a subclass of FileSystemStorage which overwrites files instead of creating a unique name

submitted by wolever
[link] [comment]