├── .gitignore ├── README.md ├── main.py ├── models ├── __init__.py ├── analytics.py └── webpage.py ├── sample_data ├── 1.json ├── 2.json └── 3.json ├── stopwords.txt └── tools ├── __init__.py └── general.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/models/analytics.py -------------------------------------------------------------------------------- /models/webpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/models/webpage.py -------------------------------------------------------------------------------- /sample_data/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/sample_data/1.json -------------------------------------------------------------------------------- /sample_data/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/sample_data/2.json -------------------------------------------------------------------------------- /sample_data/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/sample_data/3.json -------------------------------------------------------------------------------- /stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/stopwords.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buckyroberts/Web-Analyzer/HEAD/tools/general.py --------------------------------------------------------------------------------