├── .gitignore ├── README.md ├── data ├── audio │ └── woah.txt ├── config.json ├── prompts.txt └── proxies.txt ├── main.py ├── requirements.txt └── src ├── __init__.py ├── captcha └── mocap.py ├── textgen └── aigen.py └── utils ├── b64utils.py ├── config.py ├── fake_person.py └── string_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/audio/*.wav 2 | test.py 3 | .venv/ 4 | proxy_formatter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/README.md -------------------------------------------------------------------------------- /data/audio/woah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/data/audio/woah.txt -------------------------------------------------------------------------------- /data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/data/config.json -------------------------------------------------------------------------------- /data/prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/data/prompts.txt -------------------------------------------------------------------------------- /data/proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | charlogger 2 | tls_client 3 | pysocks 4 | Faker 5 | SpeechRecognition -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/captcha/mocap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/captcha/mocap.py -------------------------------------------------------------------------------- /src/textgen/aigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/textgen/aigen.py -------------------------------------------------------------------------------- /src/utils/b64utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/utils/b64utils.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/fake_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/utils/fake_person.py -------------------------------------------------------------------------------- /src/utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laika-cosmonaut/Andrew-Bailey-Annoyer/HEAD/src/utils/string_utils.py --------------------------------------------------------------------------------