View Single Post
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#468
Thanks, I just gotta print it to a .txt file and everything is set.

I could just add something to the print command right? I'll test it out myself tomorrow.

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:
   FI = open('Links.txt','w')
   print >>FI, title + " " + link
Edit: Anyway to specify where the Links.txt should be (like in MyDocs?)
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 

The Following User Says Thank You to Laughing Man For This Useful Post: