Skip to main content

The Modern Declarative Data Flow and Data Graph Framework for the AI Empowered Generation.

Project description

Logo

JSON Classes

Pypi Python Version Build Status License PR Welcome

The Modern Declarative Data Flow and Data Graph Framework for the AI Empowered Generation.

JSON Classes eliminates the separation and redundant coding of data sanitization, data validation, data format converting, data serialization and data persistent storage.

JSON Classes transforms all the redundant procedures into declarative annotations and markers defined right on the data classes.

Just like how React.js changed the paradigms of frontend development, JSON Classes aims leading the transforming of the insdustry backend development standards.

How JSON Classes Works?

JSON Classes is built on top of Python Data Classes. With the great metaprogramming functionalities that Python Data Classes offers, we can easily extend it into a great DSL for declaring data structures, transforming rules and validation rules.

Why Not Create Another SDL?

GraphQL's Schema Definition Language cannot work well with programming languages' syntax checking and type completion. To support more and more functions, a DSL would become more and more like a programming language.

This is why React.js embedded HTML into JavaScript/TypeScript and Apple built new Swift language features for SwiftUI.

Why Python Is Chosen?

Python is the programming language which is nearest to AI areas. This is an era and a generation empowered by AI. AI algorithms empower products with unimaginable stunning features. A great product should adapt to some level of AI to continue providing great functions for it's targeting audience.

Business Examples

Example 1: Dating App Users

Let's say, you are building the base user functionality for a cross-platform dating app.

The product requirements are:

  1. Unique phone number is required
  2. Password should be secure, encrypted, hidden from response
  3. Gender cannot be changed after set
  4. This product is adult only
  5. User intro should be brief

Let's transform the requirements into code.

from jsonclasses import jsonclass, JSONObject, types

@jsonclass
class User(JSONObject):
  phone_no: str = types.str.unique.index.match(local_phone_no_regex).required #1
  email: str = types.str.match(email_regex)
  password: str = types.str.writeonly.length(8, 16).match(secure_password_regex).transform(salt).required #2
  nickname: str = types.str.required
  gender: str = types.str.writeonce.oneof(['male', 'female']) #3
  age: int = types.int.min(18).max(100) #4
  intro: str = types.str.truncate(500) #5

Look how brief it is to describe our business requirements. JSON Classes has official support for some databases to store data permanently. If you are building a RESTful API, you can integrate JSON Classes with flask, sanic or any other web frameworks.

from sanic import Blueprint
from sanic.request import Request
from jsonclasses_sanic import response
from jsonclasses_sanic.middlewares import only_handle_json_middleware
from models import User

bp = Blueprint('users')

bp.middleware('request')(only_handle_json_middleware)

@bp.get('/')
async def users(request: Request):
  return response.data(User.find())

@bp.get('/<id:string>')
async def user(request, id):
  return response.data(User.find_by_id(id))

@bp.post('/')
async def create_user(request):
  return response.data(User(**request.json).save())

@bp.patch('/<id:string>')
async def update_user(request, id):
  return response.data(User.find_by_id(id).set(**request.json).save())

@bp.delete('/<id:string>')
async def delete_user(request, id):
  return response.empty(User.delete_by_id(id))

Documentation

Read our documentation on bla bla bla.

Database & Web Framework Integrations

Supported Python Versions

jsonclasses supports Python >= 3.8.

License

MIT License

JSON Classes logo is designed by Albert Leung.

Project details


Release history Release notifications | RSS feed

This version

0.8.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsonclasses-0.8.3.tar.gz (45.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsonclasses-0.8.3-py3-none-any.whl (86.1 kB view details)

Uploaded Python 3

File details

Details for the file jsonclasses-0.8.3.tar.gz.

File metadata

  • Download URL: jsonclasses-0.8.3.tar.gz
  • Upload date:
  • Size: 45.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for jsonclasses-0.8.3.tar.gz
Algorithm Hash digest
SHA256 97a9cca13d8b41ac541eab673a67924c94621f87a932e20daf08f6e89dde3c69
MD5 4f9ff63391d918324f36732433430bf0
BLAKE2b-256 d45ec8afd7f9974e3974ca4901706c913033478f866ce3b47a3fdf803251e7b6

See more details on using hashes here.

File details

Details for the file jsonclasses-0.8.3-py3-none-any.whl.

File metadata

  • Download URL: jsonclasses-0.8.3-py3-none-any.whl
  • Upload date:
  • Size: 86.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for jsonclasses-0.8.3-py3-none-any.whl
Algorithm Hash digest
SHA256 81430bfeec0f2223b4a16921fe820c4a784ca679d389b6fa688b7ebf5c00dc7a
MD5 75863cc9951675eee27f3fe040b6ceae
BLAKE2b-256 7b1631ff72e3d626c2543e547b57927d29311d848194e11477612952252bccae

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page