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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file elasticmapper-0.1.1.tar.gz.
File metadata
- Download URL: elasticmapper-0.1.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30d41137e062e6d318124d06918c6c81702751197834f9ebe1fba9d210a59fb1
|
|
| MD5 |
31ecbf1cfa5dc919454649e07260d640
|
|
| BLAKE2b-256 |
d24d0c8711fe88eef24177c1744721b9ef3fb57f2d1c481b4f9792d73d458371
|
File details
Details for the file elasticmapper-0.1.1-py3-none-any.whl.
File metadata
- Download URL: elasticmapper-0.1.1-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5733a7d5f230b974caef5f6f1dbe4275a9abdde7c937718024d651d089a9aed2
|
|
| MD5 |
5caf8c01be869c578e43fb87b1fbb434
|
|
| BLAKE2b-256 |
4fda993f1749efe6b4fac0950b99590a4b0b7796b804f47411480331f6ee8b02
|