├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── conf.py ├── main.py ├── nested │ ├── __init__.py │ ├── another.py │ └── exec_file └── some.py ├── pyproject.toml └── src ├── builtins.rs └── main.rs /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/README.md -------------------------------------------------------------------------------- /examples/conf.py: -------------------------------------------------------------------------------- 1 | def config(): 2 | ... 3 | -------------------------------------------------------------------------------- /examples/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/examples/main.py -------------------------------------------------------------------------------- /examples/nested/__init__.py: -------------------------------------------------------------------------------- 1 | def b(): 2 | ... 3 | -------------------------------------------------------------------------------- /examples/nested/another.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/examples/nested/another.py -------------------------------------------------------------------------------- /examples/nested/exec_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/examples/nested/exec_file -------------------------------------------------------------------------------- /examples/some.py: -------------------------------------------------------------------------------- 1 | def func(): 2 | ... 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/builtins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/src/builtins.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadmk11/python-third-party-imports/HEAD/src/main.rs --------------------------------------------------------------------------------