معرفی شرکت ها


eventsourcing-mongodb-2.0.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

An extension package for the Python Eventsourcing library that provides a persistence module for MongoDB.
ویژگی مقدار
سیستم عامل -
نام فایل eventsourcing-mongodb-2.0.1
نام eventsourcing-mongodb
نسخه کتابخانه 2.0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Luxaaa
ایمیل نویسنده -
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/eventsourcing-mongodb/
مجوز MIT License Copyright (c) 2022 Luxaaa Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Event Sourcing in Python with MongoDB This is an extension package for the Python [eventsourcing](https://github.com/pyeventsourcing/eventsourcing) library that provides a persistence module for [MongoDB](https://www.mongodb.com/). ## Installation Use pip to install the [stable distribution](https://pypi.org/project/eventsourcing_mongodb/) from the Python Package Index. Please note, it is recommended to install Python packages into a Python virtual environment. $ pip install eventsourcing-mongodb ## Getting started Define Aggregates and Applications the usual way. Please refer to the [Eventsourcing Documentation](https://eventsourcing.readthedocs.io/en/stable/) for more detailed examples. ```python from eventsourcing.domain import Aggregate, event from eventsourcing.application import Application from uuid import UUID class Dog(Aggregate): @event('Registered') def __init__(self, name: str): self.name = name self.tricks = [] @event('TrickAdded') def add_trick(self, trick: str): self.tricks.append(trick) class DogSchool(Application): def register_dog(self, name: str) -> UUID: dog = Dog(name) self.save(dog) return dog.id def add_trick(self, dog_id: UUID, trick: str): dog = self.repository.get(dog_id) dog.add_trick(trick) self.save(dog) def get_dog(self, dog_id: UUID) -> dict: dog = self.repository.get(dog_id) return {'id': dog.id, 'name': dog.name, 'tricks': dog.tricks} ``` To configure your Application for using MongoDB for persistence, you need to set the environment variable `PERSISTENCE_MODULE` to `'eventsourcing_mongodb'`. Furthermore, you need to set the environment variables `MONGO_CONNECTION_STRING` and `MONGO_DB_NAME`. Please refer to the [MongoDB Documentation](https://www.mongodb.com/docs/manual/reference/connection-string/) to learn more about connection strings. You can read more about the available variables [here](#available-environment-variables) . ```python import os os.environ['PERSISTENCE_MODULE'] = 'eventsourcing_mongodb' os.environ['MONGO_CONNECTION_STRING'] = 'mongodb://localhost' os.environ['MONGO_DB_NAME'] = 'EventSourcing' ``` Instead of setting the variables on environment level, you can also set them on application level. ```python class DogSchool(Application): env = { 'PERSISTENCE_MODULE': 'eventsourcing_mongodb', 'MONGO_CONNECTION_STRING': 'mongodb://localhost', 'MONGO_DB_NAME': 'EventSourcing', ... } ... ``` Construct and use the application in the usual way. ```python dog_school = DogSchool() dog_id = dog_school.register_dog('Fido') dog_school.add_trick(dog_id, 'roll over') dog = dog_school.get_dog(dog_id) print(dog) # {'id': UUID('...'), 'name': 'Fido', 'tricks': ['roll over']} ``` And retrieve the data later: ```python dog_school = DogSchool() dog_id = UUID('...') dog = dog_school.get_dog(dog_id) print(dog) # {'id': UUID('...'), 'name': 'Fido', 'tricks': ['roll over']} ``` ## Available Environment Variables You can use the following variables to configure mongodb persistence: | Variable | Type / Possible values | Required | Description | | --- | --- | --- | --- | | `PERSISTENCE_MODULE` | `'eventsourcing_mongodb'` | `true` | configures the application to use this module for persistence. | `MONGO_CONNECTION_STRING` | string | `true` | MongoDB Connection String. Please refer to the [MongoDB Documentation](https://www.mongodb.com/docs/manual/reference/connection-string/) to learn more about connection strings. | `MONGO_DB_NAME` | string | `true` | Name of the Database the data sould be stored in | `MONGO_COL_PREFIX` | string | `false` | Prefix for the MongoDB Collections for events, snapshots and trackings. The default is an empty String. | `MONGO_COUNTTRACK_COL_NAME` | string | `false` | Name of the MongoDB Collection for count trakcings. The default is CountTracking. (You can use the same name for multiple applications)


نیازمندی

مقدار نام
>=9.2.6 eventsourcing
>=4.1.1 pymongo


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl eventsourcing-mongodb-2.0.1:

    pip install eventsourcing-mongodb-2.0.1.whl


نصب پکیج tar.gz eventsourcing-mongodb-2.0.1:

    pip install eventsourcing-mongodb-2.0.1.tar.gz