mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00: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)
|