├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── tadpak.iml ├── README.md ├── dist ├── tadpak-0.3.3-py3-none-any.whl └── tadpak-0.3.3.tar.gz ├── requirements.txt ├── setup.py ├── tadpak.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt └── tadpak ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-37.pyc ├── __init__.cpython-38.pyc ├── evaluate.cpython-36.pyc ├── evaluate.cpython-37.pyc ├── evaluate.cpython-38.pyc └── pak.cpython-37.pyc ├── evaluate.py ├── evaluate.pyc └── pak.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tadpak.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/.idea/tadpak.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/README.md -------------------------------------------------------------------------------- /dist/tadpak-0.3.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/dist/tadpak-0.3.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/tadpak-0.3.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/dist/tadpak-0.3.3.tar.gz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/setup.py -------------------------------------------------------------------------------- /tadpak.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak.egg-info/PKG-INFO -------------------------------------------------------------------------------- /tadpak.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /tadpak.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tadpak.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tadpak 2 | -------------------------------------------------------------------------------- /tadpak/__init__.py: -------------------------------------------------------------------------------- 1 | name = 'tadpak' 2 | -------------------------------------------------------------------------------- /tadpak/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__init__.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/evaluate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/evaluate.cpython-36.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/evaluate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/evaluate.cpython-37.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/evaluate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/evaluate.cpython-38.pyc -------------------------------------------------------------------------------- /tadpak/__pycache__/pak.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/__pycache__/pak.cpython-37.pyc -------------------------------------------------------------------------------- /tadpak/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/evaluate.py -------------------------------------------------------------------------------- /tadpak/evaluate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/evaluate.pyc -------------------------------------------------------------------------------- /tadpak/pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuslkkk/tadpak/HEAD/tadpak/pak.py --------------------------------------------------------------------------------