Metadata-Version: 2.4
Name: PyJget
Version: 0.1.1
Summary: PyJget — lightweight nested JSON and dict path extraction using dot notation.
Project-URL: Homepage, https://github.com/abeedalishaik1080-lab/PyJget
Project-URL: Documentation, https://github.com/abeedalishaik1080-lab/PyJget#readme
Project-URL: Repository, https://github.com/abeedalishaik1080-lab/PyJget
Project-URL: Issues, https://github.com/abeedalishaik1080-lab/PyJget/issues
Author: Shaik Abeedali
License-Expression: MIT
Keywords: PyJget,dict,dot-notation,jget,json,nested,path
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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 :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Description-Content-Type: text/markdown

# PyJget

A lightweight Python library for fast JSON serialization and deserialization.

## Features

- 🚀 Fast and lightweight
- 📦 Pure Python
- 🔧 Easy to use
- 📄 JSON serialization
- 📂 JSON deserialization

## Installation

```bash
pip install PyJget
```

## Quick Start

```python
import pyjget

data = {
    "name": "John",
    "age": 25
}

text = pyjget.dumps(data)
print(text)

obj = pyjget.loads(text)
print(obj)
```

## Requirements

- Python 3.8+

## License

MIT License

## Author

Shaik Abeedali
