├── .coveragerc ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── conftest.py ├── findimports.py ├── pytest.ini ├── release.mk ├── setup.cfg ├── setup.py ├── tests.py ├── tests ├── cmdline.txt ├── csv-names.txt ├── cyclic-imports.txt ├── doctests.txt ├── dotted-names.txt ├── duplicate-imports.txt ├── future.txt ├── graph-cache.txt ├── graphviz.txt ├── ignore-stdlib.txt ├── import-statements.txt ├── imported-names.txt ├── imports.txt ├── json.txt ├── legacycoding.txt ├── name-tracking.txt ├── package-graph.txt ├── relative-imports.txt ├── sample-tree │ ├── apple.py │ ├── box │ │ ├── .#emacsjunk.py │ │ ├── __init__.py │ │ ├── cat.py │ │ ├── decoy.py │ │ └── yarn.py │ ├── decoy.py │ ├── orange.py │ ├── snake.egg-info │ └── zippedmodules.zip ├── scopes.txt ├── search-import.txt ├── test-packages.txt ├── unknown-modules.txt ├── unused-names.txt ├── utf8-bom.txt └── zipfiles.txt └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/conftest.py -------------------------------------------------------------------------------- /findimports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/findimports.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/pytest.ini -------------------------------------------------------------------------------- /release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/release.mk -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests.py -------------------------------------------------------------------------------- /tests/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/cmdline.txt -------------------------------------------------------------------------------- /tests/csv-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/csv-names.txt -------------------------------------------------------------------------------- /tests/cyclic-imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/cyclic-imports.txt -------------------------------------------------------------------------------- /tests/doctests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/doctests.txt -------------------------------------------------------------------------------- /tests/dotted-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/dotted-names.txt -------------------------------------------------------------------------------- /tests/duplicate-imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/duplicate-imports.txt -------------------------------------------------------------------------------- /tests/future.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/future.txt -------------------------------------------------------------------------------- /tests/graph-cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/graph-cache.txt -------------------------------------------------------------------------------- /tests/graphviz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/graphviz.txt -------------------------------------------------------------------------------- /tests/ignore-stdlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/ignore-stdlib.txt -------------------------------------------------------------------------------- /tests/import-statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/import-statements.txt -------------------------------------------------------------------------------- /tests/imported-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/imported-names.txt -------------------------------------------------------------------------------- /tests/imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/imports.txt -------------------------------------------------------------------------------- /tests/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/json.txt -------------------------------------------------------------------------------- /tests/legacycoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/legacycoding.txt -------------------------------------------------------------------------------- /tests/name-tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/name-tracking.txt -------------------------------------------------------------------------------- /tests/package-graph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/package-graph.txt -------------------------------------------------------------------------------- /tests/relative-imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/relative-imports.txt -------------------------------------------------------------------------------- /tests/sample-tree/apple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/sample-tree/apple.py -------------------------------------------------------------------------------- /tests/sample-tree/box/.#emacsjunk.py: -------------------------------------------------------------------------------- 1 | cannot be parsed as Python 2 | -------------------------------------------------------------------------------- /tests/sample-tree/box/__init__.py: -------------------------------------------------------------------------------- 1 | # make a package 2 | -------------------------------------------------------------------------------- /tests/sample-tree/box/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/sample-tree/box/cat.py -------------------------------------------------------------------------------- /tests/sample-tree/box/decoy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/sample-tree/box/decoy.py -------------------------------------------------------------------------------- /tests/sample-tree/box/yarn.py: -------------------------------------------------------------------------------- 1 | def play(): 2 | pass 3 | -------------------------------------------------------------------------------- /tests/sample-tree/decoy.py: -------------------------------------------------------------------------------- 1 | # here is the real one 2 | -------------------------------------------------------------------------------- /tests/sample-tree/orange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/sample-tree/orange.py -------------------------------------------------------------------------------- /tests/sample-tree/snake.egg-info: -------------------------------------------------------------------------------- 1 | # a test file 2 | -------------------------------------------------------------------------------- /tests/sample-tree/zippedmodules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/sample-tree/zippedmodules.zip -------------------------------------------------------------------------------- /tests/scopes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/scopes.txt -------------------------------------------------------------------------------- /tests/search-import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/search-import.txt -------------------------------------------------------------------------------- /tests/test-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/test-packages.txt -------------------------------------------------------------------------------- /tests/unknown-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/unknown-modules.txt -------------------------------------------------------------------------------- /tests/unused-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/unused-names.txt -------------------------------------------------------------------------------- /tests/utf8-bom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/utf8-bom.txt -------------------------------------------------------------------------------- /tests/zipfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tests/zipfiles.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/findimports/HEAD/tox.ini --------------------------------------------------------------------------------