Skip to content

Instantly share code, notes, and snippets.

View tigran123's full-sized avatar
🏠
Working from home

Tigran Aivazian tigran123

🏠
Working from home
View GitHub Profile
@tigran123
tigran123 / cyrillic2latin_file_renamer.py
Last active February 6, 2018 09:27 — forked from ramanqul/cyrillic2latin_file_renamer.py
Cyrillic to Latin File Changer
#!/usr/bin/python
# -*- coding: utf-8 -*-
from os import walk, rename, mkdir
from os.path import isdir, exists
from sys import argv, exit, getfilesystemencoding
conversion = {
u'А': u'A',
u'Б': u'B',