-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
42 lines (32 loc) · 1.01 KB
/
main.py
File metadata and controls
42 lines (32 loc) · 1.01 KB
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
import os
import asyncclick as click
plugin_folder = os.path.join(os.path.dirname(__file__), "commands")
class GithubDeploy(click.MultiCommand):
def list_commands(self, ctx):
rv = []
for filename in os.listdir(plugin_folder):
if (
filename.endswith(".py")
and not filename.startswith("__init__")
and not filename.startswith("_")
):
rv.append(filename[:-3])
rv.sort()
return rv
def get_command(self, ctx, name):
ns = {}
fn = os.path.join(plugin_folder, name + ".py")
if os.path.exists(fn):
with open(fn) as f:
code = compile(f.read(), fn, "exec")
eval(code, ns, ns)
return ns["main"]
ctx.fail(f"Invalid Command \"{name}\"")
main = GithubDeploy(
help=(
"Deploy changes to multiple github repositories using "
"a single command."
),
)
if __name__ == "__main__":
main()