Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sacrud/ps_alchemy
SQLAlchemy provider for pyramid_sacrud.
https://github.com/sacrud/ps_alchemy
Last synced: 3 months ago
JSON representation
SQLAlchemy provider for pyramid_sacrud.
- Host: GitHub
- URL: https://github.com/sacrud/ps_alchemy
- Owner: sacrud
- License: mit
- Created: 2015-12-07T16:20:23.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-10T21:39:29.000Z (8 months ago)
- Last Synced: 2024-05-10T03:44:36.784Z (6 months ago)
- Language: Python
- Homepage: http://ps-alchemy.rtfd.io
- Size: 558 KB
- Stars: 6
- Watchers: 4
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-pyramid - ps_alchemy - extension for pyramid_sacrud (Admin interface)
README
|Build Status| |Coverage Status|
ps_alchemy
==========`ps_alchemy` is extension for `pyramid_sacrud
`_ which provides SQLAlchemy
models.Look how easy it is to use:
.. code-block:: python
Base = declarative_base()
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))class PageTree(Base):
__tablename__ = 'pages'id = Column(Integer, primary_key=True)
.. code-block:: python
config.include('ps_alchemy')
config.include('pyramid_sacrud', route_prefix='admin')
config.registry.settings['pyramid_sacrud.models'] = ('webpages', [PageTree, ])For more docs see http://ps-alchemy.rtfd.org
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 etcIf you have question, contact me [email protected] or IRC channel #sacrud
License
=======The project is licensed under the MIT license.
.. |Build Status| image:: https://travis-ci.org/sacrud/ps_alchemy.svg?branch=master
:target: https://travis-ci.org/sacrud/ps_alchemy
.. |Coverage Status| image:: https://coveralls.io/repos/sacrud/ps_alchemy/badge.png?branch=master
:target: https://coveralls.io/r/sacrud/ps_alchemy?branch=master