Metadata-Version: 2.4
Name: Lambda-REST-Client
Version: 0.1.0.1
Summary: A simple client for calling Lambda REST endpoints
Home-page: https://github.com/a-jean-andreasian/Lambda-REST-Client
Author: Armen-Jean Andreasian
Author-email: armen.andreasian.dev@proton.me
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohappyeyeballs==2.6.1
Requires-Dist: aiohttp==3.13.2
Requires-Dist: aiosignal==1.4.0
Requires-Dist: attrs==25.4.0
Requires-Dist: frozenlist==1.8.0
Requires-Dist: idna==3.11
Requires-Dist: multidict==6.7.0
Requires-Dist: propcache==0.4.1
Requires-Dist: yarl==1.22.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Lambda-REST-Client

A simple Python client for calling AWS Lambda REST endpoints asynchronously using `aiohttp`.  

## Installation

You can install the package from PyPI:

```bash
pip install Lambda-REST-Client
````

## Usage

```python
from lambda_rest_client import call_lambda

asyncio.run(call_lambda(lambda_url=os.getenv("lambda_url"), payload={"num":0}, logger=None))
```

## Requirements

* Python 3.8+
* aiohappyeyeballs==2.6.1
* aiohttp==3.13.2
* aiosignal==1.4.0
* attrs==25.4.0
* frozenlist==1.8.0
* idna==3.11
* multidict==6.7.0
* propcache==0.4.1
* yarl==1.22.0

## License

3-Clause BSD NON-AI License
See [LICENSE](LICENSE) for details.

