-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae46307
commit 4bd205b
Showing
1 changed file
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,22 @@ | ||
# pyrua | ||
Simple Module for Generating Random UserAgent for Web Scarping | ||
|
||
[![GitHub](https://img.shields.io/github/license/farhanaliofficial/pyrua)](https://github.com/farhanaliofficial/pyrua/blob/main/LICENSE) | ||
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/farhanaliofficial/pyrua)](https://github.com/farhanaliofficial/pyrua/releases) | ||
[![PyPI](https://img.shields.io/pypi/v/pyrua)](https://pypi.org/project/pyrua/) | ||
|
||
## Description | ||
pyrua is a simple Python module for generating random User-Agent strings for web scraping purposes. | ||
|
||
## Installation | ||
You can install pyrua using pip: | ||
``` | ||
pip install pyrua | ||
``` | ||
|
||
## Usage | ||
```python | ||
from pyrua import get_rua | ||
|
||
user_agent = get_rua() | ||
print(user_agent) | ||
``` |