├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── docs └── example.py ├── logtopg ├── __init__.py ├── createtable.sql ├── insertrow.sql ├── tests │ ├── __init__.py │ └── test_logtopg.py └── version.py ├── requirements.txt ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include logtopg *.sql 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/README.rst -------------------------------------------------------------------------------- /docs/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/docs/example.py -------------------------------------------------------------------------------- /logtopg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/logtopg/__init__.py -------------------------------------------------------------------------------- /logtopg/createtable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/logtopg/createtable.sql -------------------------------------------------------------------------------- /logtopg/insertrow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/logtopg/insertrow.sql -------------------------------------------------------------------------------- /logtopg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logtopg/tests/test_logtopg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/logtopg/tests/test_logtopg.py -------------------------------------------------------------------------------- /logtopg/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/logtopg/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2==2.5.4 2 | nose>=1.3.4 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/216software/logtopg/HEAD/tox.ini --------------------------------------------------------------------------------