Skip to content

Commit 9f882d2

Browse files
committed
updated
1 parent 1a90b1d commit 9f882d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3385
-0
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Funding Configuration
2+
# This file is used to specify funding options for the project.
3+
custom: ["https://buymeacoffee.com/usamasarwar"]
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug in an existing script
4+
title: "[BUG] Brief description of the issue"
5+
labels: ["bug"]
6+
assignees: ["UsamaSarwar"]
7+
---
8+
9+
## 🐛 Bug Report
10+
11+
### Script Name
12+
13+
<!-- Which script is having the issue? -->
14+
15+
### Bug Description
16+
17+
<!-- A clear and concise description of what the bug is -->
18+
19+
### Steps to Reproduce
20+
21+
1. Go to '...'
22+
2. Run command '...'
23+
3. See error
24+
25+
### Expected Behavior
26+
27+
<!-- What you expected to happen -->
28+
29+
### Actual Behavior
30+
31+
<!-- What actually happened -->
32+
33+
### Error Message/Output
34+
35+
```
36+
<!-- Paste any error messages or unexpected output here -->
37+
```
38+
39+
### Environment
40+
41+
- **OS**: (e.g., Windows 10, macOS 12.0, Ubuntu 20.04)
42+
- **Python Version**: (e.g., 3.9.0)
43+
- **Script Version/Commit**: (e.g., latest, commit hash)
44+
45+
### Additional Context
46+
47+
<!-- Any additional information about the problem -->
48+
49+
---
50+
51+
### 💖 Support the Developer
52+
53+
Found this project helpful despite the bug? Consider
54+
[buying me a coffee](https://buymeacoffee.com/usamasarwar) to support ongoing development and bug
55+
fixes! ☕
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
name: Script Request
3+
about: Request a new Python script to be added to the collection
4+
title: "[REQUEST] Brief description of the script you need"
5+
labels: ["enhancement", "script-request"]
6+
assignees: ["UsamaSarwar"]
7+
---
8+
9+
## 📝 Script Request
10+
11+
### What type of script do you need?
12+
13+
<!-- Brief description of what you want the script to do -->
14+
15+
### Detailed Description
16+
17+
<!-- Provide a detailed explanation of the functionality you need -->
18+
19+
### Use Case
20+
21+
<!-- Explain how you plan to use this script and why it would be helpful -->
22+
23+
### Input/Output Requirements
24+
25+
<!-- Describe what inputs the script should accept and what outputs it should produce -->
26+
27+
- **Input**: (e.g., file path, URL, user input, etc.)
28+
- **Output**: (e.g., processed file, console output, data export, etc.)
29+
30+
### Dependencies/Requirements
31+
32+
<!-- Any specific libraries, APIs, or external services needed -->
33+
34+
- [ ] Requires internet connection
35+
- [ ] Needs specific Python libraries (please specify)
36+
- [ ] Requires API keys or credentials
37+
- [ ] Other requirements:
38+
39+
### Similar Tools/References
40+
41+
<!-- Any existing tools or references that might help understand your request -->
42+
43+
### Priority Level
44+
45+
- [ ] Low - Nice to have
46+
- [ ] Medium - Would be very helpful
47+
- [ ] High - Critical for my workflow
48+
49+
### Additional Context
50+
51+
<!-- Any additional information that might be helpful -->
52+
53+
---
54+
55+
### 💖 Support the Developer
56+
57+
If this script request is important to you, consider
58+
[buying me a coffee](https://buymeacoffee.com/usamasarwar) to support the development of more useful
59+
scripts! ☕
60+
61+
### 🤝 Want to Contribute?
62+
63+
Feel free to implement this script yourself and submit a pull request! Check out our
64+
[contributing guidelines](../CONTRIBUTING.md) for more information.

.github/workflows/pages.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
branches: [main, master]
8+
9+
jobs:
10+
build-and-deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout 🛎️
14+
uses: actions/checkout@v3
15+
16+
- name: Setup Ruby 💎
17+
uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: "3.0"
20+
bundler-cache: true
21+
22+
- name: Install and Build 🔧
23+
run: |
24+
gem install jekyll bundler
25+
bundle install
26+
bundle exec jekyll build
27+
28+
- name: Deploy 🚀
29+
uses: peaceiris/actions-gh-pages@v3
30+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
31+
with:
32+
github_token: ${{ secrets.GITHUB_TOKEN }}
33+
publish_dir: ./_site

.gitignore

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/#use-with-ide
110+
.pdm.toml
111+
112+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113+
__pypackages__/
114+
115+
# Celery stuff
116+
celerybeat-schedule
117+
celerybeat.pid
118+
119+
# SageMath parsed files
120+
*.sage.py
121+
122+
# Environments
123+
.env
124+
.venv
125+
env/
126+
venv/
127+
ENV/
128+
env.bak/
129+
venv.bak/
130+
131+
# Spyder project settings
132+
.spyderproject
133+
.spyproject
134+
135+
# Rope project settings
136+
.ropeproject
137+
138+
# mkdocs documentation
139+
/site
140+
141+
# mypy
142+
.mypy_cache/
143+
.dmypy.json
144+
dmypy.json
145+
146+
# Pyre type checker
147+
.pyre/
148+
149+
# pytype static type analyzer
150+
.pytype/
151+
152+
# Cython debug symbols
153+
cython_debug/
154+
155+
# PyCharm
156+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157+
# be added to the global gitignore or merged into this project gitignore.
158+
# For PyCharm Community Edition, use 'PyCharm CE' prefix.
159+
.idea/
160+
161+
# VS Code
162+
.vscode/
163+
164+
# macOS
165+
.DS_Store
166+
.AppleDouble
167+
.LSOverride
168+
169+
# Windows
170+
Thumbs.db
171+
ehthumbs.db
172+
Desktop.ini
173+
174+
# Linux
175+
*~
176+
177+
# Temporary files
178+
*.tmp
179+
*.temp
180+
*.swp
181+
*.swo
182+
183+
# Log files
184+
*.log
185+
186+
# Config files with sensitive data
187+
config.ini
188+
secrets.json
189+
.secrets
190+
191+
# Script-specific ignores
192+
# Add your script-specific files to ignore here

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13.3

0 commit comments

Comments
 (0)