-
Notifications
You must be signed in to change notification settings - Fork 0
/
maker.py
executable file
·519 lines (423 loc) · 11.8 KB
/
maker.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
#!./venv/bin/python
"""
Create python project with best practices.
This project allows user to get started with a new python project with
some default features in place such as logging, service file, etc. in place.
"""
# TODO: Read which user/group is running command, use that for creating service file as an option.
# TODO: Create status file for steps. Continue where setup left off.
# TODO: Check if python bin exists.
import argparse
import configparser
import logging
import sys
from os import path
from pathlib import Path
import subprocess
# Define config and logger.
CONFIG = configparser.ConfigParser()
CONFIG.read("conf/config.ini")
SECTION = "maker"
logger = logging.getLogger(SECTION)
def create_dirs(args):
"""Create given directory under given root dir.
Args:
args (dict): get args from user input flags.
"""
root_dir = Path(args["root_dir"])
proj_path = Path(args["root_dir"]) / args["project_name"]
# Check if directory exists.
if not path.exists(root_dir):
print(f"{args['root_dir']} not a valid path.")
sys.exit()
elif path.exists(proj_path):
print(f"{proj_path} already exists.")
sys.exit()
else:
create = input(f"Press y to create '{proj_path}': ")
# create = 'y'
if create == "y":
proj_path.mkdir()
(proj_path / "tests").mkdir()
(proj_path / "docs").mkdir()
(proj_path / "conf").mkdir()
(proj_path / "libs").mkdir()
(proj_path / "logs").mkdir()
(proj_path / "utils").mkdir()
(proj_path / "sample").mkdir()
#Path(proj_path / "logs" / ".gitkeep").touch()
(proj_path / "data").mkdir()
Path(proj_path / "README.md").touch()
Path(proj_path / "requirements.txt").touch()
Path(proj_path / "setup.py").touch()
else:
sys.exit()
def create_config(args):
"""
Create config file.
"""
conf_string = (
"""[global]
path = """
+ str(Path(args["root_dir"]) / args["project_name"])
+ """
["""
+ args["project_name"]
+ """]
log = logs/"""
+ args["project_name"]
+ """.log
level = DEBUG
#level = INFO
"""
)
config_path = Path(args["root_dir"]) / args["project_name"] / "conf" / "config.ini"
config_path.write_text(conf_string)
def create_bin(args):
"""
Create sample bin file, set up class, logging, config etc.
ALSO create a copy of the file under sample/ for future reference/use
Args:
args (dict): get args from user input flags.
"""
bin_string = (
"""#!./venv/bin/python
\"\"\"
Docstring should be written for each file.
run `pylint filename.py` to find recommendations on improving format.
\"\"\"
import configparser
import json
import logging
#Define config and logger.
CONFIG = configparser.ConfigParser()
CONFIG.read("conf/config.ini")
SECTION = \""""
+ args["project_name"]
+ """\"
logger = logging.getLogger(SECTION)
class """
+ args["project_name"].capitalize()
+ """:
\"\"\"
Create sample class
\"\"\"
def __init__(self, var):
self.var = var
def __str__(self):
\"\"\"
stringify
\"\"\"
return json.dumps(vars(self), indent=2)
def main():
\"\"\"
Main function.
\"\"\"
logging.basicConfig(filename=CONFIG[SECTION]["log"],
level=CONFIG[SECTION]["level"],
format="%(asctime)s::%(name)s::%(funcName)s::%(levelname)s::%(message)s",
datefmt="%Y-%m-%dT%H:%M:%S%z")
logger.info("####################STARTING####################")
if __name__ == "__main__":
main()
"""
)
bin_path = (
Path(args["root_dir"]) / args["project_name"] / (args["project_name"] + ".py")
)
sample_path = (
Path(args["root_dir"]) / args["project_name"] / "sample" / (args["project_name"] + ".py")
)
bin_path.write_text(bin_string)
sample_path.write_text(bin_string)
def create_service(args):
"""
Create service file.
Args:
args (dict): get args from user input flags.
"""
proj_path = Path(args["root_dir"]) / args["project_name"]
(proj_path / "service").mkdir()
while True:
user = input("Input user name that you would like to run the service as: ")
group = input("Input group name for user: ")
check = "n"
check = input(
f"User/group selected: {user}:{group} Proceed? [y/n/-1 to exit.] "
)
if check == "y":
break
if check == "-1":
sys.exit()
proj_path = str(proj_path)
service_string = (
"""[Unit]
Description=Service
#After=multi-user.target
[Service]
Type=simple
WorkingDirectory="""
+ proj_path
+ """
ExecStart="""
+ proj_path
+ """/venv/bin/python """
+ proj_path
+ """/"""
+ args["project_name"]
+ """.py
ExecReload=/bin/kill -HUP $MAINPID
User="""
+ user
+ """
Group="""
+ group
+ """
[Install]
WantedBy=multi-user.target
# Optional settings to allow your script to auto restart incase of failure.
# Restart=always
# TimeoutStartSec=10
# RestartSec=10
# Copy this file from the service folder using these commands
# Edit the file here for future uses, and use issue the command to override the existing file.
# sudo cp """
+ str(
Path(args["root_dir"])
/ args["project_name"]
/ "service"
/ args["project_name"]
)
+ """.service /lib/systemd/system/
# sudo systemctl daemon-reload
# sudo systemctl restart """
+ args["project_name"]
+ """.service
# Use above commands to reload and restart service.
# Issue this command once to make your script wake up and run on startup.
# sudo systemctl enable """
+ args["project_name"]
+ """.service
# Commands for starting, stopping, restarting and checking status of your script.
# sudo systemctl start """
+ args["project_name"]
+ """.service
# sudo systemctl stop """
+ args["project_name"]
+ """.service
# sudo systemctl restart """
+ args["project_name"]
+ """.service
# sudo systemctl status """
+ args["project_name"]
+ """.service
"""
)
service_path = (
Path(args["root_dir"])
/ args["project_name"]
/ "service"
/ (args["project_name"] + ".service")
)
service_path.write_text(service_string)
def create_gitignore(args):
"""
Create gitignore file for python.
Args:
args (dict): get args from user input flags.
"""
gitignore_string = """!somefolder/.gitkeep
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
logs/*.log
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
"""
gitignore_path = Path(args["root_dir"]) / args["project_name"] / ".gitignore"
gitignore_path.write_text(gitignore_string)
def main():
"""
Main function.
"""
logging.basicConfig(
filename=CONFIG[SECTION]["log"],
level=CONFIG[SECTION]["level"],
format="%(asctime)s::%(name)s::%(funcName)s::%(levelname)s::%(message)s",
datefmt="%Y-%m-%dT%H:%M:%S%z",
)
parser = argparse.ArgumentParser(
description="Python project maker",
epilog=f"""Suggested: python3 maker.py --root_dir {str(Path.cwd().parent)} --project_name PROJECT_NAME""",
formatter_class=argparse.RawTextHelpFormatter,
#formatter_class=argparse.ArgumentDefaultsHelpFormatter
)
# Add the arguments
parser.add_argument(
"-r",
"--root_dir",
action="store",
required=True,
help="enter where you would like the directory to be created.",
)
parser.add_argument(
"-p",
"--project_name",
action="store",
required=True,
help="Enter the name of the directory this project will be under.",
)
parser.add_argument(
"-b",
"--python_bin_path",
action="store",
help="Enter path to python binary to be used. Optional.",
)
parser.add_argument("-j", "--jupyter", action="store_true")
args = vars(parser.parse_args())
# print(args)
create_dirs(args)
create_config(args)
create_bin(args)
create = "n"
create = input("Press y to create service file: ")
if create == "y":
create_service(args)
create_gitignore(args)
# python3.8 -m venv venv
proj_path = Path(args["root_dir"]) / args["project_name"]
# Pick python to run..
if not args["python_bin_path"]:
print("Searching for installed python instances in /usr/bin/ ..")
print(
subprocess.check_output(["find /usr/bin/ -maxdepth 1 -regex '/usr/bin/python[0-9]+.[0-9]+'"], shell=True).decode(
"utf-8"
)
)
instance = input("select a python instance from above or set your own path: ")
else:
instance = args["python_bin_path"]
# Install instance venv.
try:
subprocess.run([instance, "-m", "venv", str(proj_path / "venv")], check=True)
except Exception as exp:
print(str(exp))
print("Please install python3.xx-venv for seelcted python version for your device before continuing.")
# Set up some libs for env like pylint.
pip_path = proj_path / "venv" / "bin" / "pip"
# Install jupyter
if args["jupyter"]:
subprocess.run([pip_path, "install", "notebook"], check=True)
subprocess.run([pip_path, "install", "--upgrade", "pip"], check=True)
subprocess.run([pip_path, "install", "pylint", "wheel"], check=True)
print(
"*****************************************************************************"
)
print("Copy/Paste this line to terminal to go to project and activate environment.")
print(
"*****************************************************************************"
)
# source "$root_dir"/$dir/venv/bin/activate;cd "$root_dir"/$dir;clear;ls -lrt
print(f"deactivate;cd {str(proj_path)};source venv/bin/activate;clear;ls -lrt;pwd")
if __name__ == "__main__":
main()