blob: ab040fcc70033f454aac41bbb03fe99d625cafc4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | # booki
but in C, 'cause why not?
[many previous iterations here](https://github.com/winsbe01/booki)
Differences between cbooki and the (current) Python version:
|           | Current Version | cbooki        |
|-----------|-----------------|---------------|
| `add`     | Works           | Doesn't Exist |
Things that work:
 - [ ] `search` with arbitrary query items
 - [ ] multiple `search` query items
 - [ ] `--show` to print out most attributes
Things that don't work:
 - [ ] `search` with more than 5 query items
 - [ ] searching for a single author in a multi-author item
 - [ ] printing any array thing
 - [ ] `^` or `$` in string searching
Things that might change:
 - [ ] `--show` might want to limit by field
 - [x] (now parsing manually) currently uses [tomlc99](https://github.com/cktan/tomlc99), which is great but might be overkill for this
 - [ ] maybe prefixed `<` or `>` for numeric searches
 - [ ] format strings
 |