├── .gitignore ├── LICENSE ├── README.md ├── setup.py └── tckfc ├── __init__.py └── tckfc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Octosec/tckfc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Octosec/tckfc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Octosec/tckfc/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Octosec/tckfc/HEAD/setup.py -------------------------------------------------------------------------------- /tckfc/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.3.3" -------------------------------------------------------------------------------- /tckfc/tckfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Octosec/tckfc/HEAD/tckfc/tckfc.py --------------------------------------------------------------------------------