├── .coveragerc ├── .cruft.json ├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── art ├── example.gif ├── logo.png ├── logo.xcf ├── logo_large.png └── logo_large.xcf ├── docs ├── contributing │ ├── 1.-contributing-guide.md │ ├── 2.-coding-standard.md │ ├── 3.-code-of-conduct.md │ └── 4.-acknowledgements.md └── quick_start │ ├── 1.-installation.md │ ├── 2.-adding-examples.md │ └── 3.-testing-examples.md ├── example_of_examples.py ├── examples ├── __init__.py ├── api.py ├── example_objects.py └── registry.py ├── pyproject.toml ├── scripts ├── clean.sh ├── done.sh ├── lint.sh └── test.sh ├── setup.cfg ├── tests ├── __init__.py ├── example_module_fail.py ├── example_module_pass.py ├── example_project_separate │ ├── __init__.py │ ├── api.py │ └── api_examples.py ├── no_examples_module.py ├── test_api.py ├── test_project_separate.py └── test_registry.py └── xamples ├── pyproject.toml └── xamples └── __init__.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/.coveragerc -------------------------------------------------------------------------------- /.cruft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/.cruft.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: "timothycrosley" 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/README.md -------------------------------------------------------------------------------- /art/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/art/example.gif -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/art/logo.png -------------------------------------------------------------------------------- /art/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/art/logo.xcf -------------------------------------------------------------------------------- /art/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/art/logo_large.png -------------------------------------------------------------------------------- /art/logo_large.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/art/logo_large.xcf -------------------------------------------------------------------------------- /docs/contributing/1.-contributing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/contributing/1.-contributing-guide.md -------------------------------------------------------------------------------- /docs/contributing/2.-coding-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/contributing/2.-coding-standard.md -------------------------------------------------------------------------------- /docs/contributing/3.-code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/contributing/3.-code-of-conduct.md -------------------------------------------------------------------------------- /docs/contributing/4.-acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/contributing/4.-acknowledgements.md -------------------------------------------------------------------------------- /docs/quick_start/1.-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/quick_start/1.-installation.md -------------------------------------------------------------------------------- /docs/quick_start/2.-adding-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/quick_start/2.-adding-examples.md -------------------------------------------------------------------------------- /docs/quick_start/3.-testing-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/docs/quick_start/3.-testing-examples.md -------------------------------------------------------------------------------- /example_of_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/example_of_examples.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/examples/api.py -------------------------------------------------------------------------------- /examples/example_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/examples/example_objects.py -------------------------------------------------------------------------------- /examples/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/examples/registry.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/scripts/clean.sh -------------------------------------------------------------------------------- /scripts/done.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/scripts/done.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_module_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/example_module_fail.py -------------------------------------------------------------------------------- /tests/example_module_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/example_module_pass.py -------------------------------------------------------------------------------- /tests/example_project_separate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example_project_separate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/example_project_separate/api.py -------------------------------------------------------------------------------- /tests/example_project_separate/api_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/example_project_separate/api_examples.py -------------------------------------------------------------------------------- /tests/no_examples_module.py: -------------------------------------------------------------------------------- 1 | def function(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_project_separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/test_project_separate.py -------------------------------------------------------------------------------- /tests/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/tests/test_registry.py -------------------------------------------------------------------------------- /xamples/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/examples/HEAD/xamples/pyproject.toml -------------------------------------------------------------------------------- /xamples/xamples/__init__.py: -------------------------------------------------------------------------------- 1 | from examples import * 2 | --------------------------------------------------------------------------------