├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ └── question.md └── workflows │ ├── lint.yml │ ├── release.yml │ └── tests_and_coverage.yml ├── .gitignore ├── .mypy.ini ├── LICENSE ├── README.md ├── docs └── assets │ ├── logo_1.png │ ├── logo_2.png │ ├── logo_3.png │ └── logo_4.png ├── f ├── __init__.py ├── chain_unit.py ├── lazy_string.py ├── proxy_module.py └── py.typed ├── pyproject.toml ├── requirements_dev.txt └── tests ├── __init__.py ├── data └── .gitkeep ├── test_dunders.py ├── test_init.py ├── test_methods.py └── test_skipped.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests_and_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.github/workflows/tests_and_coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | disable_error_code = override, return 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/docs/assets/logo_1.png -------------------------------------------------------------------------------- /docs/assets/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/docs/assets/logo_2.png -------------------------------------------------------------------------------- /docs/assets/logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/docs/assets/logo_3.png -------------------------------------------------------------------------------- /docs/assets/logo_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/docs/assets/logo_4.png -------------------------------------------------------------------------------- /f/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/f/__init__.py -------------------------------------------------------------------------------- /f/chain_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/f/chain_unit.py -------------------------------------------------------------------------------- /f/lazy_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/f/lazy_string.py -------------------------------------------------------------------------------- /f/proxy_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/f/proxy_module.py -------------------------------------------------------------------------------- /f/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dunders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/tests/test_dunders.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/tests/test_methods.py -------------------------------------------------------------------------------- /tests/test_skipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pomponchik/fazy/HEAD/tests/test_skipped.py --------------------------------------------------------------------------------