mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-15 17:45:38 +10:00
11 lines
159 B
Python
Executable File
11 lines
159 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)
|