1 | # ~*~~ coding: utf-8 ~*~ |
||
0 ignored issues
–
show
|
|||
2 | |||
3 | # Define the version of OSMAlchemy |
||
4 | 1 | __version__ = "0.1.post1" |
|
5 | 1 | ||
6 | # Monkey patch SQLAlchemy to support some query constructs |
||
7 | 1 | from .util.patch import monkey_patch_sqlalchemy, monkey_patch_flask_restless |
|
8 | monkey_patch_sqlalchemy() |
||
9 | monkey_patch_flask_restless() |
||
10 | |||
11 | from .osmalchemy import OSMAlchemy |
||
0 ignored issues
–
show
|
|||
12 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.