]>
git.scottworley.com Git - paperdoorknob/blob - paperdoorknob.py
1 # paperdoorknob: Print glowfic
3 # This program is free software: you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by the
5 # Free Software Foundation, version 3.
8 from argparse
import ArgumentParser
12 from xdg_base_dirs
import xdg_cache_home
15 def command_line_parser() -> ArgumentParser
:
16 parser
= ArgumentParser(prog
='paperdoorknob', description
='Print glowfic')
20 help='Where to keep the http cache (instead of %(default)s)',
21 default
=os
.path
.join(xdg_cache_home(), "paperdoorknob"))
24 help='How long to wait for HTTP requests, in seconds',
26 parser
.add_argument('url', help='URL to retrieve')
30 def fetch(url
: str, session
: requests
.Session
, timeout
: int) -> None:
31 with session
.get(url
, timeout
=timeout
) as r
:
36 args
= command_line_parser().parse_args()
37 with requests_cache
.CachedSession(args
.cache_path
) as session
:
38 fetch(args
.url
, session
, args
.timeout
)
41 if __name__
== '__main__':