├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── docker-build-push.yml │ └── pypi-publish.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.docker.md ├── README.md ├── pyproject.toml ├── pyseoanalyzer ├── __init__.py ├── __main__.py ├── analyzer.py ├── http.py ├── llm_analyst.py ├── page.py ├── stopwords.py ├── templates │ └── index.html └── website.py ├── requirements.txt ├── test.py └── tests ├── __init__.py ├── test_analyzer.py ├── test_http.py ├── test_llm_analyst.py └── test_page.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker-build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.github/workflows/docker-build-push.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/README.docker.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyseoanalyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/__init__.py -------------------------------------------------------------------------------- /pyseoanalyzer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/__main__.py -------------------------------------------------------------------------------- /pyseoanalyzer/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/analyzer.py -------------------------------------------------------------------------------- /pyseoanalyzer/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/http.py -------------------------------------------------------------------------------- /pyseoanalyzer/llm_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/llm_analyst.py -------------------------------------------------------------------------------- /pyseoanalyzer/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/page.py -------------------------------------------------------------------------------- /pyseoanalyzer/stopwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/stopwords.py -------------------------------------------------------------------------------- /pyseoanalyzer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/templates/index.html -------------------------------------------------------------------------------- /pyseoanalyzer/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/pyseoanalyzer/website.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/tests/test_analyzer.py -------------------------------------------------------------------------------- /tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/tests/test_http.py -------------------------------------------------------------------------------- /tests/test_llm_analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/tests/test_llm_analyst.py -------------------------------------------------------------------------------- /tests/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sethblack/python-seo-analyzer/HEAD/tests/test_page.py --------------------------------------------------------------------------------