Skip to content
/ PyIDE Public

A Simple binary that automates and simplifies the creation of a python work environment

License

Notifications You must be signed in to change notification settings

zzampax/PyIDE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyIDE Python Project Templater


Language Linux Github WAM

RU:PYTHON

This is a simple Python project templater that creates a basic project structure for a Python project:

.
├── .git/
├── .venv/
├── .gitignore
└── main.py

2 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

$ ./pyide <project_name> -m <modules>

For more specific information:

$ ./pyide --help

Optionally you can specify the editor you want to use:

Visual Studio Code

$ ./pyide <project_name> -m <modules> -c

PyCharm

$ ./pyide <project_name> -m <modules> -p

Zed

$ ./pyide <project_name> -m <modules> -z

Compilation

$ cargo build --release