Metadata-Version: 2.1
Name: adjisan-proxy-scraper
Version: 0.1.1
Summary: Scrape fast HTTP, HTTPS, SOCKS4, and SOCKS5 proxies.
Home-page: https://github.com/adjidev/proxyscraper
Author: adjisan
Author-email: hello.adjisan@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Adjidev proxy scraper

> ===================================
# Guide
Let's get started if you don't know about my project
## 1. Installation
### requirements
> 1. python 3.8 or later
> 2. python installed on you device
> 3. Code editor or notepad etc

### for windows
- install python if python is not installed [click here](https://www.python.org/ftp/python/3.13.1/python-3.13.1-amd64.exe)
- install my pypi packages
  ```powershell
  python -m pip install adjisan-proxy-scraper
  ```

### for debian based linux
- install python if not installed
  ```bash
  sudo apt install python
  ```
- install my pypi package
  ```bash
  pip install adjisan-proxy-scraper
  ```

### for arch based linux
- install python if not installed
  ```bash
  sudo pacman -S python
  ```
- install my pypi packages
  ```bash
  pip install adjisan-proxy-scraper
  ```

### for red hat based linux
- install python if not installed
  ```bash
  sudo dnf install python3
  ```
- install my pypi packages
  ```bash
  pip install adjisan-proxy-scraper
  ```

## EXAMPLE
  ```python
  from ProxyScraper import GetProxy

  if __name__ == "__main__":
    #Init
    proxy = GetProxy(type="http", timeout=5, max_workers=20)

    #get
    proxies = proxy.get()
    print(f"Fetched {len(proxies)} proxies.")

    #save
    proxy.save("http.txt")
  ```

> ===================================
