Skip to main content

MultiLingualField for MongoEngine

Project description

https://travis-ci.org/rembish/mongoengine-mls.svg?branch=master https://coveralls.io/repos/rembish/mongoengine-mls/badge.svg https://pypip.in/download/mongoengine-mls/badge.svg https://pypip.in/version/mongoengine-mls/badge.svg https://pypip.in/py_versions/mongoengine-mls/badge.svg https://pypip.in/implementation/mongoengine-mls/badge.svg https://pypip.in/status/mongoengine-mls/badge.svg https://pypip.in/wheel/mongoengine-mls/badge.svg https://pypip.in/egg/mongoengine-mls/badge.svg https://pypip.in/format/mongoengine-mls/badge.svg https://pypip.in/license/mongoengine-mls/badge.svg

Simple extension for MongoEngine, which adds MultiLingualField (based on MultiLingualString). Some self-describing examples:

from locale import setlocale, LC_ALL
from mongoengine import Document, connect
from mongoengine_mls import MultiLingualField

class Country(Document):
    meta = {"indexes": ["name.language"]}
    name = MultiLingualField(required=True)

setlocale(LC_ALL, "en_US.UTF-8")
connect("test")

ru = Country(name={"en": "Russia", "ru": u"Россия"})
ru.save()

print(ru.name)  # => Russia
print(ru.name >> "ru")  # => Россия

ru2 = Country.objects.first()
ru2.name = [
    {"language": "en", "value": "Russian Federation"},
    {"language": "ru", "value": u"Российская Федерация"}
]
ru2.save()

print(ru2.name)  # => Russia Federation
print(type(ru2.name))  # => <class 'mls.MultiLingualString'>

Download files

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

Source Distribution

mongoengine-mls-1.1.0.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

mongoengine_mls-1.1.0-py2.py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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