├── Procfile ├── _config.yml ├── static ├── images │ ├── nvidia.png │ └── nvidia_RTX.png ├── backgrounds │ ├── bg-404.jpeg │ └── bg-main.jpeg ├── CSVs │ ├── nvidia_RTX.csv │ └── nvidia.csv └── style.css ├── requirements.txt ├── templates ├── index.html ├── show_wc.html ├── review.html ├── 404.html └── base.html ├── README.md ├── .gitignore ├── app.py └── LICENSE /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-hacker -------------------------------------------------------------------------------- /static/images/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c17hawke/flask-based-wordcloud-generator/HEAD/static/images/nvidia.png -------------------------------------------------------------------------------- /static/images/nvidia_RTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c17hawke/flask-based-wordcloud-generator/HEAD/static/images/nvidia_RTX.png -------------------------------------------------------------------------------- /static/backgrounds/bg-404.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c17hawke/flask-based-wordcloud-generator/HEAD/static/backgrounds/bg-404.jpeg -------------------------------------------------------------------------------- /static/backgrounds/bg-main.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c17hawke/flask-based-wordcloud-generator/HEAD/static/backgrounds/bg-main.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.8.1 2 | bs4==0.0.1 3 | certifi==2019.11.28 4 | chardet==3.0.4 5 | Click==7.0 6 | decorator==4.4.1 7 | entrypoints==0.3 8 | Flask==1.1.1 9 | Flask-Cors==3.0.9 10 | gunicorn==20.0.4 11 | idna==2.8 12 | itsdangerous==1.1.0 13 | jinja2>=2.11.3 14 | jsonschema==3.2.0 15 | MarkupSafe==1.1.1 16 | matplotlib==3.1.3 17 | mccabe==0.6.1 18 | numpy==1.18.1 19 | pandas==1.0.1 20 | python-dateutil==2.8.1 21 | pytz==2019.3 22 | pyzmq==18.1.1 23 | requests==2.22.0 24 | six==1.14.0 25 | soupsieve==1.9.5 26 | urllib3==1.25.8 27 | webencodings==0.5.1 28 | Werkzeug==1.0.0 29 | widgetsnbextension==3.5.1 30 | wordcloud==1.6.0 31 | pyOpenSSL==20.0.1 32 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'base.html' %} 2 | 3 | {% block title %} 4 | 5 |