├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── banner.png ├── main.py ├── requirements.txt └── src ├── interface ├── banner.txt └── ui.py └── wsob ├── helpers ├── settings.py └── user-agents.txt └── main.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/assets/banner.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich==12.4.1 2 | requests==2.27.1 3 | -------------------------------------------------------------------------------- /src/interface/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/src/interface/banner.txt -------------------------------------------------------------------------------- /src/interface/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/src/interface/ui.py -------------------------------------------------------------------------------- /src/wsob/helpers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/src/wsob/helpers/settings.py -------------------------------------------------------------------------------- /src/wsob/helpers/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/src/wsob/helpers/user-agents.txt -------------------------------------------------------------------------------- /src/wsob/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/WSOB/HEAD/src/wsob/main.py --------------------------------------------------------------------------------