https://github.com/elithecomputerguy/DIY-Ultimate-AI-Powered-Autoblog-Using-RSS
DIY: Ultimate AI Powered Autoblog (Python, Ollama, Beautiful Soup, Feedparser, SQLite)
https://github.com/elithecomputerguy/DIY-Ultimate-AI-Powered-Autoblog-Using-RSS
Last synced: 4 months ago
JSON representation
DIY: Ultimate AI Powered Autoblog (Python, Ollama, Beautiful Soup, Feedparser, SQLite)
- Host: GitHub
- URL: https://github.com/elithecomputerguy/DIY-Ultimate-AI-Powered-Autoblog-Using-RSS
- Owner: elithecomputerguy
- Created: 2024-04-11T18:00:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-14T20:42:37.000Z (about 1 year ago)
- Last Synced: 2024-08-13T07:07:45.077Z (8 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - elithecomputerguy/DIY-Ultimate-AI-Powered-Autoblog-Using-RSS - DIY: Ultimate AI Powered Autoblog (Python, Ollama, Beautiful Soup, Feedparser, SQLite) (Python)
README
# DIY-Ultimate-AI-Powered-Autoblog-Using-RSS
DIY: Ultimate AI Powered Autoblog Using RSS (Python, Ollama, Beautiful Soup, Feedparser, SQLite)This project shows you how to use RSS Feeds to scrape websites, and then rewrite the posts on those websites using Ollama and an LLM.
process-autobog.py -- runs a constant loop to check for new posts, rewrite them and store them to the database.
webpage-autoblog.py -- creates a web page by selecting all of the posts from the database and then printing them out in HTML.
## Warning
Make sure Ollama is running on your system before you run your Python scriptThere may be copyright legal issues if you use this on a public site.
Running Ollama constantly can be hard on your computer.
## YouTube Video
https://youtu.be/u3U6NIZ-wGc
## Requirements
Install Ollama - https://ollama.compip3 install ollama
pip3 install bottle
pip3 install BeautifulSoup4
pip3 install feedparser
sqlite