pythonic_sqlalchemy_query
stable

Quick start

  • Installation
  • Use with SQLAlchemy
  • Use with Flask-SQLAlchemy
  • Documentation
  • License

Source

  • pythonic_sqlalchemy_query/__init__.py - Provide concise, Pythonic query syntax for SQLAlchemy
    • core.py - Core routines
    • flask.py - Provide extensions for Flask-SQLAlchemy
  • tests – Unit tests and example of use
  • setup.py - Package and install pythonic_sqlalchemy_query
  • setup.cfg - Configuration for setup.py
  • .gitignore - Files for Git to ignore

Documentation and tooling

  • History
  • requirements.txt - A pip requirements file needed to build the documentation
  • CodeChat.css - Style sheet for CodeChat docs
  • conf.py - Configuration file for a Sphinx/CodeChat project
  • License
pythonic_sqlalchemy_query
  • Docs »
  • pythonic_sqlalchemy_query/__init__.py - Provide concise, Pythonic query syntax for SQLAlchemy
  • Edit on GitHub

pythonic_sqlalchemy_query/__init__.py - Provide concise, Pythonic query syntax for SQLAlchemy¶

  • core.py - Core routines
    • Imports
      • Standard library
      • Third-party imports
    • QueryMaker
      • Limitations
      • _QueryWrapper
      • QueryMakerDeclarativeMeta
      • QueryMakerQuery
      • QueryMakerSession
      • QueryMakerScopedSession
      • Support routines
  • flask.py - Provide extensions for Flask-SQLAlchemy
    • Imports
      • Standard library
      • Third-party imports
      • Local imports
    • Flask-SQLAlchemy customization

Import everything from core.py - Core routines into this.

from .core import *
 

Define the version of this module.

__version__ = '1.2.0'
Next Previous

© Copyright 2017, Bryan A. Jones. Revision bfe91e5b.

Built with Sphinx using a theme provided by Read the Docs.