Top "Pylons" questions

emphasizing flexibility and rapid development.

How to create and restore a backup from SqlAlchemy?

I'm writing a Pylons app, and am trying to create a simple backup system where every table is serialized and …

python serialization sqlalchemy pylons
SQLAlchemy - ObjectDeletedError: Instance '<Class at...>' has been deleted. Help

I'm having some issues with deleting rows from a database and then adding new ones. Here's the code: for positionid …

python sql orm sqlalchemy pylons
Sqlalchemy: Latitude and Longitude Float Precision?

I'm using Sqlalchemy to define my tables and such and here is some code I came up with: locations = Table(…

database database-design geolocation sqlalchemy pylons
SQLAlchemy declarative syntax with autoload (reflection) in Pylons

I would like to use autoload to use an existings database. I know how to do it without declarative syntax (…

python reflection sqlalchemy pylons declarative
Python nosetests skip certain Tests

I am working on tests for a web application written in python. Suppose I have 5 tests in my test_login.…

python pylons nosetests
Is there a better way to switch between HTML and JSON output in Pyramid?

# /test{.format} no longer seems to work... config.add_route('test', '/test.{ext}', view='ms.views.test') views.…

python api pylons pyramid
Problem with IF statement in mako template

I have mako template where i check conditions from a simple dict in for loop, like: % for el in seq: % …

python pylons mako