forked from marazt/object-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
129 lines (85 loc) · 3.43 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Object Mapper
**Version**
1.0.3
**Author**
marazt
**Copyright**
marazt
**License**
The MIT License (MIT)
**Last updated**
15 May 2015
**Package Download**
https://pypi.python.org/pypi/object-mapper
---
## Versions
**1.0.3 - 2015/05/15**
* Added support for None mapping [@ramiabughazaleh](https://github.com/ramiabughazaleh)
**1.0.2 - 2015/05/06**
* Added support for case insensitivity mapping [@ramiabughazaleh](https://github.com/ramiabughazaleh)
**1.0.1 - 2015/02/19**
* Fix of the package information
**1.0.0 - 2015/02/19**
* Initial version
## About
**ObjectMapper** is a class for automatic object mapping inspired by .NET **AutoMapper**.
It helps you to create objects between project layers (data layer, service layer, view) in a simple, transparent way.
## Example
1. **Mapping of the properties without mapping definition**
In this case are mapped only these properties of the target class which
are in target and source classes. Other properties are not mapped.
Suppose we have class `A` with attributes `name` and `last_name`
and class `B` with attribute `name`.
Initialization of the ObjectMapper will be:
```python
mapper = ObjectMapper()
mapper.create_map(A, B)
instance_b = mapper.map(A(), B)
```
In this case, value of A.name will be copied into B.name.
2. **Mapping with defined mapping functions**
Suppose we have class `A` with attributes `first_name` and `last_name`
, class `B` with attribute `full_name` and class `C` with attribute reverse_name.
And want to map it in a way `B.full_name = A.first_name + A.last_name` and
`C.reverse_name = A.last_name + A.first_name`
Initialization of the ObjectMapper will be:
```python
mapper = ObjectMapper()
mapper.create_map(A, B, {'name': lambda a : a.first_name + " " + a.last_name})
mapper.create_map(A, C, {'name': lambda a : a.last_name + " " + a.first_name})
instance_b = mapper.map(A(), B)
instance_c = mapper.map(A(), C)
```
In this case, to the `B.name` will be mapped `A.first_name + " " + A.last_name`
In this case, to the `C.name` will be mapped `A.last_name + " " + A.first_name`
3. **Mapping suppression**
For some purposes, it can be needed to suppress some mapping.
Suppose we have class `A` with attributes `name` and `last_name`
and class `B` with attributes `name` and `last_name`.
And we want to map only the `A.name` into `B.name`, but not `A.last_name` to
`B.last_name`
Initialization of the ObjectMapper will be:
```python
mapper = ObjectMapper()
mapper.create_map(A, B, {'last_name': None})
instance_b = mapper.map(A(), B)
```
In this case, value of A.name will be copied into `B.name` automatically by the attribute name `name`.
Attribute `A.last_name` will be not mapped thanks the suppression (lambda function is None).
4. **Case insensitive mapping**
Suppose we have class `A` with attributes `Name` and `Age` and
class `B` with attributes `name` and `age` and we want to map `A` to `B` in a way
`B.name` = `A.Name` and `B.age` = `A.Age`
Initialization of the ObjectMapper will be:
```python
mapper = ObjectMapper()
mapper.create_map(A, B)
instance_b = mapper.map(A(), B, ignore_case=True)
```
In this case, the value of A.Name will be copied into B.name and
the value of A.Age will be copied into B.age.
**Note:** You can find more examples in tests package
## Installation
* Download this project
* Download for Pypi: https://pypi.python.org/pypi/object-mapper
### ENJOY IT!