├── .gitignore ├── LICENSE ├── README.md ├── config ├── __init__.py ├── chrome.py └── firefox.py ├── drivers ├── chromedriver └── geckodriver ├── lib ├── __init__.py ├── constants.py ├── service.py └── utils.py ├── requirements.txt ├── sources ├── bitchlasagna.txt ├── greenhat.txt ├── ozymandias.txt ├── rickroll.txt ├── shadilay.txt └── whatislove.txt └── tellonym.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/config/chrome.py -------------------------------------------------------------------------------- /config/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/config/firefox.py -------------------------------------------------------------------------------- /drivers/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/drivers/chromedriver -------------------------------------------------------------------------------- /drivers/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/drivers/geckodriver -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/lib/constants.py -------------------------------------------------------------------------------- /lib/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/lib/service.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/lib/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | fake-useragent==0.1.11 -------------------------------------------------------------------------------- /sources/bitchlasagna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/bitchlasagna.txt -------------------------------------------------------------------------------- /sources/greenhat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/greenhat.txt -------------------------------------------------------------------------------- /sources/ozymandias.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/ozymandias.txt -------------------------------------------------------------------------------- /sources/rickroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/rickroll.txt -------------------------------------------------------------------------------- /sources/shadilay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/shadilay.txt -------------------------------------------------------------------------------- /sources/whatislove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/sources/whatislove.txt -------------------------------------------------------------------------------- /tellonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/target111/py-onym/HEAD/tellonym.py --------------------------------------------------------------------------------