├── .gitignore ├── LICENSE ├── README.md ├── Requirements.txt ├── color.py ├── docs ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── INSTALL.rst ├── LICENSE.rst ├── Makefile ├── PARAMETERS.rst ├── conf.py ├── contents.rst ├── index.rst ├── make.bat └── quick-start.rst ├── domained.py ├── ext ├── notifycfg.ini └── requirements.txt └── installer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/README.md -------------------------------------------------------------------------------- /Requirements.txt: -------------------------------------------------------------------------------- 1 | colorama==0.4.1 2 | -------------------------------------------------------------------------------- /color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/color.py -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /docs/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/INSTALL.rst -------------------------------------------------------------------------------- /docs/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/LICENSE.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/PARAMETERS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/PARAMETERS.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quick-start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/docs/quick-start.rst -------------------------------------------------------------------------------- /domained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/domained.py -------------------------------------------------------------------------------- /ext/notifycfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/ext/notifycfg.ini -------------------------------------------------------------------------------- /ext/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/ext/requirements.txt -------------------------------------------------------------------------------- /installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeError/domained/HEAD/installer.py --------------------------------------------------------------------------------