├── .gitignore ├── README.md ├── dnp.py ├── requirements.txt ├── rules ├── predictor-default.cfg ├── predictor-simple.cfg └── regular.cfg └── showcase.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea 3 | *.iml 4 | sortcfg.py 5 | *.pyc 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/README.md -------------------------------------------------------------------------------- /dnp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/dnp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tld 2 | -------------------------------------------------------------------------------- /rules/predictor-default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/rules/predictor-default.cfg -------------------------------------------------------------------------------- /rules/predictor-simple.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/rules/predictor-simple.cfg -------------------------------------------------------------------------------- /rules/regular.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/rules/regular.cfg -------------------------------------------------------------------------------- /showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LandGrey/domainNamePredictor/HEAD/showcase.png --------------------------------------------------------------------------------