Metadata-Version: 2.4
Name: tigrbl_engine_pandas
Version: 0.1.1.dev19
Summary: Tigrbl engine plugin providing transactional pandas DataFrame sessions.
Project-URL: Homepage, https://github.com/swarmauri/swarmauri-sdk
Project-URL: Repository, https://github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/experimental/tigrbl_engine_pandas
Author-email: Jacob Stewart <jacob@swarmauri.com>
License:                                  Apache License
                                   Version 2.0, January 2004
                                http://www.apache.org/licenses/
        
        TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
        
        Copyright 2025 Tigrbl
        
        Licensed under the Apache License, Version 2.0 (the "License");
        you may not use this file except in compliance with the License.
        You may obtain a copy of the License at
        
           http://www.apache.org/licenses/LICENSE-2.0
        
        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
License-File: LICENSE
Keywords: database,dataframe,engine,pandas,plugin,tigrbl
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries
Requires-Python: <3.13,>=3.10
Requires-Dist: pandas>=2.0
Requires-Dist: tigrbl
Description-Content-Type: text/markdown

# tigrbl_engine_pandas

A Tigrbl engine plugin that provides a **Pandas-backed** engine/session.

- **Native transactions** (`begin/commit/rollback`).
- **MVCC-style snapshots** for reads.
- Works with Tigrbl **core CRUD** via the small session surface.

## Install

```bash
pip install tigrbl_engine_pandas
```

The plugin **auto-registers** via entry points under the group `tigrbl.engine`.

## Usage

```python
from tigrbl.engine.decorators import engine_ctx

# Bind by kind using the plugin's engine
@engine_ctx({"kind": "pandas", "async": True, "tables": {"widgets": df}, "pks": {"widgets": "id"}})
class API:
    pass
```
