Skip to main content

A modern, high-performance Python web framework designed to transform your SQLAlchemy models directly into fully-featured, production-ready REST APIs with minimal code. Built with asyncio, SQLAlchemy, and Pydantic.

Project description

Jetio

Jetio Logo

The Zero-Boilerplate Python Framework for Rapid API Development

PyPI Version

Jetio is a modern, high-performance Python web framework designed to transform your SQLAlchemy models directly into fully-featured, production-ready REST APIs with minimal code. Stop writing boilerplate and start building what matters.


Key Features

  • Model-Driven APIs: Use standard SQLAlchemy models as your single source of truth for your database, validation, and API serialization.
  • Automatic CRUD: Instantly generate robust Create, Read, Update, and Delete endpoints for any model with a single line of code.
  • Secure by Design: Easily secure your auto-generated endpoints with a single flag and plug in your own authentication logic.
  • Async First: Built from the ground up on an async core (powered by Starlette) for maximum performance and scalability.
  • Automatic Docs: Get interactive and functional Swagger UI out of the box.
  • Flexible & Familiar: Escape the generator whenever you need to. Use familiar decorator-based routing for custom endpoints, giving you the best of both worlds.


Example

# model.py
from sqlalchemy.orm import Mapped
from jetio import JetioModel

class User(JetioModel):
    username: Mapped[str]
    email: Mapped[str]

class Minister(JetioModel):
    first_name: Mapped[str]
    last_name: Mapped[str]

Get Jetio to make your app

# app.py
from jetio import Jetio, CrudRouter, add_swagger_ui
from model import User, Minister

app = Jetio()
add_swagger_ui(app)

# Generate 5 CRUD routes per model
CrudRouter(model=User).register_routes(app)
CrudRouter(model=Minister).register_routes(app)


if __name__ == "__main__":
    app.run()

Database setup

Use your preferred DB tool.

or for quick dev environment, you can also change your app.py above to:

# app.py
from jetio import Jetio, CrudRouter, add_swagger_ui, Base, engine
from model import User, Minister
import asyncio

app = Jetio()
add_swagger_ui(app)

# Generate 5 CRUD routes per model
CrudRouter(model=User).register_routes(app)
CrudRouter(model=Minister).register_routes(app)


# --- Database and Server Startup ---
async def create_db_and_tables():
    async with engine.begin() as conn:
        await conn.run_sync(Base.metadata.create_all)
    print("Database tables created.")

if __name__ == "__main__":
    asyncio.run(create_db_and_tables())
    app.run()

Simplified Single File Setup

You could simply have the model classes in the main file as follows.

from jetio import Jetio, CrudRouter, JetioModel, add_swagger_ui, Base, engine
import asyncio
from sqlalchemy.orm import Mapped

class Staff(JetioModel):
    username: Mapped[str]
    email: Mapped[str]

class Report(JetioModel):
    title: Mapped[str]
    content: Mapped[str]

app = Jetio()
add_swagger_ui(app)

# Generate 5 CRUD routes per model
CrudRouter(model=Staff).register_routes(app)
CrudRouter(model=Report).register_routes(app)


# --- Database and Server Startup ---
async def create_db_and_tables():
    async with engine.begin() as conn:
        await conn.run_sync(Base.metadata.create_all)
    print("Database tables created.")

if __name__ == "__main__":
    asyncio.run(create_db_and_tables())
    app.run()

Project details


Download files

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

Source Distribution

jetio-1.0.6.tar.gz (19.4 kB view details)

Uploaded Source

Built Distribution

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

jetio-1.0.6-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file jetio-1.0.6.tar.gz.

File metadata

  • Download URL: jetio-1.0.6.tar.gz
  • Upload date:
  • Size: 19.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.11

File hashes

Hashes for jetio-1.0.6.tar.gz
Algorithm Hash digest
SHA256 692300743807d001b69837fb1f2831a54d1ed7f58f25cc5fa3058b6e2e959cfa
MD5 7d07d98a436a3feab50de1321cc64baf
BLAKE2b-256 ce88bf9d7c049efac82a2b97fe314c0fd31f53aa7d8820b21c3938f836628214

See more details on using hashes here.

File details

Details for the file jetio-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: jetio-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.11

File hashes

Hashes for jetio-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ff70e484bd5f5d11791c7771b207aa8abbd911e3846b7ffc188e90748bff00fa
MD5 58918e114abcc978f3325e4bfd90e0b0
BLAKE2b-256 4d6f7ec2dfc1510999ffa6986caab1dd73626d44cd780b64eeb53f454c3486f6

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