bpmappers
bpmappers is a Python moudle that maps Python dictionary values and object properties to different dictionary.
Install
Install using pip.
$ pip install bpmappers
Usage
An example of mapping an instance of the Person class to a dictionary:
>>> class Person:
... def __init__(self, name, age):
... self.name = name
... self.age = age
... def __repr__(self):
... return "<Person name={}, age={}>".format(self.name, self.age)
...
>>> p = Person("Spam", 25)
>>> p
<Person name=Spam, age=25>
>>> from bpmappers import Mapper, RawField
>>> class PersonMapper(Mapper):
... mapped_name = RawField('name')
... mapped_age = RawField('age')
...
>>> PersonMapper(p).as_dict()
OrderedDict([('mapped_name', 'Spam'), ('mapped_age', 25)])
Requirements
Target Python version is 3.6, 3.7, 3.8, 3.9
Django 2.2, 3.0, 3.1 (When use Django support)
License
This software is licensed under the MIT License.
Documentation
The latest documentation is hosted at Read The Docs.
Develop
This project is hosted at GitHub: https://github.com/beproud/bpmappers
Release Procedure: https://github.com/beproud/bpmappers/blob/master/release_checklist.rst
Maintainer
Shinya Okano <tokibito@gmail.com>
Release files for bpmappers 1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| bpmappers-1.3.tar.gz | 283.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| bpmappers-1.3-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 291.9 kB
Release files / bpmappers-1.3.tar.gz
| Download URL | bpmappers-1.3.tar.gz |
|---|---|
| Size | 283.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0322bbf7637d0243fe2b8815f7ab9f7bbf974919ed6e4c5f17b83365cba7fe67
|
|
BLAKE2b-256 checksum How to use checksums |
b7a570d2aaf3b49c1a1a8eff8e2fc65f641e02bd5615e18e8aa555818f66e072
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.2
|
Release files / bpmappers-1.3-py2.py3-none-any.whl
| Download URL | bpmappers-1.3-py2.py3-none-any.whl |
|---|---|
| Size | 8.8 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
5463895ab9686f6f29df37496f6172cb2edd71d4c712a8ed8e98a6344303334b
|
|
BLAKE2b-256 checksum How to use checksums |
f2671950f4d688a85967d6a258f6d67d58359b215e3c6c04a82c28323f8d40a4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.2
|