forked from itsOwen/CyberScraper-2077
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
working perfectly, Optimizing filters
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# Python cache files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Virtual environment | ||
venv/ | ||
|
||
# Streamlit cache | ||
.streamlit/ | ||
|
||
# PyCharm files | ||
.idea/ | ||
|
||
# VS Code files | ||
.vscode/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# Environment variables | ||
.env | ||
|
||
# Operating system files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Log files | ||
*.log | ||
|
||
# Database files | ||
*.db | ||
*.sqlite3 | ||
|
||
# Chat history (if you don't want to version control it) | ||
chat_history.json | ||
|
||
# Compiled Python files | ||
*.pyc | ||
|
||
# Package directories | ||
dist/ | ||
build/ | ||
*.egg-info/ | ||
|
||
# Backup files | ||
*~ | ||
*.bak | ||
|
||
# Coverage reports | ||
htmlcov/ | ||
.coverage | ||
.coverage.* | ||
coverage.xml | ||
|
||
# Pytest cache | ||
.pytest_cache/ | ||
|
||
# mypy cache | ||
.mypy_cache/ | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ |