https://github.com/zzampax/pyide
A Simple binary that automates and simplifies the creation of a python work environment
https://github.com/zzampax/pyide
automation python python-projects python3 rust templater workspace
Last synced: 3 months ago
JSON representation
A Simple binary that automates and simplifies the creation of a python work environment
- Host: GitHub
- URL: https://github.com/zzampax/pyide
- Owner: zzampax
- License: agpl-3.0
- Created: 2024-11-06T15:28:06.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T14:35:40.000Z (8 months ago)
- Last Synced: 2025-04-12T06:05:19.801Z (3 months ago)
- Topics: automation, python, python-projects, python3, rust, templater, workspace
- Language: Rust
- Homepage:
- Size: 203 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyIDE Python Project Templater




![]()
This is a simple Python project templater that creates a basic project structure for a Python project:
```bash
.
├── .git/
├── .venv/
├── .gitignore
└── main.py2 directories, 2 files
```
The newly created project will have version control (`git`), a virtual environment, a `.gitignore` file in which the `.venv` directory is flagged, and a `main.py` file.
## Usage
```bash
$ ./pyide -m
```
For more specific information:
```bash
$ ./pyide --help
```
Optionally you can specify the editor you want to use:
### Visual Studio Code
```bash
$ ./pyide -m -c
```
### PyCharm
```bash
$ ./pyide -m -p
```
### Zed
```bash
$ ./pyide -m -z
```
## Compilation
```bash
$ cargo build --release
```