├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NOTES.txt ├── README.rst ├── VERSION ├── examples ├── README.md ├── core-childspans.py ├── core-connection.py ├── core-simple.py ├── orm-bulk.py ├── orm-childspan.py └── orm-simple.py ├── setup.cfg ├── setup.py ├── sqlalchemy_opentracing └── __init__.py └── tests ├── __init__.py ├── dummies.py ├── test_api.py ├── test_core.py └── test_orm.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist 3 | bin 4 | eggs 5 | lib 6 | *.egg-info 7 | build 8 | env/ 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include VERSION LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/NOTES.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.6 -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/core-childspans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/core-childspans.py -------------------------------------------------------------------------------- /examples/core-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/core-connection.py -------------------------------------------------------------------------------- /examples/core-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/core-simple.py -------------------------------------------------------------------------------- /examples/orm-bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/orm-bulk.py -------------------------------------------------------------------------------- /examples/orm-childspan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/orm-childspan.py -------------------------------------------------------------------------------- /examples/orm-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/examples/orm-simple.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/setup.py -------------------------------------------------------------------------------- /sqlalchemy_opentracing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/sqlalchemy_opentracing/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/tests/dummies.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing-contrib/python-sqlalchemy/HEAD/tests/test_orm.py --------------------------------------------------------------------------------