معرفی شرکت ها


datastore.objects-0.2.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

object mapper for datastore
ویژگی مقدار
سیستم عامل -
نام فایل datastore.objects-0.2.3
نام datastore.objects
نسخه کتابخانه 0.2.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Juan Batiz-Benet
ایمیل نویسنده juan@benet.ai
آدرس صفحه اصلی http://github.com/datastore/datastore.objects
آدرس اینترنتی https://pypi.org/project/datastore.objects/
مجوز MIT License
# datastore.objects [`datastore.objects`](https://github.com/datastore/datastore.objects) is a simple *object mapper* on top of [`datastore`](https://github.com/jbenet/datastore) (not relational). Thanks to datastore's versatility, it makes it easy to (serialize and) persist custom classes to any sort of data storage service. Notice: please familiarize yourself with `datastore` first. ## Install pip install datastore.objects ## Interface ### Key `datastore.objects` uses the default `datastore.Key`, making significant use of the `type` and `instance` fragments. ```python >>> from datastore.objects import Key, Model >>> class Scientist(Model): >>> pass >>> Scientist.key Key('/Scientist') >>> Scientist('Tesla').key Key('/Scientist:Tesla') ``` ### Model `datastore.objects` provides a class that you inherit from to define your models. datastore.objects.Model handles the datastore serializing and deserializing, attribute validation, etc. ```python >>> from datastore.objects import Model >>> class Scientist(Model): >>> pass ``` ### Attribute `datastore.objects` uses descriptor Attributes to track the properties you wish to store. This is heavily based on how other python ORMs (django, app engine) do it. In short, you define model attributes like this: ```python >>> from datastore.objects import Attribute, Model >>> class Scientist(Model): >>> name = Attribute(required=True) >>> field = Attribute(default='Physics') >>> tesla = Scientist('Tesla') >>> tesla.name = 'Nicola Tesla' >>> tesla.field 'Physics' >>> tesla.field = 'Electrical Engineering' >>> tesla.data {'name': 'Nicola Tesla', 'field': 'Electrical Engineering'} ``` ### ObjectDatastore `datastore.objects` provides a `ShimDatastore` that wraps any other datastore. Thus you can use any of the various datastores to persist your objects. `ObjectDatastore` makes sure to serialize (on put) and deserialize (on get) data properly, and construct your classes. ```python >>> import datastore >>> from datastore.objects import Attribute, Model, ObjectDatastore >>> >>> class Scientist(Model): >>> name = Attribute(required=True) >>> field = Attribute(default='Physics') >>> >>> tesla = Scientist('Tesla') >>> tesla.name = 'Tesla' >>> tesla.field = 'Electrical Engineering' >>> >>> dds = datastore.DictDatastore() >>> ods = ObjectDatastore(dds, model=Scientist) >>> ods.put(tesla.key, tesla) >>> dds.get(tesla.key) {'name': 'Tesla', 'field': 'Electrical Engineering'} >>> ods.get(tesla.key) <Model /Scientist:Tesla> ``` ## About #### Author `datastore.objects` is written by [Juan Batiz-Benet](https://github.com/jbenet), of [Athena](http://athena.ai). #### License It is free open-source software, available under the MIT License. #### Contact Project webpage: https://github.com/datastore/datastore.objects. Issues: https://github.com/jbenet/object-datastore/issues


نحوه نصب


نصب پکیج whl datastore.objects-0.2.3:

    pip install datastore.objects-0.2.3.whl


نصب پکیج tar.gz datastore.objects-0.2.3:

    pip install datastore.objects-0.2.3.tar.gz