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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
name: shelf
version: 0.1.0
author: ChocolateOverflow
about: Small and modular manager and downloader for various media
args:
- config:
long: config
value_name: config_file
about: path to config file
takes_value: true
- verbose:
short: v
long: verbose
takes_value: false
subcommands:
- modules:
about: List available modules
- add:
about: Add items to index without downloading
args:
- module:
short: m
long: module
takes_value: true
- code:
short: c
long: code
takes_value: true
- code_file:
short: C
long: code_file
takes_value: true
- url:
short: u
long: url
takes_value: true
- url_file:
short: U
long: url_file
takes_value: true
- download:
about: Index and download items
args:
- module:
short: m
long: module
takes_value: true
- code:
short: c
long: code
takes_value: true
- code_file:
short: C
long: code_file
takes_value: true
- url:
short: u
long: url
takes_value: true
- url_file:
short: U
long: url_file
takes_value: true
- search:
about: Search items in index
args:
- module:
short: m
long: module
takes_value: true
- title:
about: regex match titles with
short: t
long: title
takes_value: true
- authors:
about: Authors, comma-separated
short: a
long: authors
takes_value: true
- genres:
about: genres, comma-separated
short: g
long: genres
takes_value: true
- blacklist:
about: Blacklisted genres, comma-separated
short: b
long: blacklist
takes_value: true
- broad_search:
about: Return books which match at least 1 genre instead of all genres
long: broad_search
takes_value: false
- favorite:
about: Add item to favorites
short: f
long: favorite
takes_value: false
- rm:
about: Remove items from index and delete their files
args:
- module:
about: Module used to handle item
short: m
long: module
takes_value: true
- title:
about: regex match titles with
short: t
long: title
takes_value: true
- authors:
about: Authors, comma-separated
short: a
long: authors
takes_value: true
- genres:
about: genres, comma-separated
short: g
long: genres
- blacklist:
about: Blacklisted genres, comma-separated
short: b
long: blacklist
takes_value: true
- broad_search:
about: Return books which match at least 1 genre instead of all genres
long: broad_search
takes_value: false
- favorite:
about: Add item to favorites
short: f
long: favorite
takes_value: false
- pull:
about: Search and download items already in index
args:
- module:
about: Module used to handle item
short: m
long: module
takes_value: true
- title:
about: regex match titles with
short: t
long: title
takes_value: true
- authors:
about: Authors, comma-separated
short: a
long: authors
takes_value: true
- genres:
about: genres, comma-separated
short: g
long: genres
takes_value: true
- blacklist:
about: Blacklisted genres, comma-separated
short: b
long: blacklist
takes_value: true
- broad_search:
about: Return books which match at least 1 genre instead of all genres
long: broad_search
- favorite:
about: Pull only items in favorites
short: f
long: favorite
- info:
about: Get item information
args:
- module:
about: Module used to handle item
short: m
long: module
takes_value: true
required: true
- code:
about: Code identifying item
short: c
long: code
takes_value: true
required: true
- edit:
about: Edit items in index
args:
- module:
about: Module used to handle item
short: m
long: module
takes_value: true
required: true
- code:
about: Code identifying item
short: c
long: code
takes_value: true
required: true
- title:
about: New title
short: t
long: title
takes_value: true
- authors:
about: New authors, comma-separated
short: a
long: authors
takes_value: true
- genres:
about: New genres, comma-separated
short: g
long: genres
- favorite:
about: Add item to favorites
short: f
long: favorite
takes_value: false
- import:
about: Import shelf data from yaml file
args:
- file:
about: yaml index file
short: f
takes_value: true
required: true
- export:
about: Export shelf data from yaml file
args:
- file:
about: yaml index file
short: f
takes_value: true
required: true