https://github.com/kougen/jsonservice
An easy to use JSON Service for python, which can handle complex data structures.
https://github.com/kougen/jsonservice
json jsonserializer package pip python
Last synced: about 2 months ago
JSON representation
An easy to use JSON Service for python, which can handle complex data structures.
- Host: GitHub
- URL: https://github.com/kougen/jsonservice
- Owner: kougen
- Created: 2024-03-22T21:31:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-22T21:13:42.000Z (about 1 year ago)
- Last Synced: 2025-09-23T09:52:53.606Z (9 months ago)
- Topics: json, jsonserializer, package, pip, python
- Language: Python
- Homepage: https://pypi.org/project/jsonservice/
- Size: 24.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON Service for Python
Makes it easy to read and write JSON files in Python.
It supports complex nested data structures and is very easy to use.
## Installation
```bash
pip install jsonservice
```
## Usage
```py
from jsonservice import JsonService
# Create a new JSON Service (creates a new file if it doesn't exist)
json_service = JsonService('data.json')
# Create a new JSON Service (will throw an error if the file doesn't exist)
json_service2 = JsonService('data2.json', create_file_if_not_exists=False)
# Creates a 'settings' object in the JSON file with a 'lights' property set to 'on'
json_service.write("settings.lights", "on")
```