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 be non-intrusive and disposable, but also to give usable and sensible code defaults.
reactant does not enforce a particular application structure. Instead, it adheres to the default/minimal/common structure of the supported frameworks, and it is up to the developer to make use of the generated code to fit it to their application. Contibutions 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_function.py)
- serializers
- urls (from class-based API views, filename=urls_class.py)
- urls (from function-based API views, filename=urls_function.py)
SQLAlchemy
- models in Declarative Mapping
Peewee
- models
Installation
$ pip install reactant
Get Started
Create reactant models by inheriting from Reactant
, and from choosing an ORM: DjangoORM
, SQLAlchemyORM
, PeeweeORM
. The example below uses DjangoORM
. Your choice of ORM will determine what code and files will be generated.
# generate.py
from reactant import Reactant, DjangoORM, Field, generate
class RocketEngine(Reactant, DjangoORM):
name: str = Field(max_length=32, title="engine_name")
manufacturer: str = Field(max_length=64)
power_cycle: Optional[str] = Field("gas-generator", blank=True, max_length=32)
thrust_weight_ratio: Optional[int] = None
class LaunchVehicle(Reactant, DjangoORM):
name: str = Field(max_length=32)
country: str = Field(blank=True, max_length=32)
status: str
total_launches: Optional[int]
engine: str = Field(foreign_key="RocketEngine")
# Don't forget this block.
if __name__ == "__main__":
generate()
Don't forget generate()
. Run the code.
$ reactant generate.py
Running generate.py
Found 2 Django reactants.
Django models.py finished rendering.
Django views_class.py finished rendering.
Django serializers.py finished rendering.
Django urls_class.py finished rendering.
Success! Please check "reactant_products" directory.
BOOM! With just the above code, the models, views, serializers, and urls (the products, for Django atleast) are generated.
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.1.1.tar.gz
.
File metadata
- Download URL: reactant-0.1.1.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.11.0-34-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3e112c035007f2e675d47156d7611f78009e02698e120928a5a8cbce240cac9 |
|
MD5 | fbab47521bba75a57c3b0394d979f148 |
|
BLAKE2b-256 | 2ddb6b62845bf8eae0cf3be7fdbf78a06001dd4ae00c2f65a2252a52827bd53b |
File details
Details for the file reactant-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: reactant-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.10 Linux/5.11.0-34-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb76b8562d4adb6e59146652e0a64e09e0ce0bd85cf65a86adf5de86e838e8e8 |
|
MD5 | 9ae5eabe02eab6f7a8f01869c28cdf58 |
|
BLAKE2b-256 | f00dfc89cd6ad330eceb2e9cd4f738c31d7442ea7199fdeeef73fbdf62d0e1b6 |