Add support for JSON and archive_url (#33)
CLI support for JSON and archive_url attributes
This commit is contained in:
parent
91e7f65617
commit
9de6393cd5
@ -10,6 +10,12 @@ from waybackpy.__version__ import __version__
|
|||||||
def _save(obj):
|
def _save(obj):
|
||||||
return (obj.save())
|
return (obj.save())
|
||||||
|
|
||||||
|
def _archive_url(obj):
|
||||||
|
return (obj.archive_url)
|
||||||
|
|
||||||
|
def _json(obj):
|
||||||
|
return (obj.JSON)
|
||||||
|
|
||||||
def _oldest(obj):
|
def _oldest(obj):
|
||||||
return (obj.oldest())
|
return (obj.oldest())
|
||||||
|
|
||||||
@ -34,6 +40,10 @@ def _near(obj, args):
|
|||||||
return (obj.near(**_near_args))
|
return (obj.near(**_near_args))
|
||||||
|
|
||||||
def _known_urls(obj, args):
|
def _known_urls(obj, args):
|
||||||
|
"""Abbreviations:
|
||||||
|
sd = subdomain
|
||||||
|
al = alive
|
||||||
|
"""
|
||||||
sd = False
|
sd = False
|
||||||
al = False
|
al = False
|
||||||
if args.subdomain:
|
if args.subdomain:
|
||||||
@ -68,6 +78,9 @@ def _get(obj, args):
|
|||||||
if args.get.lower() == "url":
|
if args.get.lower() == "url":
|
||||||
return (obj.get())
|
return (obj.get())
|
||||||
|
|
||||||
|
if args.get.lower() == "archive_url":
|
||||||
|
return (obj.get(obj.archive_url))
|
||||||
|
|
||||||
if args.get.lower() == "oldest":
|
if args.get.lower() == "oldest":
|
||||||
return (obj.get(obj.oldest()))
|
return (obj.get(obj.oldest()))
|
||||||
|
|
||||||
@ -79,9 +92,10 @@ def _get(obj, args):
|
|||||||
|
|
||||||
return ("Use get as \"--get 'source'\", 'source' can be one of the followings: \
|
return ("Use get as \"--get 'source'\", 'source' can be one of the followings: \
|
||||||
\n1) url - get the source code of the url specified using --url/-u.\
|
\n1) url - get the source code of the url specified using --url/-u.\
|
||||||
\n2) oldest - get the source code of the oldest archive for the supplied url.\
|
\n2) archive_url - get the source code of the newest archive for the supplied url, alias of newest.\
|
||||||
\n3) newest - get the source code of the newest archive for the supplied url.\
|
\n3) oldest - get the source code of the oldest archive for the supplied url.\
|
||||||
\n4) save - Create a new archive and get the source code of this new archive for the supplied url.")
|
\n4) newest - get the source code of the newest archive for the supplied url.\
|
||||||
|
\n5) save - Create a new archive and get the source code of this new archive for the supplied url.")
|
||||||
|
|
||||||
def args_handler(args):
|
def args_handler(args):
|
||||||
if args.version:
|
if args.version:
|
||||||
@ -97,6 +111,10 @@ def args_handler(args):
|
|||||||
|
|
||||||
if args.save:
|
if args.save:
|
||||||
return _save(obj)
|
return _save(obj)
|
||||||
|
if args.archive_url:
|
||||||
|
return _archive_url(obj)
|
||||||
|
if args.json:
|
||||||
|
return _json(obj)
|
||||||
if args.oldest:
|
if args.oldest:
|
||||||
return _oldest(obj)
|
return _oldest(obj)
|
||||||
if args.newest:
|
if args.newest:
|
||||||
@ -123,6 +141,12 @@ def parse_args(argv):
|
|||||||
saveArg = parser.add_argument_group("Create new archive/save URL")
|
saveArg = parser.add_argument_group("Create new archive/save URL")
|
||||||
saveArg.add_argument("--save", "-s", action='store_true', help="Save the URL on the Wayback machine")
|
saveArg.add_argument("--save", "-s", action='store_true', help="Save the URL on the Wayback machine")
|
||||||
|
|
||||||
|
auArg = parser.add_argument_group("Get the latest Archive")
|
||||||
|
auArg.add_argument("--archive_url", "-au", action='store_true', help="Get the latest archive URL, alias for --newest")
|
||||||
|
|
||||||
|
jsonArg = parser.add_argument_group("Get the JSON data")
|
||||||
|
jsonArg.add_argument("--json", "-j", action='store_true', help="JSON data of the availability API request")
|
||||||
|
|
||||||
oldestArg = parser.add_argument_group("Oldest archive")
|
oldestArg = parser.add_argument_group("Oldest archive")
|
||||||
oldestArg.add_argument("--oldest", "-o", action='store_true', help="Oldest archive for the specified URL")
|
oldestArg.add_argument("--oldest", "-o", action='store_true', help="Oldest archive for the specified URL")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user