1
0
Fork 0
mirror of synced 2024-09-28 23:31:09 +12:00
ArchiveBox/archivebox/__main__.py

16 lines
247 B
Python
Raw Normal View History

#!/usr/bin/env python3
__package__ = 'archivebox'
2019-04-28 09:26:24 +12:00
import sys
from .cli import archivebox
def main():
archivebox.main(args=sys.argv[1:], stdin=sys.stdin)
if __name__ == '__main__':
2019-04-28 09:26:24 +12:00
archivebox.main(args=sys.argv[1:], stdin=sys.stdin)