├── .github └── workflows │ ├── pypy.yml │ └── wheel.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py ├── src └── snappy │ ├── __init__.py │ ├── __main__.py │ ├── snappy.py │ └── snappy_formats.py ├── test_formats.py └── test_snappy.py /.github/workflows/pypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/.github/workflows/pypy.yml -------------------------------------------------------------------------------- /.github/workflows/wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/.github/workflows/wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.py AUTHORS README.rst src/snappy/*.h MANIFEST.in LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/setup.py -------------------------------------------------------------------------------- /src/snappy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/src/snappy/__init__.py -------------------------------------------------------------------------------- /src/snappy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/src/snappy/__main__.py -------------------------------------------------------------------------------- /src/snappy/snappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/src/snappy/snappy.py -------------------------------------------------------------------------------- /src/snappy/snappy_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/src/snappy/snappy_formats.py -------------------------------------------------------------------------------- /test_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/test_formats.py -------------------------------------------------------------------------------- /test_snappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intake/python-snappy/HEAD/test_snappy.py --------------------------------------------------------------------------------