Skip to main content

Generating ElasticSearch mappings based on ORM's models

Project description

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

from peewee import *
from elasticmapper import load, SupportedORMs

db = SqliteDatabase('my_app.db')

class BaseModel(Model):
    class Meta:
        database = db

class User(BaseModel):
    username = CharField(unique=True)

user_elastic_mapping = load(model=User, orm=SupportedORMs.Peewee) 

SQLAlchemy example

from sqlalchemy.orm import declarative_base
from sqlalchemy import Column, Integer, String
from elasticmapper import load, SupportedORMs

Base = declarative_base()

class User(Base):
    __tablename__ = 'users'
    id = Column(Integer, primary_key=True)
    username = Column(String)

user_elastic_mapping = load(model=User, orm=SupportedORMs.SQLAlchemy) 

DjangoORM example

from django.db import models
from elasticmapper import load, SupportedORMs

class User(models.Model):
    username = models.CharField(max_length=30)

user_elastic_mapping = load(model=User, orm=SupportedORMs.DjangoORM) 

Output for all examples:

{
    'id': 'int',
    'username': 'text'
}

Documentation

elasticmapper.load

  • model - required param

A model instance.

  • orm - required param

One of the SupportedORMs attributes.

  • keyword_fields

A collection that contains attribute names. All of them will have keyword type in the output mapping.

  • include

A collection that contains attribute names. Attributes that are not listed in this collection will not be included in the output mapping.

  • exclude

A collection that contains attribute names. Attributes that are listed in this collection will not be included in the output mapping.

  • alternative_names

A dictionary that contains attribute names and their new names which will be listed in the output mapping.

For example:

elasticmapper.load(model=..., orm=..., alternative_names={'id': 'obj_id'})

Expected output:

{'obj_id': 'int'}

Contributing

PR are welcome! Thank you for your contribution.

License

Copyright © 2022 Polina Beskorovaynaya ihatemilk

This project has MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

elasticmapper-0.1.5.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

elasticmapper-0.1.5-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file elasticmapper-0.1.5.tar.gz.

File metadata

  • Download URL: elasticmapper-0.1.5.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for elasticmapper-0.1.5.tar.gz
Algorithm Hash digest
SHA256 7298e05945534159ad9b0364e543e7c967d1e6a66d237434af733ebdee17d5fc
MD5 e57cc10a0858eff7a8ec8045fc911841
BLAKE2b-256 d8d35a7c79c8e794e50e1446d93dc4a7020cf103ef563512c18110a5e329a610

See more details on using hashes here.

File details

Details for the file elasticmapper-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: elasticmapper-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.9

File hashes

Hashes for elasticmapper-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 027bbf9b8ca074e1e9be6f5617f43dd9e09638fc9b742075443c657304aae711
MD5 3c458ed5757f6b5452aa199b7d6c85e2
BLAKE2b-256 2c8330c86d78bc0ebd007516416d765a1c4d43ed2dcde0296fcfed5f089ce9d0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page