Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[flake8]
exclude = .git,__pycache__,env,venv,.eggs,.tox,.nox,build,dist
max-line-lenght = 120
max-line-length = 120
max-complexity = 8
ignore = W,BLK,
E24,E121,E123,E125,E126,E221,E226,E266,E704,
E265,E722,E501,E731,E306,E401,E302,E222,E303,
E402,E305,E261,E262,E203,N816
E402,E305,E261,E262,E203,N816
16 changes: 9 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ jobs:
os:
- ubuntu-latest
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.8'
- '3.11'
- '3.12'
include:
- os: windows-latest
python-version: '3.10'
python-version: '3.11'
- os: macos-latest
python-version: '3.10'
python-version: '3.11'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -41,4 +41,6 @@ jobs:
- name: Run proxyScraper
run: python3 proxyScraper.py -p http
- name: Run proxyChecker
run: python3 proxyChecker.py -t 20 -s google.com -l output.txt
run: python3 proxyChecker.py -t 20 -s google.com -l output.txt --limit 10
- name: Run proxyGeolocation
run: python3 proxyGeolocation.py -i 8.8.8.8
52 changes: 51 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,54 @@ dmypy.json
# Cython debug symbols
cython_debug/

output.txt
# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be added to the global gitignore or merged into this project gitignore
.idea/

# VS Code
.vscode/
*.code-workspace

# Project specific files
.github/copilot-instructions.md
output.txt
test_small.txt
test_local.py
*.txt
!requirements.txt
!dev_requirements.txt
!user_agents.txt
!README.txt

# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log
logs/

# Backup files
*.bak
*.backup

# IDE files
*.sublime-project
*.sublime-workspace

# Poetry/PDM (modern Python package managers)
poetry.lock
.pdm.toml
Loading
Loading