Metadata-Version: 2.4
Name: lima-api
Version: 1.4.3
Summary: Lima-API is sync and async library that allows implements Rest APIs libs with python typing.
Author: Cesar Gonzalez
Author-email: Victor Torre <vatorre@paradigmadigital.com>
License: MIT License
        
        Copyright (c) 2023 Paradigma Digital S.L.
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx
Requires-Dist: opentelemetry-instrumentation-httpx
Provides-Extra: test
Requires-Dist: coverage; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-mock; extra == "test"
Requires-Dist: pytest-httpserver; extra == "test"
Requires-Dist: freezegun; extra == "test"
Requires-Dist: ruff; extra == "test"
Requires-Dist: uv; extra == "test"
Requires-Dist: opentelemetry-sdk; extra == "test"
Provides-Extra: pydantic2
Requires-Dist: pydantic[email]<3.0,>=2.3.0; extra == "pydantic2"
Requires-Dist: pydantic-settings>=2.0.3; extra == "pydantic2"
Provides-Extra: pydantic1
Requires-Dist: pydantic[email]<2.0,>=1.10; extra == "pydantic1"
Provides-Extra: docs
Requires-Dist: sphinx>=7.0.0; extra == "docs"
Requires-Dist: myst-parser>=2.0.0; extra == "docs"
Requires-Dist: sphinx_design>=0.5.0; extra == "docs"
Requires-Dist: pydata-sphinx-theme>=0.14.0; extra == "docs"
Provides-Extra: all
Requires-Dist: lima-api[docs,pydantic2,test]; extra == "all"
Dynamic: license-file

# Lima-API
Lima-API is sync and async library that allows implements Rest APIs libs with python typing.

You could read more about it on [github page](https://paradigmadigital.github.io/lima-api/) and on [our post (Spanish)](https://www.paradigmadigital.com/dev/poder-del-tipado-python-funciones-sin-codigo/).

You could install from [pypi](https://pypi.org/project/lima-api/) with:
```shell
pip install lima-api
```

# Generate doc
```shell
pip install lima-api[docs]
cd docs
make html
```
