├── .gitignore ├── LICENSE ├── README.md └── restrict.py /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | !restrict.py 5 | !LICENSE 6 | !README.md 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelpSeeker/Restricted-WebM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelpSeeker/Restricted-WebM/HEAD/README.md -------------------------------------------------------------------------------- /restrict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HelpSeeker/Restricted-WebM/HEAD/restrict.py --------------------------------------------------------------------------------