Metadata-Version: 2.4
Name: mashdb
Version: 0.1.1
Summary: A Python interface for MashDB database
Author-email: Misbah Sarfaraz <misbahsarfaraz@example.com>
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black>=21.12b0; extra == "dev"
Requires-Dist: isort>=5.10.1; extra == "dev"
Requires-Dist: mypy>=0.910; extra == "dev"
Dynamic: license-file

# MashDB

A lightweight Python interface for database operations with JSON support.

## Features

- Simple and intuitive query interface
- JSON output support
- Easy integration with Python applications

## Installation

```bash
pip install mashdb
```

## Usage

```python
from mashdb import query

# Execute a simple query
result = query("SELECT * FROM your_table;")

# Get results as JSON
result_json = query("SELECT * FROM your_table;", as_json=True)
```

## License

MIT - See [LICENSE](LICENSE) for more information.
