Generate code for models, views, and urls based on Python type annotations.
Project description
Generate code for models, views, and urls based on Python type annotations. Powered by pydantic. Influenced by SQLModel.
reactant aims to give usable and sensible code defaults. It does not enforce a particular application structure. Instead, it follows the default/minimal/common structure of the supported frameworks, and the developer has the freedom of changing it (if necessary) to fit it to their application. Contributions are warmly welcomed if you believe a particular structure is widely used and can benefit from code generation.
Supported Frameworks
reactant currently generates code for the following:
Django REST (in Django's default project structure i.e. by apps)
- models
- views (class-based API views, filename=views_class.py)
- views (function-based API views, filename=views_func.py)
- serializers
- urls (from class-based API views, filename=urls_class.py)
- urls (from function-based API views, filename=urls_func.py)
Flask
- models (Flask-SQLAlchemy)
SQLAlchemy
- models in Declarative Mapping
Peewee
- models
Installation
$ pip install reactant
NOTE: reactant isn't shipped with the supported frameworks. You MUST install django
, sqlalchemy
, peewee
, or flask
separately (be it in a virtual environment or globally).
Get Started
Create reactant models by inheriting from Reactant
subclasses: DjangoORM
, SQLAlchemyORM
, PeeweeORM
. The example below uses DjangoORM
. Your choice will determine what code and files will be generated.
# generate.py
from typing import Optional
from reactant import DjangoORM, Field, generate
from datetime import date
class RocketEngine(DjangoORM):
name: str = Field(max_length=32, title="engine_name")
manufacturer: Optional[str]
power_cycle: Optional[str] = "gas-generator"
thrust_weight_ratio: Optional[int] = None
class LaunchVehicle(DjangoORM):
name: str = Field(max_length=32)
country: str = Field("USA", max_length=32)
status: str
total_launches: Optional[int]
first_flight: Optional[date]
engine: str = Field(foreign_key="RocketEngine")
# Don't forget this block.
if __name__ == "__main__":
generate()
Don't forget generate()
. Run the code.
Tip: You can control what code and files will be generated by passing keyword arguments to generate()
. Read the The generate() function section below for the details.
$ reactant generate.py
Running generate.py
Found 2 Django reactants.
Django models.py finished rendering.
Django serializers.py finished rendering.
Django views_class.py finished rendering.
Django urls_class.py finished rendering.
Django views_func.py finished rendering.
Django urls_func.py finished rendering.
Success! Please check "reactant_products/django" directory.
BOOM! With just the above code, the models, views, serializers, and urls (the products, for Django atleast) are generated. See images of the code below.
Sample Code Generated
Django REST
The generate() function
The generate()
function can accept keyword arguments to control the behavior of generating code and files. Read below to learn what each supported framework accepts.
Django REST
By default, both function-based and class-based views are generated. To switch OFF either of the two, pass class_based=False
or function_based=False
.
Development
The project uses Poetry to package and manage dependencies.
(venv)$ poetry install
Run tests.
pytest
License
MIT License. For more information and legal terms, see the LICENSE file.
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
Built Distribution
File details
Details for the file reactant-0.4.0.tar.gz
.
File metadata
- Download URL: reactant-0.4.0.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.11.0-37-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a8237af1be11cbc982256023788c35cb522e60c1b55e4bd2af67fc9015a5676 |
|
MD5 | d98a7f48a072af7e5e193c3b46ebfe65 |
|
BLAKE2b-256 | 8e4f53a1c0b2edbb3d65c6154541cfeea3f29b4e5f3fd92e3cf81f8eacfb1c78 |
File details
Details for the file reactant-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: reactant-0.4.0-py3-none-any.whl
- Upload date:
- Size: 15.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.11.0-37-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a903d40252d7cf1f858d232b32f8c1cc16773f0c80db20986114967459fa866 |
|
MD5 | 5a7e87c7b5b3cb0014ace272b05f8cd8 |
|
BLAKE2b-256 | b48f51031f4d2da05c7554c31998d6607684ed19fe285e6c03dc402945d16c9e |