mirror of https://github.com/pret/pokecrystal.git
12 lines
236 B
Python
12 lines
236 B
Python
|
import os
|
||
|
import sys
|
||
|
import preprocessor
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
for source in sys.argv[1:]:
|
||
|
dest = os.path.splitext(source)[0] + '.tx'
|
||
|
sys.stdin = open(source, 'r')
|
||
|
sys.stdout = open(dest, 'w')
|
||
|
preprocessor.preprocess()
|
||
|
|