This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
from __future__ import absolute_import | |
import sys | |
import os | |
from builtins import input | |
import subprocess | |
CODING_UTF8 = '# coding: utf-8' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
from __future__ import absolute_import | |
import sys | |
import os | |
from builtins import input | |
UNICODE_LITERALS = 'from __future__ import unicode_literals' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
from __future__ import absolute_import | |
import re | |
import sys | |
import os | |
from os import listdir | |
from os.path import isfile, join, isdir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: utf-8 | |
from __future__ import absolute_import | |
import sys | |
import os | |
from os import listdir | |
from os.path import isfile, join, isdir | |
from builtins import input |