Metadata-Version: 2.1
Name: requests-random-user-agent
Version: 0.0.4
Summary: Automatically generate a random User Agent for the requests library
Home-page: https://github.com/DavidWittman/requests-random-user-agent
Author: David Wittman
Author-email: david@wittman.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (<3.0.0,>=2.0.1)

# requests-random-user-agent [![Build Status](https://travis-ci.org/DavidWittman/requests-random-user-agent.svg?branch=master)](https://travis-ci.org/DavidWittman/requests-random-user-agent) [![PyPI](https://img.shields.io/pypi/v/requests-random-user-agent.svg)](https://pypi.org/project/requests-random-user-agent/)

Configures the requests library to automatically use a popular desktop User-Agent.

### Installation

```
pip install requests-random-user-agent
```

### Usage

``` python
import requests
import requests_random_user_agent

s = requests.Session()
print(s.headers['User-Agent'])
```


