Metadata-Version: 2.4
Name: finalsa-common-models
Version: 2.0.4
Summary: Common models for Finalsa
Project-URL: Homepage, https://github.com/finalsa/finalsa-common-models
Author-email: Luis Jimenez <luis@finalsa.com>
License: MIT License
        
        Copyright (c) 2025 Luis Diego Jiménez Delgado
        
        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.
License-File: LICENSE.md
Keywords: common,finalsa,models
Requires-Python: >=3.10
Requires-Dist: orjson>=3.11.2
Requires-Dist: pydantic>=2.11.7
Requires-Dist: python-dateutil>=2.9.0.post0
Description-Content-Type: text/markdown

# Finalsa Async Models

Finalsa Async Models is a Python library designed to simplify the implementation of asynchronous data models. It provides tools to handle asynchronous operations, making it easier to work with modern Python applications that rely on async/await patterns.

## Features

- **Asynchronous Data Models**: Define and manage data models with full async support.
- **Ease of Use**: Simplified API for seamless integration into your projects.
- **Extensibility**: Easily extend and customize models to fit your needs.
- **Performance**: Optimized for high-performance asynchronous workflows.

## Installation

Install the library using pip:

```bash
pip install finalsa-async-models
```

## Usage

Here's a quick example of how to use Finalsa Async Models:

```python
from finalsa_async_models import AsyncModel

class User(AsyncModel):
    async def save(self):
        # Custom save logic
        pass

# Example usage
async def main():
    user = User()
    await user.save()
```

## Documentation

For detailed documentation, visit the [official documentation](#).

## Contributing

Contributions are welcome! Please follow the [contribution guidelines](CONTRIBUTING.md).

## License

This project is licensed under the [MIT License](LICENSE).

## Contact

For questions or support, please open an issue on the [GitHub repository](#).