Overview

ps_alchemy is extension for pyramid_sacrud which provides SQLAlchemy models.

Look how easy it is to use:

Base = declarative_base()
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))

class PageTree(Base):
    __tablename__ = 'pages'

    id = Column(Integer, primary_key=True)
config.include('ps_alchemy')
config.include('pyramid_sacrud', route_prefix='admin')
config.registry.settings['pyramid_sacrud.models'] = ('webpages', [PageTree, ])

go to http://localhost:6543/sacrud/

Example can be found here https://github.com/sacrud/ps_alchemy/tree/master/example

Support and Development

To report bugs, use the issue tracker.

We welcome any contribution: suggestions, ideas, commits with new futures, bug fixes, refactoring, docs, tests, translations etc

If you have question, contact me sacrud@uralbash.ru or IRC channel #sacrud

License

The project is licensed under the MIT license.

Indices and tables

  Read the Docs
v: latest  
Versions
latest
stable
Free document hosting provided by Read the Docs.