Metadata-Version: 2.2
Name: villa-python-sdk
Version: 0.1.0rc5
Summary: an sdk for managing villa ecommerce attributes
Author-email: nic <nwanavit@gmail.com>
License: Apache Software License 2.0
Project-URL: Bug Tracker, https://github.com/thanakijwanavit/villa-python-sdk/issues
Project-URL: Changelog, https://github.com/thanakijwanavit/villa-python-sdk/blob/main/CHANGELOG.md
Project-URL: repository, https://github.com/thanakijwanavit/villa-python-sdk
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3>=1.34.0

# villa_python_sdk

<p align="center">
  <a href="https://github.com/thanakijwanavit/villa-python-sdk/actions/workflows/ci.yml?query=branch%3Amaster">
    <img src="https://img.shields.io/github/actions/workflow/status/thanakijwanavit/villa-python-sdk/ci.yml?branch=master&label=CI&logo=github&style=flat-square" alt="CI Status" >
  </a>
  <a href="https://codecov.io/gh/thanakijwanavit/villa-python-sdk">
    <img src="https://img.shields.io/codecov/c/github/thanakijwanavit/villa-python-sdk.svg?logo=codecov&logoColor=fff&style=flat-square" alt="Test coverage percentage">
  </a>
</p>
<p align="center">
  <a href="https://github.com/astral-sh/uv">
    <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/master/assets/badge/v0.json" alt="uv">
  </a>
  <a href="https://github.com/astral-sh/ruff">
    <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/master/assets/badge/v2.json" alt="Ruff">
  </a>
  <a href="https://github.com/pre-commit/pre-commit">
    <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" alt="pre-commit">
  </a>
</p>
<p align="center">
  <a href="https://pypi.org/project/villa-python-sdk/">
    <img src="https://img.shields.io/pypi/v/villa-python-sdk.svg?logo=python&logoColor=fff&style=flat-square" alt="PyPI Version">
  </a>
  <img src="https://img.shields.io/pypi/pyversions/villa-python-sdk.svg?style=flat-square&logo=python&amp;logoColor=fff" alt="Supported Python versions">
  <img src="https://img.shields.io/pypi/l/villa-python-sdk.svg?style=flat-square" alt="License">
</p>

---

**Source Code**: <a href="https://github.com/thanakijwanavit/villa-python-sdk" target="_blank">https://github.com/thanakijwanavit/villa-python-sdk </a>

---

an sdk for managing villa ecommerce attributes

## Installation

Install this via pip (or your favourite package manager):

`pip install villa-python-sdk`

## Usage

Start by importing it:

```python
import villa_python_sdk
```

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- prettier-ignore-start -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/thanakijwanavit"><img src="https://avatars.githubusercontent.com/u/29235787?v=4?s=80" width="80px;" alt="Nic Wanavit"/><br /><sub><b>Nic Wanavit</b></sub></a><br /><a href="https://github.com/thanakijwanavit/villa-python-sdk/commits?author=thanakijwanavit" title="Code">💻</a> <a href="#ideas-thanakijwanavit" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/thanakijwanavit/villa-python-sdk/commits?author=thanakijwanavit" title="Documentation">📖</a></td>
    </tr>
  </tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- prettier-ignore-end -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

## Credits

[![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-inverted-border-orange.json)](https://github.com/copier-org/copier)

This package was created with
[Copier](https://copier.readthedocs.io/) and the
[browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template)
project template.

## commit rules

Type (required):
Must be one of:
build, chore, ci, docs, feat, fix, perf, refactor, revert, style, test.

Scope (optional):
A short context in parentheses, e.g., (api), (ui), (config).

Subject (required):

Short, imperative tense (e.g., "add", "fix", "update").

No capital letters or punctuation at the end.

Max 72 characters.

Body (optional):

Explain what and why (not how).

Wrap lines at 100 characters.

Use bullet points for clarity.

Footer (optional):

Reference issues (e.g., Closes #123).

Document breaking changes with BREAKING CHANGE: <description>.

```
<type>(<scope?>): <subject>
<BLANK LINE>
<body?>
<BLANK LINE>
<footer?>
```

### example

feat(api): add user authentication endpoint

- Implement POST /auth/login
- Add JWT token generation
- Include rate-limiting for security

Closes #123

to trigger release, make a commit with feat tag similar to this

"feat: initial release"
