├── .gitignore ├── LICENSE ├── README.md ├── helpers.py ├── lists └── admin_list.txt ├── requirements.txt └── weblocator.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/README.md -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/helpers.py -------------------------------------------------------------------------------- /lists/admin_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/lists/admin_list.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/requirements.txt -------------------------------------------------------------------------------- /weblocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtavarez/weblocator/HEAD/weblocator.py --------------------------------------------------------------------------------