├── Dockerfile ├── LICENSE ├── README.md ├── helper.py ├── index.py ├── language.py ├── requirements.txt └── url.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/README.md -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/helper.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/index.py -------------------------------------------------------------------------------- /language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/language.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | pattern 3 | requests 4 | html2text 5 | langdetect 6 | -------------------------------------------------------------------------------- /url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonySigogne/keyword-mining/HEAD/url.py --------------------------------------------------------------------------------