.
.
I started this second script, but I need to compare tables on QuiteRSS and RSSguard, so here is the table format comparison :  At left, QuiteRSS, at right, RSS...
Ok, I've made the SQL query for the QuiteRSS database, it get most of the news feeds (but I have something like 400k articles to transfert) : `SELECT feedId, title,...
I tried a first import and it seem to work, but it's really slow. I'm currently creating an option to interrupt and continue the migration. Once it's done, I release...
Hi, Your right because my first idea to create a conversion table between those two ids was incredibly wrong. OPML files are not doing straight copy of feed metadata on...
Ok, so on QuiteRSS, categories and feeds are on the same table, so I need first to separate them. For that I've made a quick code part here : ```python...
I've done the same thing for feeds and it seem to work (excluding some column that I don't understand) : ```python # we continue by extracting feeds feedsrows = con.execute("SELECT...
Ok, now I try to insert the whole totality of my database, if it's working, I've just need to test if Guard RSS can handle this amount of data, and...
I think I found my error, I've done this SQL query : `rowsquery = "SELECT feedId, title, link_href, author_name, description, published, deleted FROM news LIMIT {}, {};".format(steprows, steprows+500)` and it...
It seem to work, and with only 20 minutes !  I try to verify if my data are correct now, if it work, I will need your advice on...
Here is my script : ```python #!/usr/bin/env python3 # -*- coding: utf-8 -*- import argparse, csv, sqlite3 from dateutil.parser import parse as catdateparse import time if __name__ == "__main__": print("Welcom...