mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-14 00:17:08 +00:00
15 lines
247 B
Python
Executable file
15 lines
247 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
__package__ = 'archivebox'
|
|
|
|
import sys
|
|
from .cli import archivebox
|
|
|
|
|
|
def main():
|
|
archivebox.main(args=sys.argv[1:], stdin=sys.stdin)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
archivebox.main(args=sys.argv[1:], stdin=sys.stdin)
|
|
|