Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 days ago)
- Default Branch: main
- Last Pushed: 2024-11-06T20:51:35.000Z (7 days ago)
- Last Synced: 2024-11-06T21:39:46.184Z (7 days ago)
- Topics: automation, python, python-projects, python3, rust, templater, workspace
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyIDE Python Project Templater
![Language](https://img.shields.io/github/languages/top/zzampax/PyIDE.svg?style=for-the-badge&labelColor=black&logo=rust&logoColor=red&label=Rust)
![Linux](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge&logo=linux&logoColor=black)
![Github](https://img.shields.io/badge/GitHub-000000?style=for-the-badge&logo=github&logoColor=white)
![WAM](https://img.shields.io/badge/AUTOMATE-EVERYTHING-CD3713?style=for-the-badge&labelColor=black)
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
```