mirror of
https://github.com/jb55/nostril.git
synced 2024-11-21 08:19:08 -05:00
Add option to limit to posts since date
This commit is contained in:
parent
65c7077cce
commit
e1cfe8045a
|
@ -17,6 +17,7 @@ parser.add_argument('-g',
|
|||
metavar=('tag', 'value'),
|
||||
help="Generic tag query: `#<tag>: value`")
|
||||
parser.add_argument('-l', '--limit', type=int)
|
||||
parser.add_argument('-s', '--since', type=int)
|
||||
|
||||
def usage():
|
||||
parser.print_help()
|
||||
|
@ -52,5 +53,8 @@ if args.kinds is not None:
|
|||
kinds = args.kinds.split(",")
|
||||
filt["kinds"] = [a for a in map(lambda s: int(s), kinds)]
|
||||
|
||||
if args.since is not None:
|
||||
filt["since"] = args.since
|
||||
|
||||
q = json.dumps(["REQ","nostril-query",filt])
|
||||
print(q)
|
||||
|
|
Loading…
Reference in New Issue
Block a user