2021-09-15 03:02:03 +00:00
|
|
|
'''
|
2021-10-05 23:50:53 +00:00
|
|
|
named_python
|
|
|
|
============
|
|
|
|
|
|
|
|
Because Python is interpreted, when you look at the task manager / process list
|
2021-09-15 03:02:03 +00:00
|
|
|
you'll see that every running python instance has the same name, python.exe.
|
2021-10-05 23:50:53 +00:00
|
|
|
This script helps you name the executables so they stand out.
|
2021-09-15 03:02:03 +00:00
|
|
|
|
|
|
|
For the time being this script doesn't automatically call your new exe, you
|
|
|
|
have to write a second command to actually run it. I tried using
|
|
|
|
subprocess.Popen to spawn the new python with the rest of argv but the behavior
|
|
|
|
was different on Linux and Windows and neither was really clean.
|
2021-10-05 23:50:53 +00:00
|
|
|
|
|
|
|
> named_python name
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
> named_python myserver && python-myserver server.py --port 8080
|
|
|
|
> named_python hnarchive && python-hnarchive hnarchive.py livestream
|
2021-09-15 03:02:03 +00:00
|
|
|
'''
|
2021-10-05 23:50:53 +00:00
|
|
|
import argparse
|
2021-09-15 03:02:03 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2021-10-05 23:50:53 +00:00
|
|
|
from voussoirkit import betterhelp
|
2021-09-15 03:02:03 +00:00
|
|
|
from voussoirkit import pathclass
|
|
|
|
from voussoirkit import winwhich
|
|
|
|
|
2021-10-05 23:50:53 +00:00
|
|
|
def namedpython_argparse(args):
|
|
|
|
python = pathclass.Path(sys.executable)
|
2021-09-15 03:02:03 +00:00
|
|
|
|
2021-10-05 23:50:53 +00:00
|
|
|
name = args.name.strip()
|
2021-09-15 03:02:03 +00:00
|
|
|
|
|
|
|
named_python = python.parent.with_child(f'python-{name}{python.extension.with_dot}')
|
|
|
|
if named_python.exists:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
os.link(python.absolute_path, named_python.absolute_path)
|
2021-10-05 23:50:53 +00:00
|
|
|
print(named_python.absolute_path)
|
2021-09-15 03:02:03 +00:00
|
|
|
return 0
|
|
|
|
|
2021-10-05 23:50:53 +00:00
|
|
|
def main(argv):
|
|
|
|
parser = argparse.ArgumentParser(description=__doc__)
|
|
|
|
|
|
|
|
parser.add_argument('name')
|
|
|
|
parser.set_defaults(func=namedpython_argparse)
|
|
|
|
|
|
|
|
return betterhelp.single_main(argv, parser, __doc__)
|
|
|
|
|
2021-09-15 03:02:03 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
raise SystemExit(main(sys.argv[1:]))
|