معرفی شرکت ها


elasticmapper-1.0.0


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Generating ElasticSearch mappings based on ORM's models
ویژگی مقدار
سیستم عامل -
نام فایل elasticmapper-1.0.0
نام elasticmapper
نسخه کتابخانه 1.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده ihatemilk <vyckluchi75@gmail.com>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/elasticmapper/
مجوز MIT License Copyright (c) 2022 ihatemilk 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.
# ElasticMapper ### ElasticSearch mapper for three ORMs - SQLAlchemy, Peewee, DjangoORM. #### Allows you to easily generate ElasticSearch mappings based on models. ## Installation ```pip install elasticmapper``` ## Basic usage ### Peewee example ```python from peewee import * from elasticmapper import PeeweeMapper db = SqliteDatabase('my_app.db') class BaseModel(Model): class Meta: database = db class User(BaseModel): username = CharField(unique=True) is_active = BooleanField(default=True) age = IntegerField() user_elastic_mapping = PeeweeMapper(model=User).load() ``` ### SQLAlchemy example ```python from sqlalchemy.orm import declarative_base from sqlalchemy import Column, Integer, String, Boolean from elasticmapper import SQLAlchemyMapper Base = declarative_base() class User(Base): __tablename__ = 'users' id = Column(Integer, primary_key=True) username = Column(String) is_active = Column(Boolean) age = Column(Integer) user_elastic_mapping = SQLAlchemyMapper(model=User).load() ``` ### DjangoORM example ```python from django.db import models from elasticmapper import DjangoMapper class User(models.Model): username = models.CharField(max_length=30) is_active = models.BooleanField(default=True) age = models.IntegerField() user_elastic_mapping = DjangoMapper(model=User).load() ``` #### Output for all examples: ```python { 'id': {'type': 'integer'}, 'username': {'type': 'text'}, 'age': {'type': 'integer'}, 'is_active': {'type': 'boolean'} } ``` ## Documentation Documentation lives [here](https://elasticmapper.readthedocs.io/en/latest/). ## Contributing PR are welcome! If you want to help, please check [the issues](https://github.com/nomilkinmyhome/elasticmapper/issues) and fix one of them. Thank you for your contribution. ## License Copyright © 2022 Polina Beskorovaynaya [ihatemilk](https://github.com/nomilkinmyhome) This project has [MIT License](https://github.com/nomilkinmyhome/elasticmapper/blob/main/LICENSE).


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

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


نحوه نصب


نصب پکیج whl elasticmapper-1.0.0:

    pip install elasticmapper-1.0.0.whl


نصب پکیج tar.gz elasticmapper-1.0.0:

    pip install elasticmapper-1.0.0.tar.gz