PyGo is a Cargo like manager for Python
pygo new myproject
Creates a file structure like
myproject
|
- src
| |
| - __main__.py
|
- .git
|
- .gitignore
|
- README.md
The __main__.py
file will have a template like
```
def main():
print("Hello World")
if name == "main": main() ```
--bin
is a default argument
--lib
will create a file structure like
pygo new mylib --lib
myproject
|
- src
| |
| - __init__.py
|
- .git
|
- .gitignore
|
- README.md
init
creates a project that has no git
repo.env
creates a virtual environment for your project.add
command to install library's to your vm.pip
or from package manager