mirror of
https://github.com/zebrajr/ArchiveBox.git
synced 2025-12-06 12:20:54 +01:00
12 lines
160 B
Python
Executable File
12 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)
|