diff --git a/README.md b/README.md index b18957d..f6b4413 100644 --- a/README.md +++ b/README.md @@ -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) +```