├── .gitignore ├── README.md ├── example_SEO_Template.csv ├── main.py ├── poetry.lock ├── prompt_generator.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/README.md -------------------------------------------------------------------------------- /example_SEO_Template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/example_SEO_Template.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/poetry.lock -------------------------------------------------------------------------------- /prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/prompt_generator.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesEBall/SEOArticlegenAI/HEAD/requirements.txt --------------------------------------------------------------------------------