├── .github └── workflows │ └── CI.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── docs ├── Makefile ├── make.bat └── src │ ├── 404.rst │ ├── conf.py │ ├── gallery.rst │ ├── guide.rst │ ├── index.rst │ ├── reference.rst │ └── release-notes.rst ├── pyfactor ├── VERSION ├── __init__.py ├── _cli.py ├── _graph.py ├── _gv.py ├── _io.py └── _visit │ ├── __init__.py │ └── base.py ├── readme-pypi.rst ├── readme.rst ├── readthedocs.yml ├── setup.py ├── tests ├── __init__.py ├── cli.py └── parsing │ ├── __init__.py │ ├── _util.py │ ├── assign.py │ ├── docs.py │ ├── flow.py │ ├── import.py │ └── scoped.py └── tox.ini /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/src/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/404.rst -------------------------------------------------------------------------------- /docs/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/conf.py -------------------------------------------------------------------------------- /docs/src/gallery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/gallery.rst -------------------------------------------------------------------------------- /docs/src/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/guide.rst -------------------------------------------------------------------------------- /docs/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/index.rst -------------------------------------------------------------------------------- /docs/src/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/reference.rst -------------------------------------------------------------------------------- /docs/src/release-notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/docs/src/release-notes.rst -------------------------------------------------------------------------------- /pyfactor/VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 2 | -------------------------------------------------------------------------------- /pyfactor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/__init__.py -------------------------------------------------------------------------------- /pyfactor/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_cli.py -------------------------------------------------------------------------------- /pyfactor/_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_graph.py -------------------------------------------------------------------------------- /pyfactor/_gv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_gv.py -------------------------------------------------------------------------------- /pyfactor/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_io.py -------------------------------------------------------------------------------- /pyfactor/_visit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_visit/__init__.py -------------------------------------------------------------------------------- /pyfactor/_visit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/pyfactor/_visit/base.py -------------------------------------------------------------------------------- /readme-pypi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/readme-pypi.rst -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/readme.rst -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/cli.py -------------------------------------------------------------------------------- /tests/parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/parsing/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/_util.py -------------------------------------------------------------------------------- /tests/parsing/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/assign.py -------------------------------------------------------------------------------- /tests/parsing/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/docs.py -------------------------------------------------------------------------------- /tests/parsing/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/flow.py -------------------------------------------------------------------------------- /tests/parsing/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/import.py -------------------------------------------------------------------------------- /tests/parsing/scoped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tests/parsing/scoped.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felix-hilden/pyfactor/HEAD/tox.ini --------------------------------------------------------------------------------