Skip to main content

Tina4Python - This is not another framework for Python

Project description

Tina4 Python — This is not a framework

Laravel joy. Python speed. 10× less code.

Quickstart

pip install tina4_python
tina4 init my_project
cd my_project
python app.py

You've just built your first Tina4 app — zero configuration, zero classes, zero boilerplate!

Features

  • Full ASGI compliance, use any ASGI compliant webserver
  • Full async support out of the box
  • Built-in JWT and Session handling
  • Automatic Swagger docs at /swagger
  • Instant CRUD interfaces with one line: result.to_crud(request)
  • Built-in Twig templating, migrations, WebSockets, authentication and middleware
  • Works with SQLite, PostgreSQL, MySQL, MariaDB, MSSQL, Firebird
  • Hot reload in development (uv run python -m jurigged app.py)

Install

pip install tina4-python

Routing

Here are some basic GET routes

# .src/__init__.py
from tina4_python import get

# simple get route
@get("/hello")
async def get_hello(request, response):
    return response("Hello, Tina4 Python!")

# simple get route with inline params
@get("/hello/{world}")
async def get_hello_world(world, request, response):
    return response(f"Hello, {world} ")

# simple route responding with json
@get("/hello/json")
async def get_hello_json(world, request, response):
    cars = [{"brand": "BMW"}, {"brand": "Toyota"}]

    return response(cars)

# respond with a file
@get("/hello/{filename}")
async def get_hello_file(filename, request, response):
   
    return response.file(filename, './src/public')

# respond with a redirection to another location
@get("/hello/redirect")
async def get_hello_redirect(request, response):
    
    return response.redirect("/hello/world")

@get("/hello/template")
async def get_hello_template(request, response):
    
    # renders any template in .src/templates
    return response.render("index.twig", {"data": request.params})

Further Documentation

https://tina4.com/

Community

License

MIT © 2007 – 2025 Tina4 Stack
https://opensource.org/licenses/MIT

Testing

uv run pytest --verbose


Tina4 – The framework that keeps out of the way of your coding.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

tina4_python-0.2.183.tar.gz (369.6 kB view details)

Uploaded Source

Built Distribution

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

tina4_python-0.2.183-py3-none-any.whl (391.7 kB view details)

Uploaded Python 3

File details

Details for the file tina4_python-0.2.183.tar.gz.

File metadata

  • Download URL: tina4_python-0.2.183.tar.gz
  • Upload date:
  • Size: 369.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.19

File hashes

Hashes for tina4_python-0.2.183.tar.gz
Algorithm Hash digest
SHA256 d1a5f38d7353fdf541744538519362820314fb232174a2012e9164fd40323f53
MD5 663d76c7ab91e6c60291f8efa719cf76
BLAKE2b-256 4bdd300536293f8159ed0975b949a3e718b755e0fdb88740227ca0f314e59cf6

See more details on using hashes here.

File details

Details for the file tina4_python-0.2.183-py3-none-any.whl.

File metadata

File hashes

Hashes for tina4_python-0.2.183-py3-none-any.whl
Algorithm Hash digest
SHA256 fe6f0e192b4c98aeb64f36acbbaf6eca33be12f001d1972cda7b4a4288c9e1b5
MD5 d1b811cb37369409a3abb0950bb9b7bb
BLAKE2b-256 e4098aa1ef559c1a0635e3766bab54fbff17cc08e246922f9620de031ac3eddc

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