Metadata-Version: 2.1
Name: botasaurus_requests
Version: 4.0.22
Summary: botasaurus_requests is a fork of the requests library with the playwright dependencies removed.
Home-page: https://github.com/omkarcloud/botasaurus-requests
Author: Chetan
Author-email: chetan@omkar.cloud
Maintainer: Chetan
Maintainer-email: chetan@omkar.cloud
License: MIT
Project-URL: Homepage, https://github.com/omkarcloud/botasaurus-requests
Project-URL: Bug Reports, https://github.com/omkarcloud/botasaurus-requests/issues
Project-URL: Source, https://github.com/omkarcloud/botasaurus-requests
Keywords: tls,client,http,scraping,requests,humans
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: orjson
Requires-Dist: httpx
Requires-Dist: geventhttpclient
Requires-Dist: urllib3
Requires-Dist: rich
Requires-Dist: click
Requires-Dist: gevent

# Botasaurus Requests

botasaurus-requests is a fork of the [hrequests](https://github.com/daijro/hrequests) library, featuring the following updates:

- Removal of the playwright dependencies, to make it more lightweight.
- Bug fixes to ensure smooth execution on Windows, eliminating runtime errors.
- Addition of the Google Referer header in the get method to make requests more humane.

## Installation

```bash
pip install botasaurus-requests
```

## Usage

```python
from botasaurus_requests import request

response = request.get(
    "https://www.g2.com/products/omkar-cloud/reviews",
    headers={
        "Referer": "https://www.google.com/",
    },
)
print(response.status_code)
```

## Credits

Kudos to [daijro](https://github.com/daijro) for creating [hrequests](https://github.com/daijro/hrequests).
