├── .ipynb_checkpoints ├── Keyword_Clustering-22-8-checkpoint.ipynb ├── Keyword_Clustering-Copy1-checkpoint.ipynb ├── Keyword_Clustering-checkpoint.ipynb └── Keyword_Clustering_old-checkpoint.ipynb ├── Keyword_Clustering.ipynb ├── Procfile ├── Queries.csv ├── README.md ├── app.py ├── keyword_clustering.sqlite ├── requirements.txt ├── static ├── css │ └── style.css ├── img │ ├── logo.png │ ├── seo-keyword-clusters-1.JPG │ ├── seo-keyword-clusters-2.JPG │ └── seo-keyword-clusters-3.JPG └── js │ └── plots.js └── templates ├── about.html ├── contact.html ├── gds_dashboard.html ├── index.html └── tableau_dashboard.html /.ipynb_checkpoints/Keyword_Clustering-22-8-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/.ipynb_checkpoints/Keyword_Clustering-22-8-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/Keyword_Clustering-Copy1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/.ipynb_checkpoints/Keyword_Clustering-Copy1-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/Keyword_Clustering-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/.ipynb_checkpoints/Keyword_Clustering-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/Keyword_Clustering_old-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/.ipynb_checkpoints/Keyword_Clustering_old-checkpoint.ipynb -------------------------------------------------------------------------------- /Keyword_Clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/Keyword_Clustering.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /Queries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/Queries.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/app.py -------------------------------------------------------------------------------- /keyword_clustering.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/keyword_clustering.sqlite -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/seo-keyword-clusters-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/img/seo-keyword-clusters-1.JPG -------------------------------------------------------------------------------- /static/img/seo-keyword-clusters-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/img/seo-keyword-clusters-2.JPG -------------------------------------------------------------------------------- /static/img/seo-keyword-clusters-3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/img/seo-keyword-clusters-3.JPG -------------------------------------------------------------------------------- /static/js/plots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/static/js/plots.js -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/gds_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/templates/gds_dashboard.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/tableau_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfaccioli/seo-keyword-clusters/HEAD/templates/tableau_dashboard.html --------------------------------------------------------------------------------