├── .gitignore ├── LICENSE ├── README.md ├── httpsh ├── httpshell ├── __init__.py ├── ansicolors.py ├── formatters.py ├── http.py ├── httpshell.py ├── loggers.py └── version.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/README.md -------------------------------------------------------------------------------- /httpsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpsh -------------------------------------------------------------------------------- /httpshell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /httpshell/ansicolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpshell/ansicolors.py -------------------------------------------------------------------------------- /httpshell/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpshell/formatters.py -------------------------------------------------------------------------------- /httpshell/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpshell/http.py -------------------------------------------------------------------------------- /httpshell/httpshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpshell/httpshell.py -------------------------------------------------------------------------------- /httpshell/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/httpshell/loggers.py -------------------------------------------------------------------------------- /httpshell/version.py: -------------------------------------------------------------------------------- 1 | VERSION = "0.8.0" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislongo/HttpShell/HEAD/setup.py --------------------------------------------------------------------------------