معرفی شرکت ها


figurine-0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Simple, structure only models with inheritance
ویژگی مقدار
سیستم عامل -
نام فایل figurine-0.1
نام figurine
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Adam Venturella
ایمیل نویسنده aventurella@gmail.com
آدرس صفحه اصلی http://github.com/aventurella/figurine
آدرس اینترنتی https://pypi.org/project/figurine/
مجوز Copyright (c) 2012 Adam Venturella. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# 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']} ```


نحوه نصب


نصب پکیج whl figurine-0.1:

    pip install figurine-0.1.whl


نصب پکیج tar.gz figurine-0.1:

    pip install figurine-0.1.tar.gz