Add .gitignore file for Python project
Initial .gitignore includes rules for Python bytecode, local configuration, packaging artifacts, logs, OS/editor files, and yt-dlp temporary files.
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
|||||||
|
# Python bytecode
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|
||||||
|
# Local configuration
|
||||||
|
*.ini
|
||||||
|
*.key
|
||||||
|
*.env
|
||||||
|
|
||||||
|
# Packaging artifacts
|
||||||
|
*.egg-info/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.deb
|
||||||
|
|
||||||
|
# Logs and misc
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# OS and editor-specific
|
||||||
|
.DS_Store
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# yt-dlp temporary/partial files
|
||||||
|
*.part
|
||||||
|
*.ytdl
|
||||||
Reference in New Issue
Block a user