Last updated:
0 purchases
pybatis 0.1.2
python for mybatis
Documentation
The full documentation is at https://pybatis.readthedocs.io.
Quickstart
Install pybatis:
pip install pybatis
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'pybatis.apps.PybatisConfig',
...
)
Add pybatis’s URL patterns:
from pybatis import urls as pybatis_urls
urlpatterns = [
...
url(r'^', include(pybatis_urls)),
...
]
Features
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox
Credits
Tools used in rendering this package:
Cookiecutter
cookiecutter-djangopackage
History
0.1.0 (2018-03-08)
First release on PyPI.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.