Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scaffolding in pylons

Tags:

python

pylons

Is there anything similar to rails' scaffolding for pylons? I've been poking around google, but only found this thing called dbsprockets, which is fine, although probably way too much for my needs. What I really need is a basic CRUD that is based on the SQLAlchemy model.

like image 284
Bartosz Radaczyński Avatar asked Aug 29 '08 18:08

Bartosz Radaczyński


2 Answers

The question is super old, but hell: http://code.google.com/p/formalchemy/

Gives you basic crud out of the box, customizable to do even relatively complex things easily, and gives you a drop-in Pylons admin app too (written and customizable with the same api, no magic).

like image 200
jbellis Avatar answered Dec 15 '22 01:12

jbellis


I hear you, I've followed the Pylons mailing list for a while looking for something similar. There have been some attempts in the past (see AdminPylon and Restin) but none have really kept up with SQLAlchemy's rapidly developing orm api.

Since DBSprockets is likely to be incorporated into TurboGears it will likely be maintained. I'd bite the bullet and go with that.

like image 45
Brendan Avatar answered Dec 14 '22 23:12

Brendan