├── LICENSE ├── README.md ├── app.py ├── blog.py ├── config.py ├── requirements.txt ├── static └── images │ └── favicon.png └── templates ├── 404.html └── index.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/app.py -------------------------------------------------------------------------------- /blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/blog.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skolo-online/ai-blog-writer-openai/HEAD/templates/index.html --------------------------------------------------------------------------------