You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,8 @@
25
25
26
26
## Features
27
27
28
-
-**Automatic search:** Finds all `.venv` directories recursively within a specified path.
29
-
-**Support to Conda:** Lists all Conda envs.
28
+
-**Automatic search:** Finds all .venv directories and any folders containing a pyvenv.cfg file recursively from the current working directory, as they are considered virtual environment folders.
29
+
-**Support for Conda**: Lists all available Conda environments.
30
30
-**Safe deletion:** Lists the directories to be deleted and asks for confirmation.
31
31
-**Fast and lightweight:** Minimal dependencies for quick execution.
32
32
@@ -40,12 +40,24 @@ pip install KillPy
40
40
41
41
## Usage
42
42
43
-
Run the following command to search and delete .venv directories and list Conda environments from the current directory and all its subdirectories recursively:
43
+
Run the following command to search for `.venv` directories and any folders containing a `pyvenv.cfg` file, as well as to list all `Conda environments` from the current directory and all its subdirectories recursively:
44
44
45
45
```bash
46
46
killpy
47
47
```
48
48
49
+
- To **close the application**, press `Ctrl+Q`.
50
+
- To **delete a virtual environment**, press `Space` (afte selecting the environment you want to delete).
51
+
52
+
## Roadmap
53
+
54
+
-[ ] Delete `__pycache__` Files
55
+
-[ ] Remove `dist` Folders and Build Artifacts
56
+
-[ ] Clean Up Installed Package Cache
57
+
-[ ] Delete `.egg-info` and `.dist-info` Files
58
+
-[ ] Analyze and Remove Unused Dependencies
59
+
-[ ] Optimize Disk Space in Python Projects
60
+
49
61
## Contributing
50
62
51
63
Contributions are welcome! If you'd like to improve this tool, feel free to fork the repository and submit a pull request.
0 commit comments