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.

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.0.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.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: elasticmapper-0.1.0.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.0.tar.gz
Algorithm Hash digest
SHA256 169397af7e52d0ec3a12c4fa7b7fc0389bf6606ea8a32c7e3786c19776fcaaa5
MD5 453dccfb337f8c71675d4b7a5f9f8a15
BLAKE2b-256 04a3c28994f774d6848fdd752ec720c72466156c6ffb9191b19710dd397f88a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: elasticmapper-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 6.3 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 155aad19c1100d06d5410e00903b3cebacc2bcd40915c449c78782520a821ce5
MD5 8616a145c527be32596601733a42d783
BLAKE2b-256 f1c0a28a26ae3c4ab89e9d028258608122a3ec24215e00f83c7c1db3103485ef

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