View Single Post
Posts: 324 | Thanked: 371 times | Joined on Dec 2009 @ Vancouver, BC
#467
LaughingMan, save this to a file export.py (or whatever name you want), and run it with "python export.py" on the terminal
Code:
import sqlite3
db=sqlite3.connect("/home/user/.feedingit/ArchivedArticles.d/ArchivedArticles.db")
links=db.execute("SELECT title,link FROM feed;").fetchall()
for (title,link) in links:
   print title + " " + link
Note that this is from memory, I am not able to test it at this time. That should give you a list of the titles and links.
 

The Following 2 Users Say Thank You to Slocan For This Useful Post: