├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── MANIFEST ├── README.md ├── pytov ├── __init__.py ├── curly_braces.py ├── examples │ ├── README.md │ ├── __init__.py │ └── curly.py └── pytov.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | __pycache__/ 3 | pytov.egg-info/ 4 | docs/ 5 | /README.txt 6 | setup.cfg -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/README.md -------------------------------------------------------------------------------- /pytov/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/pytov/__init__.py -------------------------------------------------------------------------------- /pytov/curly_braces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/pytov/curly_braces.py -------------------------------------------------------------------------------- /pytov/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/pytov/examples/README.md -------------------------------------------------------------------------------- /pytov/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytov/examples/curly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/pytov/examples/curly.py -------------------------------------------------------------------------------- /pytov/pytov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/pytov/pytov.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yuvix25/pytov_old/HEAD/setup.py --------------------------------------------------------------------------------