├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── test.yaml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── file_read_backwards.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── modules.rst ├── readme.rst └── usage.rst ├── file_read_backwards ├── __init__.py ├── buffer_work_space.py └── file_read_backwards.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_buffer_work_space.py └── test_file_read_backwards.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/file_read_backwards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/file_read_backwards.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /file_read_backwards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/file_read_backwards/__init__.py -------------------------------------------------------------------------------- /file_read_backwards/buffer_work_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/file_read_backwards/buffer_work_space.py -------------------------------------------------------------------------------- /file_read_backwards/file_read_backwards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/file_read_backwards/file_read_backwards.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_buffer_work_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/tests/test_buffer_work_space.py -------------------------------------------------------------------------------- /tests/test_file_read_backwards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/tests/test_file_read_backwards.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobinNil/file_read_backwards/HEAD/tox.ini --------------------------------------------------------------------------------