Small framework for creating Builders and entities
Project description
Introduction
Small framework to create entities and Builders with Metaprogramming features in Python.
Creating Builders
Metabuilder objective is to help to create Builders and instances or entities with validations easy and fast.
In order to create a new Builder just define a class extending from MetaBuilder class, and defining an stub class in any place you want. For eg.
from PyMetaBuilder import MetaBuilder #Stub Class to create instances from class Kite(object): pass class KiteBuilder(MetaBuilder): pass
After that just initiate the superclass and start defining the properties you want KiteBuilder to have, for eg.
class KiteBuilder(MetaBuilder): def __init__(self): MetaBuilder.MetaBuilder.__init__(self) self.defineKite() def define_kite(self): #define the model klass to get instances from self.model(Kite) self.property("design",one_of=["Indoor","Water Kite","Kythoon"]) self.property("line_material",type=str) self.property("StringLength",type=int)
You can also define a property as a mandatory one, with the required method. In this way, when you set the builder with the respecting properties and try to get a new instance, the framework will check if the properties that you previously set as mandatory were set.
def define_kite(self): #define the model klass to get instances from self.model(Kite) self.property("StringLength",type=int) #code defining properties.... self.required("design")
Creating instances from a Builder
After you defined a builder and its properties, just set the parameters, if you want at this time and if they’re not mandatory and build an instance.
kiteBuilder=KiteBuilder() kiteBuilder.design="Indoor" kiteBuilder.StringLength=23 kite=kiteBuilder.build() #get a Kite instance
When you set a property that you previously defined, it’ll validate the value passed, given the fact that you have set it with validators, and will generate the appropriate exception when it fails.
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
File details
Details for the file PyMetabuilder-0.2.6.tar.gz
.
File metadata
- Download URL: PyMetabuilder-0.2.6.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7adaab8f740cab4597ecac878d9b39300efd2840c0b3000b54c2767a80d9e09 |
|
MD5 | 687aa93bf34eae2d6d388ace057f18a1 |
|
BLAKE2b-256 | b5462fc9fe03fa8ba315672c4e1e3215b2dce7d36ac36ef9953f0ee5aedbcafd |