forked from ahmadiga/django_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrename.py
41 lines (34 loc) · 1.31 KB
/
rename.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from tempfile import mkstemp
from shutil import move
import os
from os import remove, close
from os import makedirs, rename
from os.path import join, expanduser, isfile, exists
from subprocess import call
def replace_djang_base(path, project_name):
for dirname in os.listdir(path):
try:
if dirname not in [".sass-cache","bower_components",".git","db.sqlite3","migrations"]:
if isfile(join(path, dirname)):
replace(join(path, dirname), "django_base", project_name)
else:
replace_djang_base(join(path, dirname), project_name)
except:
pass
def replace(file_path, pattern, subst):
# Create temp file
fh, abs_path = mkstemp()
with open(abs_path, 'w') as new_file:
with open(file_path) as old_file:
for line in old_file:
new_file.write(line.replace(pattern, subst))
close(fh)
# Remove original file
remove(file_path)
# Move new file
move(abs_path, file_path)
project_name = input("Enter project name (default:nameless): ") or "nameless"
project_path = os.path.dirname(os.path.abspath(__file__))
rename(join(project_path, "django_base"), join(project_path, project_name))
replace_djang_base(project_path, project_name)
call(["rm", os.path.abspath(__file__)])