├── LICENSE ├── LicenseServer.licenseheader ├── LicenseServer.pyproj ├── README.md ├── app.py ├── auth.py ├── database.py ├── insert.py ├── make_db.py ├── requirements.txt ├── tables.py ├── utilities.py └── validate.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/LICENSE -------------------------------------------------------------------------------- /LicenseServer.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/LicenseServer.licenseheader -------------------------------------------------------------------------------- /LicenseServer.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/LicenseServer.pyproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/app.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/auth.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/database.py -------------------------------------------------------------------------------- /insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/insert.py -------------------------------------------------------------------------------- /make_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/make_db.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/requirements.txt -------------------------------------------------------------------------------- /tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/tables.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/utilities.py -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyskell/LicenseServer/HEAD/validate.py --------------------------------------------------------------------------------