Metadata-Version: 2.1
Name: ip_rotator
Version: 1.0.1
Summary: Hides Your Ip address in https requests
Author-email: Anish <anishshakthivelnadar@gmail.com>
Project-URL: Homepage, https://github.com/Anish0612/ip_rotator
Project-URL: Bug Tracker, https://github.com/Anish0612/ip_rotator/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Ip_rotator

ip_rotator helps to hides your ip address in http request.

This library searches every free proxy server that is available and set proxy in the request library.

This library will allow the user to bypass IP-based rate-limits for sites and services.

## Installation

```console
pip install ip-rotator
```

ip_rotator officially supports Python 3.7+.

## Usage

### Default

```python
import ip_rotator

proxy = ip_rotator.Proxy(https = False)  # To access https url set (https = True)

response = proxy.session.get('http://api.ipify.org/?format=json') # https request

```

### To Change Ip

```python
proxy.changeIp()  # to change ip
```
