├── .gitignore ├── README.md ├── cores ├── colors.py └── utils.py ├── db ├── bypass_chars.txt ├── params.txt └── short_params.txt └── lazyparam.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/README.md -------------------------------------------------------------------------------- /cores/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/cores/colors.py -------------------------------------------------------------------------------- /cores/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/cores/utils.py -------------------------------------------------------------------------------- /db/bypass_chars.txt: -------------------------------------------------------------------------------- 1 | /. 2 | %00 3 | -------------------------------------------------------------------------------- /db/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/db/params.txt -------------------------------------------------------------------------------- /db/short_params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/db/short_params.txt -------------------------------------------------------------------------------- /lazyparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniqfakhrul/lazyParam/HEAD/lazyparam.py --------------------------------------------------------------------------------