mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 06:45:05 -05:00
35 lines
815 B
Python
35 lines
815 B
Python
"""
|
|
A simple command-line utility for fixing text found in a file.
|
|
|
|
Because files do not come with their encoding marked, it first runs the file
|
|
through `ftfy.guess_bytes`, then runs it through `ftfy.fix_text`.
|
|
"""
|
|
from ftfy import fix_file
|
|
|
|
import sys
|
|
ENCODE_STDOUT = (sys.hexversion < 0x03000000)
|
|
|
|
|
|
def main():
|
|
"""
|
|
Run ftfy as a command-line utility. (Requires Python 2.7 or later, or
|
|
the 'argparse' module.)
|
|
"""
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('filename', help='file to transcode')
|
|
|
|
args = parser.parse_args()
|
|
|
|
file = open(args.filename)
|
|
for line in fix_file(file):
|
|
if ENCODE_STDOUT:
|
|
sys.stdout.write(line.encode('utf-8'))
|
|
else:
|
|
sys.stdout.write(line)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|