├── .gitignore ├── .pyup.yml ├── LICENSE ├── README.md ├── bin └── wik.bat ├── pyproject.toml ├── test └── test.py └── wik ├── __init__.py ├── info.py └── wik.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/.pyup.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/README.md -------------------------------------------------------------------------------- /bin/wik.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/bin/wik.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/test/test.py -------------------------------------------------------------------------------- /wik/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/wik/__init__.py -------------------------------------------------------------------------------- /wik/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/wik/info.py -------------------------------------------------------------------------------- /wik/wik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yashsinghcodes/wik/HEAD/wik/wik.py --------------------------------------------------------------------------------