Simple, structure only models with inheritance
Project description
# Figurine
**Simple, structure only models with inheritance**
Figurine is intended for dumb models. In other words, data only, no methods.
For web apps, view models come to mind, or anywhere you would like a model that
does nothing but represent data.
Currently run on Python 2.6+, 3.x will be supported shortly.
**What about namedtuples?**
Yes, you could just use namedtuple for this, and that might even be better.
If you want your model defs to look more like traditional python objects however,
Figurine can help.
It still may be that namedtuples are a better solution, though you may
need a factory function to start them off with defaults of your choosing.
The base of a figuerine object is a dict, which is a bit better, for my need, for
JSON serialization if needed, which you could also just do with namedtuple._asdict
if you really wanted to use a namedtuple.
### Using Figurine
```python
import figurine
class FacebookData(figurine.Model):
def __init__(self):
self.posts = ['facebook']
class TwitterData(figurine.Model):
def __init__(self):
self.tweets = ['twitter']
class SocialData(FacebookData, TwitterData):
pass
class SimplePage(figurine.Model):
def __init__(self):
self.title = ""
self.stylesheets = []
self.javascript = []
self.meta = {}
self.value = 1
class HomePage(SimplePage, SocialData):
def __init__(self):
self.username = "lucy_the_dog"
model1 = HomePage()
print(model.tweets)
# {'username': 'lucy_the_dog', 'title': '', 'javascript': [], 'posts': ['facebook'], 'value': 1, 'stylesheets': [], 'meta': {}, 'tweets': ['twitter']}
# kwarg overrides or init
model2 = HomePage(title="My Great Title",
value=2)
print(model2)
# {'username': 'lucy_the_dog', 'title': 'My Great Title', 'javascript': [], 'posts': ['facebook'], 'value': 2, 'stylesheets': [], 'meta': {}, 'tweets': ['twitter']}
```
**Simple, structure only models with inheritance**
Figurine is intended for dumb models. In other words, data only, no methods.
For web apps, view models come to mind, or anywhere you would like a model that
does nothing but represent data.
Currently run on Python 2.6+, 3.x will be supported shortly.
**What about namedtuples?**
Yes, you could just use namedtuple for this, and that might even be better.
If you want your model defs to look more like traditional python objects however,
Figurine can help.
It still may be that namedtuples are a better solution, though you may
need a factory function to start them off with defaults of your choosing.
The base of a figuerine object is a dict, which is a bit better, for my need, for
JSON serialization if needed, which you could also just do with namedtuple._asdict
if you really wanted to use a namedtuple.
### Using Figurine
```python
import figurine
class FacebookData(figurine.Model):
def __init__(self):
self.posts = ['facebook']
class TwitterData(figurine.Model):
def __init__(self):
self.tweets = ['twitter']
class SocialData(FacebookData, TwitterData):
pass
class SimplePage(figurine.Model):
def __init__(self):
self.title = ""
self.stylesheets = []
self.javascript = []
self.meta = {}
self.value = 1
class HomePage(SimplePage, SocialData):
def __init__(self):
self.username = "lucy_the_dog"
model1 = HomePage()
print(model.tweets)
# {'username': 'lucy_the_dog', 'title': '', 'javascript': [], 'posts': ['facebook'], 'value': 1, 'stylesheets': [], 'meta': {}, 'tweets': ['twitter']}
# kwarg overrides or init
model2 = HomePage(title="My Great Title",
value=2)
print(model2)
# {'username': 'lucy_the_dog', 'title': 'My Great Title', 'javascript': [], 'posts': ['facebook'], 'value': 2, 'stylesheets': [], 'meta': {}, 'tweets': ['twitter']}
```
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
figurine-0.1.tar.gz
(3.6 kB
view details)
File details
Details for the file figurine-0.1.tar.gz
.
File metadata
- Download URL: figurine-0.1.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffc3928ec9e0eb1c79ddefafac3bf3c05040834e6f1b135057a5fa1d84f4b354 |
|
MD5 | 09ef44df62489dfbbd94ecdd28987842 |
|
BLAKE2b-256 | e73378d746cb2d34f1e84de76f9b70807a5a76e18290a693a33d25f07cf280b6 |