normalisename/normalisename.py

18 lines
403 B
Python
Raw Normal View History

2016-12-08 17:15:56 +00:00
from sys import argv
from os import rename
from unidecode import unidecode
for file in argv[1:]:
rename(file,
unidecode
(
''.join(ch for ch in file
if ch.isalnum()
or ch is ' '
2016-12-11 09:18:19 +00:00
or ch is '.'
or ch is '-') # dashes are ok
2016-12-08 17:15:56 +00:00
)
2016-12-11 09:18:19 +00:00
.replace(' ', '_'))