From cbcf89ddd9fc6a0f451869a61725a9b9262a7a4a Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 4 Feb 2024 15:55:19 +0200 Subject: [PATCH 01/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca9aa40..49eafe2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Python -# Cursed-Python-Template +# Python-Template ```bash From 700ea3a7f6d48c4992c5c111f8cbdc343145b2f3 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Tue, 6 Feb 2024 14:27:37 +0200 Subject: [PATCH 02/33] ... --- .vscode/launch.json | 15 +++++++++++++++ settings.json | 0 2 files changed, 15 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..6b76b4f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python Debugger: Current File", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file diff --git a/settings.json b/settings.json new file mode 100644 index 0000000..e69de29 From 9e504cd6984ddc17ce8aa956fe9d668840287350 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Tue, 6 Feb 2024 20:20:24 +0200 Subject: [PATCH 03/33] ... --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49eafe2..442f9f8 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,13 @@ # Python-Template - +## How to Run: ```bash pip install -r requirements.txt ``` +```bash +python main.py +``` To make the setup script executable, run the following command in your terminal: ```bash From 91ddaf8a2ab9301fb1a3a2e6b615f06f4649d2f9 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Thu, 8 Feb 2024 21:58:53 +0200 Subject: [PATCH 04/33] ... --- config.ini | 7 +++++++ config.json | 12 +++++++++++- config.xml | 10 +++++++++- main.py | 10 +++++++++- 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/config.ini b/config.ini index e69de29..164ec55 100644 --- a/config.ini +++ b/config.ini @@ -0,0 +1,7 @@ +[TemplateProjectConfig] +AppName = TemplateProject +Description = +[ProjectStructure] +MainScript = main.py +TransformerScript = scripts/install-dependencies.py +[Scripts] diff --git a/config.json b/config.json index cb92a2e..baf93f3 100644 --- a/config.json +++ b/config.json @@ -1,3 +1,13 @@ { + "TemplateProjectConfig": { + "AppName": "TemplateProject", + "Description": "", + "ProjectStructure": { + "MainScript": "main.py", + "TransformerScript": "scripts/install-dependencies.py" + }, + "Scripts": { -} \ No newline at end of file + } + } + } \ No newline at end of file diff --git a/config.xml b/config.xml index b2a5caa..30e453f 100644 --- a/config.xml +++ b/config.xml @@ -1 +1,9 @@ - \ No newline at end of file + + TemplateProject + + + main.py + scripts/install-dependencies.py + + + \ No newline at end of file diff --git a/main.py b/main.py index 6af73ad..43c9383 100644 --- a/main.py +++ b/main.py @@ -1,8 +1,16 @@ import os import subprocess +import json def main(): - print("Python Project") + with open('config.json') as json_file: + config_data = json.load(json_file) + + # Get the project name from the JSON data + app_name = config_data.get('TemplateProjectConfig', {}).get('AppName', 'default_app') + + # Print the actual app name value + print(app_name) scripts = { "1": { From 28bb63e2cc4beb9c3f73bb87cc88ad76fc71d9c5 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Thu, 8 Feb 2024 22:19:25 +0200 Subject: [PATCH 05/33] ... --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index baf93f3..deacadb 100644 --- a/config.json +++ b/config.json @@ -4,7 +4,7 @@ "Description": "", "ProjectStructure": { "MainScript": "main.py", - "TransformerScript": "scripts/install-dependencies.py" + "DependenciesScript": "scripts/install-dependencies.py" }, "Scripts": { From 9f2b17507ff11b66f36b2924a8630fcd2d332f4b Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Thu, 8 Feb 2024 22:26:29 +0200 Subject: [PATCH 06/33] ... --- config.json | 2 +- main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index deacadb..bfaf138 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "TemplateProjectConfig": { + "Config": { "AppName": "TemplateProject", "Description": "", "ProjectStructure": { diff --git a/main.py b/main.py index 43c9383..968d947 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ def main(): config_data = json.load(json_file) # Get the project name from the JSON data - app_name = config_data.get('TemplateProjectConfig', {}).get('AppName', 'default_app') + app_name = config_data.get('Config', {}).get('AppName', 'default_app') # Print the actual app name value print(app_name) From 247f95915c35565acf8991f920cb35dba4afa565 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment Date: Fri, 9 Feb 2024 02:11:32 +0200 Subject: [PATCH 07/33] ... --- main.py | 4 ++-- scripts/{install-dependencies.py => install_dependencies.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename scripts/{install-dependencies.py => install_dependencies.py} (100%) diff --git a/main.py b/main.py index 968d947..3b84509 100644 --- a/main.py +++ b/main.py @@ -24,9 +24,9 @@ def main(): "file_name": "scripts/script01.py" }, "00": { - "name": "Run 'Install Dependencies'", + "name": "Run 'install_dependencies.py'", "description": "Install dependencies", - "file_name": "scripts/install-dependencies.py" + "file_name": "scripts/install_dependencies.py" }, } diff --git a/scripts/install-dependencies.py b/scripts/install_dependencies.py similarity index 100% rename from scripts/install-dependencies.py rename to scripts/install_dependencies.py From e8362c6b99463f041d4877364d3e0af86d0b7533 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 12 Feb 2024 01:26:22 +0200 Subject: [PATCH 08/33] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 442f9f8..07f9825 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,10 @@ To make the setup script executable, run the following command in your terminal: chmod +x setup.sh ``` +
+ From 7bfc61b8c8d500adc527e262d34e1fc1fa227328 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:27:29 +0200 Subject: [PATCH 09/33] Update .gitattributes --- .gitattributes | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.gitattributes b/.gitattributes index 2da9bcf..898094c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,29 +1,9 @@ -*.md linguist-vendored=false -*.md linguist-generated=false -*.md linguist-documentation=false -*.md linguist-detectable=true - *.json linguist-vendored=false *.json linguist-generated=false *.json linguist-documentation=false *.json linguist-detectable=true -*.yml linguist-vendored=false -*.yml linguist-generated=false -*.yml linguist-documentation=false -*.yml linguist-detectable=true - -*.ini linguist-vendored=false -*.ini linguist-generated=false -*.ini linguist-documentation=false -*.ini linguist-detectable=true - *.txt linguist-vendored=false *.txt linguist-generated=false *.txt linguist-documentation=false *.txt linguist-detectable=true - -*.xml linguist-vendored=false -*.xml linguist-generated=false -*.xml linguist-documentation=false -*.xml linguist-detectable=true From 83ae132b78995895effc895b961973fc481a9c7a Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:27:39 +0200 Subject: [PATCH 10/33] Delete config.ini --- config.ini | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 config.ini diff --git a/config.ini b/config.ini deleted file mode 100644 index 164ec55..0000000 --- a/config.ini +++ /dev/null @@ -1,7 +0,0 @@ -[TemplateProjectConfig] -AppName = TemplateProject -Description = -[ProjectStructure] -MainScript = main.py -TransformerScript = scripts/install-dependencies.py -[Scripts] From b2d68fca58f6b5bd4d2c5a4a2527afd0e4b00748 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:27:47 +0200 Subject: [PATCH 11/33] Delete config.xml --- config.xml | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 config.xml diff --git a/config.xml b/config.xml deleted file mode 100644 index 30e453f..0000000 --- a/config.xml +++ /dev/null @@ -1,9 +0,0 @@ - - TemplateProject - - - main.py - scripts/install-dependencies.py - - - \ No newline at end of file From 544ba0aed08e8c346b280b40bcea8b3f3da30811 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 3 Oct 2024 08:08:02 +0200 Subject: [PATCH 12/33] Add files via upload --- clear-commits.bat | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 clear-commits.bat diff --git a/clear-commits.bat b/clear-commits.bat new file mode 100644 index 0000000..75f9428 --- /dev/null +++ b/clear-commits.bat @@ -0,0 +1,18 @@ +@echo off +REM Switch to a new orphan branch +git checkout --orphan new_branch + +REM Stage all changes +git add . + +REM Commit changes +git commit -m "new_commit" + +REM Delete the old main branch +git branch -D main + +REM Rename the new branch to main +git branch -m main + +REM Force push to the remote main branch +git push -f origin main From 1f8d0d39f6873e2d252e3b44094e37268c542603 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:24:23 +0200 Subject: [PATCH 13/33] Add files via upload --- clear-commits.ps1 | 17 +++++++++++++++++ clear-commits.sh | 19 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 clear-commits.ps1 create mode 100644 clear-commits.sh diff --git a/clear-commits.ps1 b/clear-commits.ps1 new file mode 100644 index 0000000..db7f511 --- /dev/null +++ b/clear-commits.ps1 @@ -0,0 +1,17 @@ +# Switch to a new orphan branch +git checkout --orphan new_branch + +# Stage all changes +git add . + +# Commit changes +git commit -m "new_commit" + +# Delete the old main branch +git branch -D main + +# Rename the new branch to main +git branch -m main + +# Force push to the remote main branch +git push -f origin main \ No newline at end of file diff --git a/clear-commits.sh b/clear-commits.sh new file mode 100644 index 0000000..2c62b8f --- /dev/null +++ b/clear-commits.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# Switch to a new orphan branch +git checkout --orphan new_branch + +# Stage all changes +git add . + +# Commit changes +git commit -m "new_commit" + +# Delete the old main branch +git branch -D main + +# Rename the new branch to main +git branch -m main + +# Force push to the remote main branch +git push -f origin main \ No newline at end of file From f8a03fa8b63cd596e6f01aba75344512a7d9fbb5 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Wed, 9 Oct 2024 02:04:38 +0200 Subject: [PATCH 14/33] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 07f9825..2068f38 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ +
+ +
+
Python
From beffa082f3cd034a71d4e5da6bd3252d65ef2a06 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:00:13 +0200 Subject: [PATCH 15/33] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2068f38..6542909 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ To make the setup script executable, run the following command in your terminal: chmod +x setup.sh ``` +
+ +© Cursed Entertainment +
From 9f7d53dea634303fbe555a220d9fa7f312dcaff5 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:01:00 +0200 Subject: [PATCH 16/33] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6542909..3473eb9 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,11 @@ chmod +x setup.sh
+
© Cursed Entertainment +
+ +
From 8c08c81794e6d7cb1cfcc1795efdef7bde24a55f Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 10 Oct 2024 23:17:35 +0200 Subject: [PATCH 17/33] Add files via upload --- run.ps1 | 0 stup.ps1 | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 run.ps1 create mode 100644 stup.ps1 diff --git a/run.ps1 b/run.ps1 new file mode 100644 index 0000000..e69de29 diff --git a/stup.ps1 b/stup.ps1 new file mode 100644 index 0000000..bf62772 --- /dev/null +++ b/stup.ps1 @@ -0,0 +1,6 @@ +# Create a Python virtual environment +python -m venv psdenv + +# Activate the virtual environment and run the Python script +& ".\psdenv\Scripts\Activate.ps1" +python main.py \ No newline at end of file From c4a2fd0a32207592bf5209f18c30e5489b2d0e49 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Thu, 10 Oct 2024 23:18:04 +0200 Subject: [PATCH 18/33] Add files via upload --- run.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 run.sh diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..21e00e0 --- /dev/null +++ b/run.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +VENV_DIR="psdenv" + +# Check if the virtual environment directory exists +if [ ! -d "$VENV_DIR" ]; then + # Create the virtual environment + python -m venv "$VENV_DIR" +fi + +# Activate the virtual environment and run the Python script +source "$VENV_DIR/bin/activate" +python main.py + +# Pause for user input before closing (optional) +read -p "Press Enter to continue..." \ No newline at end of file From cb7d3d13afea876ad9383d879d3719d8ef5a1484 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 14 Oct 2024 03:50:37 +0200 Subject: [PATCH 19/33] Update and rename stup.ps1 to setup.ps1 --- stup.ps1 => setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename stup.ps1 => setup.ps1 (88%) diff --git a/stup.ps1 b/setup.ps1 similarity index 88% rename from stup.ps1 rename to setup.ps1 index bf62772..09ac92c 100644 --- a/stup.ps1 +++ b/setup.ps1 @@ -3,4 +3,4 @@ python -m venv psdenv # Activate the virtual environment and run the Python script & ".\psdenv\Scripts\Activate.ps1" -python main.py \ No newline at end of file +python main.py From 9a62525a9b33865a7584ee523a6214ec602c4e68 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 14 Oct 2024 05:55:12 +0200 Subject: [PATCH 20/33] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3473eb9..a44f980 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Twitter: @NorowaretaGemu](https://img.shields.io/badge/contact-@NorowaretaGemu-blue.svg?style=flat)](https://x.com/NorowaretaGemu) +
From e33e7dd43d1e18e07cbf370893d9a971b564777e Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 14 Oct 2024 06:00:00 +0200 Subject: [PATCH 21/33] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a44f980..c664d89 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Twitter: @NorowaretaGemu](https://img.shields.io/badge/contact-@NorowaretaGemu-blue.svg?style=flat)](https://x.com/NorowaretaGemu) +[![Twitter: @NorowaretaGemu](https://img.shields.io/badge/X-@NorowaretaGemu-blue.svg?style=flat)](https://x.com/NorowaretaGemu)
From 6eef8b30fcae0871162084c5264f03d888c588ca Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 09:14:40 +0200 Subject: [PATCH 22/33] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c664d89..774335b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,12 @@
Python
+
+ PowerShell + Shell + Batch +
+
# Python-Template From ed11accb93423962de2215f9aebac3b4fbb6a08e Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 12:19:58 +0200 Subject: [PATCH 23/33] Add files via upload --- clear-commits.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 clear-commits.py diff --git a/clear-commits.py b/clear-commits.py new file mode 100644 index 0000000..2654a11 --- /dev/null +++ b/clear-commits.py @@ -0,0 +1,28 @@ +import subprocess + +def run_command(command): + """Run a command in the shell and print the output.""" + try: + result = subprocess.run(command, check=True, text=True, capture_output=True) + print(result.stdout) + except subprocess.CalledProcessError as e: + print(f"Error: {e.stderr}") + exit(1) + +# Switch to a new orphan branch +run_command(["git", "checkout", "--orphan", "new_branch"]) + +# Stage all changes +run_command(["git", "add", "."]) + +# Commit changes +run_command(["git", "commit", "-m", "new_commit"]) + +# Delete the old main branch +run_command(["git", "branch", "-D", "main"]) + +# Rename the new branch to main +run_command(["git", "branch", "-m", "main"]) + +# Force push to the remote main branch +run_command(["git", "push", "-f", "origin", "main"]) \ No newline at end of file From 0ad4e3507eaecd0b9eff1d48f26d5c930aaefd1d Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 12:23:18 +0200 Subject: [PATCH 24/33] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 774335b..fa375c4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [![Twitter: @NorowaretaGemu](https://img.shields.io/badge/X-@NorowaretaGemu-blue.svg?style=flat)](https://x.com/NorowaretaGemu) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
From e7a2b8945d1e3595e7c86e2b4d3a84b6e16284d1 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 12:24:15 +0200 Subject: [PATCH 25/33] Update run.ps1 --- run.ps1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/run.ps1 b/run.ps1 index e69de29..e439efd 100644 --- a/run.ps1 +++ b/run.ps1 @@ -0,0 +1,15 @@ +# Define the virtual environment directory +$VENV_DIR = "psdenv" + +# Check if the virtual environment directory exists +if (-Not (Test-Path $VENV_DIR)) { + # Create the virtual environment + python -m venv $VENV_DIR +} + +# Activate the virtual environment and run the Python script +& "$VENV_DIR\Scripts\Activate.ps1" +python main.py + +# Pause for user input before closing (optional) +Read-Host "Press Enter to continue..." From 9990245a456d2e4cbdd1a7ecdf78b098bc98a458 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:06:37 +0200 Subject: [PATCH 26/33] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa375c4..5ce3526 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,11 @@ Python
+ Git PowerShell Shell Batch -
+

# Python-Template From 6485ece446d9c0879abd2ae8ce2985dbb0dc3543 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:22:56 +0200 Subject: [PATCH 27/33] Update README.md --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5ce3526..ee5e11b 100644 --- a/README.md +++ b/README.md @@ -26,23 +26,33 @@ ```bash pip install -r requirements.txt ``` +
+ ```bash python main.py ``` +
+ To make the setup script executable, run the following command in your terminal: ```bash chmod +x setup.sh ``` -
+
-
-© Cursed Entertainment -
+## Requirements: +```bash + +``` +
+
+
+© Cursed Entertainment 202* +

From 26a519e0d44244dd9f8a0180086b65dd4775da17 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 20 Oct 2024 16:37:18 +0200 Subject: [PATCH 28/33] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index ee5e11b..e7b9de3 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,6 @@ chmod +x setup.sh ``` -
-
© Cursed Entertainment 202* From 2f6c3e098d6a55e1567001970e120d6d34f2ef87 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:03:00 +0200 Subject: [PATCH 29/33] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index e7b9de3..cf474b4 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,23 @@ # Python-Template ## How to Run: + +### Install Requirements + ```bash pip install -r requirements.txt ``` +Or run install_requirements.bat +
+### Run main.py + ```bash python main.py ``` +Or run run.bat +
To make the setup script executable, run the following command in your terminal: From f8960aaa8fa1a95878f4957ed3facff8f4b74543 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:30:16 +0200 Subject: [PATCH 30/33] Update README.md --- README.md | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cf474b4..acf97b3 100644 --- a/README.md +++ b/README.md @@ -26,27 +26,34 @@ ### Install Requirements +Using Python directly: + ```bash pip install -r requirements.txt ``` -Or run install_requirements.bat +Or run: +- `install_requirements.bat` +
### Run main.py +Using Python directly: + ```bash python main.py ``` -Or run run.bat -
+Using provided scripts: -To make the setup script executable, run the following command in your terminal: +Windows: +- `.\run.bat` +or +- `.\run.ps1` -```bash -chmod +x setup.sh -``` +Unix-like systems (Linux/macOS): +- `.\run.sh`
From 20958867322a5e6add8657a72bb040519f28be34 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:40:50 +0200 Subject: [PATCH 31/33] ... --- __init__.py | 0 scripts/__init__.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 __init__.py create mode 100644 scripts/__init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/scripts/__init__.py b/scripts/__init__.py new file mode 100644 index 0000000..e69de29 From 3f8e20aa58f6639ee7b55f316cfed85dc15b6fd9 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Mon, 14 Apr 2025 22:37:51 +0200 Subject: [PATCH 32/33] Add files via upload --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..a1ca617 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: [ buymeacoffee.com/cursedentertainment, ko-fi.com/cursedentertainment ] From d767d514023d856b1da4cf7b7f2dabbe6fe5f483 Mon Sep 17 00:00:00 2001 From: Cursed Entertainment <110344485+CursedPrograms@users.noreply.github.com> Date: Sun, 4 May 2025 15:32:50 +0200 Subject: [PATCH 33/33] Add files via upload --- install_requirements.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 install_requirements.bat diff --git a/install_requirements.bat b/install_requirements.bat new file mode 100644 index 0000000..20fa101 --- /dev/null +++ b/install_requirements.bat @@ -0,0 +1,3 @@ +@echo off +pip install -r requirements.txt +pause