Compare commits

..

No commits in common. "main" and "rss" have entirely different histories.
main ... rss

7 changed files with 250 additions and 37025 deletions

View File

@ -1,2 +0,0 @@
default: books.csv genfeed.py
./genfeed.py < books.csv > feed.xml

View File

@ -4,17 +4,9 @@ This is a catalog of all the books in my calibre library!
If you see a title here you would like to borrow, let me know! I'd be happy to share :)
## How To (For me)
## How To
- go to calibre and "convert books" -> "create a catalog...."
- save it to the dir
- `j all`
## How To (For you)
If you want to browse the collection, I would look at `books.rec`.
If you're going to really explore this dataset, I recommend using the awesome csvkit.
If you're going to explore this dataset, I recommend using the awesome csvkit.
=> <https://csvkit.readthedocs.io/en/latest/index.html>
@ -25,20 +17,15 @@ It will allow you to do stuff like:
- look at some stats: `csvcut -c languages,size,formats books.csv | csvstat`
- find the largest pdfs in the collection: `csvcut -c title_sort,formats,size books.csv | csvgrep -c formats -m pdf | csvsort -c size -r | head`
- `csvjson books.csv | jq | whatever`
- show the most recently added books: `csvcut -c 13,1,3 books.csv | csvsort -c timestamp -r | head -n 20`
- You can also perform actual SQL queries on it, and convert the data between csv and sqlite database: <https://csvkit.readthedocs.io/en/latest/tutorial/3_power_tools.html>
## RSS feed
An RSS feed has been kindly provided by [the Rsszard of Syndication](https://tilde.town/~lucidiot)
and is available at https://git.tilde.town/dozens/books/raw/branch/main/feed.xml
and is available at https://AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA.
Generating the feed requires you to have Python 3.7 or later installed, as well
as the [xmltodict](https://pypi.org/project/xmltodict) package:
`pip3 install xmltodict`.
To generate the feed, run `./geenfeed.py <books.csv >lefeed.xml`.
## TODO
- type definitions for Book

839
books.csv

File diff suppressed because one or more lines are too long

24256
books.rec

File diff suppressed because one or more lines are too long

12142
feed.xml

File diff suppressed because one or more lines are too long

View File

@ -64,7 +64,8 @@ def main():
"atom:link": {
"@rel": "self",
"@type": "application/rss+xml",
"@href": "https://git.tilde.town/dozens/books/raw/branch/main/feed.xml",
# TODO: set the correct public URL of your feed!
"@href": "http://fuck",
},
"language": "en-US",
"pubDate": datetime.now(timezone.utc)

View File

@ -1,14 +0,0 @@
# show all commands
default:
just --list
# generate rss
rss:
./genfeed.py < books.csv > feed.xml
# make rec
rec:
csvformat books.csv | csv2rec > books.rec
# do the damn thing
all: rec rss