Metadata-Version: 2.1
Name: awmproxy
Version: 0.1.0
Summary: Wrapper for the awmproxy.net api
Home-page: https://github.com/jimtje/awmproxy
Author: jim zhou
Author-email: jimtje@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.6.0
Description-Content-Type: text/markdown
Requires-Dist: requests


# **awmproxy API Python Wrapper**

This package simplifies using awmproxy.net api to grab proxies so you can go scraping or whatever it is you need.

Requirements: paid account with api key


Usage:


```
import awmproxy
awm = awmproxy.AwmProxy('abcdef0123456abcdef123456apikeyapikey')

```
Get results as list in ip:port:
```
awm.get_proxy()
```

Get only universal ports that change ips every request:

```
awm.get_proxy(universal_port=701)
```

Get only US proxies, as list of json dict, with all available proxy information:

```
awm.get_proxy(json=True, info=True, country_only='US')

```

Get 25 fast proxies, not Russian, with full info as a list of tuples:

```
awm.get_proxy(country_not='RU', info=True, limit=25, fast=True)
```

