An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

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 script

There 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.com

pip3 install ollama

pip3 install bottle

pip3 install BeautifulSoup4

pip3 install feedparser

sqlite