├── .gitignore ├── LICENSE.md ├── README.md ├── pyproject.toml └── webimport ├── __init__.py ├── server.py └── webimport.py /.gitignore: -------------------------------------------------------------------------------- 1 | webimport.egg-info/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/pyproject.toml -------------------------------------------------------------------------------- /webimport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/webimport/__init__.py -------------------------------------------------------------------------------- /webimport/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/webimport/server.py -------------------------------------------------------------------------------- /webimport/webimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernSec/WebImport/HEAD/webimport/webimport.py --------------------------------------------------------------------------------