initial commit

This commit is contained in:
Bacruru Sakaguchi
2025-09-12 17:10:13 +07:00
commit 9e5e214944
57 changed files with 1538 additions and 0 deletions

12
pythonapp/Env/Env.py Normal file
View File

@@ -0,0 +1,12 @@
class Env:
def __init__(self):
self.pip_path = ""
pass
def create(self):
raise NotImplemented
def install_pkgs(self, pkgs: list, repo: str = None, extra: str = None):
raise NotImplemented