File: PKG-INFO

package info (click to toggle)
dicteval 0.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 164 kB
  • sloc: python: 188; makefile: 3
file content (213 lines) | stat: -rw-r--r-- 5,992 bytes parent folder | download | duplicates (6)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
Metadata-Version: 1.2
Name: dicteval
Version: 0.0.6
Summary: Evaluate expressions in dict/json objects
Home-page: https://github.com/osantana/dicteval
Author: Osvaldo Santana Neto
Author-email: dicteval@osantana.me
License: MIT
Description: 
        dicteval
        ========
        
        Library to evaluate expressions in dict/json objects.
        
        
        Requirements
        ------------
        
        * Python 3.6+
        
        
        Basic Usage
        -----------
        
        Module ``dicteval`` will evaluate basic types with no modifications but it will
        evaluate dicts (or json objects) containing keys started with ``=`` (equal)
        symbol as an expression:
        
           >>> from dicteval import dicteval
           >>> dicteval(3)
           3
           >>> dicteval([3, 5])
           [3, 5]
           >>> dicteval((5, 3))
           [5, 3]
           >>> dicteval({"=sum": [3, 5]})
           8
           >>> dicteval({"=": 5})  # = symbol alone is a 'nop' function
           5
        
        You can provide a dictionary with context to be used during evaluation process.
        
          >>> dicteval({"=": "!{var}"}, context={"var": 1.0})
          1.0
        
        You can also wrap your string content with ``@{}`` to force a Python ``eval()``
        with the context provided:
        
           >>> dicteval({"=sum": [3, "@{var + 2}"]}, context={"var": 3})
           8
        
        .. warning::
           This functionality will be removed (or changed) in future releases for
           security reasons.
        
        
        Functions
        ---------
        
        You can use the following builtin functions in your expressions:
        
        
        Function ``=any``
        '''''''''''''''''
        
        Returns ``True`` if any element of sequence is true.
        
            >>> dicteval({"=any": [1, 2, 3]})
            True
            >>> dicteval({"=any": [0, 0]})
            False
        
        
        Function ``=eq``
        ''''''''''''''''
        
        Returns ``True`` if all elements of sequence are equals:
        
           >>> dicteval({"=eq": [1, 1, 1, 1]})
           True
        
        
        Function ``=if``
        ''''''''''''''''
        
        Evaluates condition and returns first value if true, otherwise, returns second value.
        If no false value is supplied, it is assumed to be ``None``.
        
            >>> dicteval({"=if": [{"=": "@{var > 5}"}, "yes", "no"]}, context={"var": 6})
            'yes'
            >>> dicteval({"=if": [{"=": "@{var > 5}"}, "yes", "no"]}, context={"var": 4})
            'no'
            >>> dicteval({"=if": [{"=": "@{var > 5}"}, "yes"]}, context={"var": 4})
        
        
        Function ``=neq``
        '''''''''''''''''
        
        Returns ``True`` if elements of sequence are different:
        
           >>> dicteval({"=neq": [1, 1, 1, 5]})
           True
        
        
        Function ``=`` (or ``nop``)
        '''''''''''''''''''''''''''
        
        Returns the same values passed as arguments:
        
           >>> dicteval({"=": [1, 2, 3, 4]})
           [1, 2, 3, 4]
           >>> dicteval({"=nop": "spam"})
           'spam'
        
        
        Function ``=not``
        '''''''''''''''''
        
        Returns the boolean inverse of argument:
        
           >>> dicteval({"=not": False})
           True
           >>> dicteval({"=not": True})
           False
           >>> dicteval({"=not": None})
           True
           >>> dicteval({"=not": "XYZ"})
           False
        
        
        Function ``=sum``
        '''''''''''''''''
        
        Returns a number with the sum of arguments:
        
           >>> dicteval({"=sum": [3, 5]})
           8
        
        
        Function ``=mul``
        '''''''''''''''''
        
        Returns a number with the product of arguments:
        
           >>> dicteval({"=mul": [3, 5]})
           15
        
        
        Function ``=all``
        '''''''''''''''''
        
        Return True if all elements of the iterable are true (or if the iterable is empty)
        
           >>> dicteval({"=all": (True, False)})
           False
           >>> dicteval({"=all": (True, True)})
           True
        
        
        Function ``=divmod``
        ''''''''''''''''''''
        
        Returns a tuple containing the quotient and remainder after division:
        
           >>> dicteval({"=divmod": [8,3]})
           (2, 2)
           >>> dicteval({"=divmod": [7.5,2.5]})
           (3.0, 0.0)
        
        
        Function ``=zip``
        '''''''''''''''''
        
        Return list of aggregate tuples constructed from elements of multiple iterables.
        
           >>> dicteval({"=zip": [[1, 2, 3], [4, 5], [6, 7, 8, 9]]})
           [(1, 4, 6), (2, 5, 7)]
        
        
        To Do
        -----
        
        - Add more functions to the builtin language
        
        
        Contribute
        ----------
        
        To contribute to `dicteval`: 
        
            1. Clone this repository and `cd` into it
            2. Install dev dependencies with [pipenv](https://github.com/pypa/pipenv)
               ```bash
               pipenv install --dev
               ```
            3. Create a branch, like `git checkout -b [feature_name]`
            4. Git commit changes
            5. Pull request
        
         
        License
        -------
        
        This software is licensed under MIT license.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7.0