mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-09 12:21:57 -04:00
11 lines
160 B
Python
Executable file
11 lines
160 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
__package__ = 'archivebox'
|
|
|
|
import sys
|
|
|
|
from .cli import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main(args=sys.argv[1:], stdin=sys.stdin)
|