├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src ├── zopfli │ ├── __init__.py │ ├── gzip.py │ ├── png.py │ └── zlib.py └── zopflimodule.c ├── tests ├── __init__.py ├── data │ ├── PngSuite.LICENSE.txt │ ├── basn0g01.png │ ├── basn2c16.png │ └── tbbn2c16.png └── test_zopfli.py └── tox.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license_files = COPYING 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/setup.py -------------------------------------------------------------------------------- /src/zopfli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/src/zopfli/__init__.py -------------------------------------------------------------------------------- /src/zopfli/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/src/zopfli/gzip.py -------------------------------------------------------------------------------- /src/zopfli/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/src/zopfli/png.py -------------------------------------------------------------------------------- /src/zopfli/zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/src/zopfli/zlib.py -------------------------------------------------------------------------------- /src/zopflimodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/src/zopflimodule.c -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/PngSuite.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tests/data/PngSuite.LICENSE.txt -------------------------------------------------------------------------------- /tests/data/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tests/data/basn0g01.png -------------------------------------------------------------------------------- /tests/data/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tests/data/basn2c16.png -------------------------------------------------------------------------------- /tests/data/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tests/data/tbbn2c16.png -------------------------------------------------------------------------------- /tests/test_zopfli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tests/test_zopfli.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fonttools/py-zopfli/HEAD/tox.ini --------------------------------------------------------------------------------