|  07-19-2024, 11:12 AM | #1 | 
| Evangelist            Posts: 479 Karma: 41524 Join Date: Sep 2011 Device: Kobo Libra 2 & Clara BW | 
				
				Reading Calibre DB
			 
			
			I'd like to read the Calibre DB from a python program. I can get a list of my books with: Code: import sqlite3
fname = "c:/Calibre Library/metadata.db"
con = sqlite3.connect(fname)
cur = con.cursor()
cur.execute("SELECT * from books")
for item in cur.fetchall():
    print(item)
con.close()Here's a typical output from the above: (3025, 'A Short History of the Italian Renaissance', 'Short History of the Italian Renaissance, A', '2024-07-06 20:20:52.809814+00:00', '2015-07-15 04:00:00+00:00', 1.0, 'Bartlett, Kenneth R.', '', '', 'Kenneth R. Bartlett/A Short History of the Italian Rena (3025)', 1, '1e6fc84c-3ab1-459b-810f-543895ac556c', 1, '2024-07-17 01:30:42.096682+00:00') This seems to be: index, title, title_sort, date_imported, date_published, author_sort, ???, path, ???, date_??? I'd guess this is documented somewhere obvious, but my search skills are failing to find the specific location. | 
|   |   | 
|  07-19-2024, 11:31 AM | #2 | 
| creator of calibre            Posts: 45,604 Karma: 28548974 Join Date: Oct 2006 Location: Mumbai, India Device: Various | |
|   |   | 
| Advert | |
|  | 
|  07-19-2024, 12:09 PM | #3 | |
| Evangelist            Posts: 479 Karma: 41524 Join Date: Sep 2011 Device: Kobo Libra 2 & Clara BW | Quote: It appears that I have to install the Calibre source and study and use its API? Thank you for a fabulous and tremendously useful program! | |
|   |   | 
|  07-19-2024, 12:17 PM | #4 | 
| creator of calibre            Posts: 45,604 Karma: 28548974 Join Date: Oct 2006 Location: Mumbai, India Device: Various | 
			
			You dont access it using sqlite. Use the calibre API. it is documented, yes you will need to read some documentation and install calibre.
		 | 
|   |   | 
|  | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Reading and printing with Calibre | balubeto | Calibre | 8 | 03-11-2018 01:25 PM | 
| Calibre not reading Kindle | lovingthereading | Devices | 0 | 05-12-2016 11:28 AM | 
| Problems Reading Some Calibre Library Books Using Calibre Companion | eurasiarc | Calibre Companion | 17 | 09-28-2013 02:45 PM | 
| Calibre not reading second library | Ladyhenry | Library Management | 1 | 02-17-2013 08:29 PM |