From da4518f65099c0ebeef45120ba5b286acd6a299a Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sat, 6 Jul 2024 17:54:01 +0330 Subject: [PATCH 1/6] Create README.md --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..44b6b2d --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +

+ 🎨 Follow me here 🎨
+ Discord | + YouTube | + Github

+ +

+ +## + +### 🧰 Support +- Email: +- Discord: https://discord.gg/DcmwAB6NmE + +## + +### 📜 License & Warning +- Make for education propose only ! +- Under licensed MIT MIT License. + +## + +

+ Contribution Welcome + License Badge + Open Source +

From 5dab1928f92f5adc29faba013546eb4a00e6ba23 Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sat, 6 Jul 2024 17:55:22 +0330 Subject: [PATCH 2/6] Update README.md From d6ccd28a4fc2e4ec8d17d1f7fce92499ffd91a9a Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sat, 6 Jul 2024 17:55:45 +0330 Subject: [PATCH 3/6] Update README.md From aac64aaef0edbcf258eccc14d712a8457a5607f5 Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sat, 6 Jul 2024 17:57:01 +0330 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44b6b2d..ad7bd3c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Discord | YouTube | Github

- +

## From faf58391e4557a9d284cb06768ade80b636b84b9 Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sun, 7 Jul 2024 19:49:19 +0330 Subject: [PATCH 5/6] Create pylint.yml --- .github/workflows/pylint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 0000000..c73e032 --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,23 @@ +name: Pylint + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pylint + - name: Analysing the code with pylint + run: | + pylint $(git ls-files '*.py') From 64e75fa0f2f12118b9009b1e18d7c309bb2bd0ef Mon Sep 17 00:00:00 2001 From: mahyar azad | xno1n Date: Sun, 7 Jul 2024 19:50:11 +0330 Subject: [PATCH 6/6] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..26dc676 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Alok Sharma + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.