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:
Your Name
2025-07-06 15:20:20 +03:00
parent 99d0750a74
commit 97375ec93b
+26
View File
@@ -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