-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3672c6b
commit 5e1927f
Showing
12 changed files
with
140 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,4 @@ | |
language = en | ||
ngrok_token = | ||
theme = dark | ||
region = eu | ||
|
||
region = eu |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
@echo off | ||
chcp 65001 > NUL | ||
|
||
call venv\Scripts\activate | ||
|
||
echo Virtual environment activated | ||
echo. | ||
echo Available options: | ||
echo 1. Install package | ||
echo 2. Uninstall package | ||
echo 3. Upgrade package | ||
echo 4. List installed packages | ||
echo 5. Show package details | ||
echo 6. Check dependencies | ||
echo 7. Debug information | ||
echo 8. Exit | ||
echo. | ||
|
||
:menu | ||
set /p choice="Enter your choice (1-8): " | ||
|
||
if "%choice%"=="1" ( | ||
set /p package="Enter package name to install: " | ||
pip install %package% | ||
goto menu | ||
) | ||
if "%choice%"=="2" ( | ||
set /p package="Enter package name to uninstall: " | ||
pip uninstall %package% | ||
goto menu | ||
) | ||
if "%choice%"=="3" ( | ||
set /p package="Enter package name to upgrade: " | ||
pip install --upgrade %package% | ||
goto menu | ||
) | ||
if "%choice%"=="4" ( | ||
pip list | ||
echo. | ||
goto menu | ||
) | ||
if "%choice%"=="5" ( | ||
set /p package="Enter package name to show details: " | ||
pip show %package% | ||
echo. | ||
goto menu | ||
) | ||
if "%choice%"=="6" ( | ||
pip check | ||
echo. | ||
goto menu | ||
) | ||
if "%choice%"=="7" ( | ||
pip debug --verbose | ||
echo. | ||
goto menu | ||
) | ||
if "%choice%"=="8" ( | ||
deactivate | ||
exit | ||
) | ||
|
||
echo Invalid choice. Please try again. | ||
goto menu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#!/bin/bash | ||
|
||
source venv/bin/activate | ||
|
||
echo "Virtual environment activated" | ||
echo | ||
|
||
while true; do | ||
echo "Available options:" | ||
echo "1. Install package" | ||
echo "2. Uninstall package" | ||
echo "3. Upgrade package" | ||
echo "4. List installed packages" | ||
echo "5. Show package details" | ||
echo "6. Check dependencies" | ||
echo "7. Debug information" | ||
echo "8. Exit" | ||
echo | ||
|
||
read -p "Enter your choice (1-8): " choice | ||
|
||
case $choice in | ||
1) | ||
read -p "Enter package name to install: " package | ||
pip install $package | ||
;; | ||
2) | ||
read -p "Enter package name to uninstall: " package | ||
pip uninstall $package | ||
;; | ||
3) | ||
read -p "Enter package name to upgrade: " package | ||
pip install --upgrade $package | ||
;; | ||
4) | ||
pip list | ||
echo | ||
;; | ||
5) | ||
read -p "Enter package name to show details: " package | ||
pip show $package | ||
echo | ||
;; | ||
6) | ||
pip check | ||
echo | ||
;; | ||
7) | ||
pip debug --verbose | ||
echo | ||
;; | ||
8) | ||
deactivate | ||
exit 0 | ||
;; | ||
*) | ||
echo "Invalid choice. Please try again." | ||
;; | ||
esac | ||
echo | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters