annotate .local/bin/chardetect @ 190:f2bf736c2d40

working, with issues: 1) warc.export.cdx.path is not set 2) mime property isn't getting through 3) lastMod isn't showing up
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Tue, 24 Sep 2024 17:08:05 +0100
parents a8bb3b4c208f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
66
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
1 #!/lustre/sw/miniconda3/bin/python
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
3 import re
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
4 import sys
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
5 from chardet.cli.chardetect import main
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
6 if __name__ == '__main__':
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
8 sys.exit(main())