dataplaybook 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dataplaybook-0.0.0/LICENSE +201 -0
- dataplaybook-0.0.0/PKG-INFO +170 -0
- dataplaybook-0.0.0/README.md +128 -0
- dataplaybook-0.0.0/dataplaybook/__init__.py +13 -0
- dataplaybook-0.0.0/dataplaybook/__main__.py +14 -0
- dataplaybook-0.0.0/dataplaybook/config_validation.py +35 -0
- dataplaybook-0.0.0/dataplaybook/const.py +23 -0
- dataplaybook-0.0.0/dataplaybook/everything/__init__.py +55 -0
- dataplaybook-0.0.0/dataplaybook/helper.py +67 -0
- dataplaybook-0.0.0/dataplaybook/helpers/__init__.py +1 -0
- dataplaybook-0.0.0/dataplaybook/helpers/args.py +49 -0
- dataplaybook-0.0.0/dataplaybook/helpers/env.py +159 -0
- dataplaybook-0.0.0/dataplaybook/main.py +308 -0
- dataplaybook-0.0.0/dataplaybook/tasks/__init__.py +247 -0
- dataplaybook-0.0.0/dataplaybook/tasks/all.py +14 -0
- dataplaybook-0.0.0/dataplaybook/tasks/fnb.py +268 -0
- dataplaybook-0.0.0/dataplaybook/tasks/fuzzy.py +43 -0
- dataplaybook-0.0.0/dataplaybook/tasks/gis.py +31 -0
- dataplaybook-0.0.0/dataplaybook/tasks/ietf.py +203 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_mail.py +100 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_misc.py +187 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_mongo.py +221 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_pdf.py +80 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_pptx.py +253 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_xlsx.py +266 -0
- dataplaybook-0.0.0/dataplaybook/tasks/io_xml.py +135 -0
- dataplaybook-0.0.0/dataplaybook/utils/__init__.py +149 -0
- dataplaybook-0.0.0/dataplaybook/utils/logger.py +91 -0
- dataplaybook-0.0.0/pyproject.toml +157 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: dataplaybook
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Playbooks for data. Open, process and save table based data.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Keywords: data,tables,excel,mongodb,generators
|
|
7
|
+
Author: Johann Kellerman
|
|
8
|
+
Author-email: kellerza@gmail.com
|
|
9
|
+
Requires-Python: >3.10
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Natural Language :: English
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Provides-Extra: all
|
|
21
|
+
Provides-Extra: lxml
|
|
22
|
+
Provides-Extra: mongodb
|
|
23
|
+
Requires-Dist: O365 (>=1.0.4,<2) ; extra == "all"
|
|
24
|
+
Requires-Dist: attrs (>24)
|
|
25
|
+
Requires-Dist: colordict (>=1.2.6,<2.0.0)
|
|
26
|
+
Requires-Dist: colorlog
|
|
27
|
+
Requires-Dist: fuzzywuzzy
|
|
28
|
+
Requires-Dist: icecream
|
|
29
|
+
Requires-Dist: jinja2 (>=3,<4)
|
|
30
|
+
Requires-Dist: lxml (>=5.3.0,<6.0.0) ; extra == "lxml" or extra == "all"
|
|
31
|
+
Requires-Dist: openpyxl (>=3,<4)
|
|
32
|
+
Requires-Dist: pymongo ; extra == "mongodb" or extra == "all"
|
|
33
|
+
Requires-Dist: python-Levenshtein
|
|
34
|
+
Requires-Dist: python-pptx ; extra == "all"
|
|
35
|
+
Requires-Dist: requests (>=2.0.0)
|
|
36
|
+
Requires-Dist: typeguard (>=2,<3)
|
|
37
|
+
Requires-Dist: typing-extensions
|
|
38
|
+
Requires-Dist: voluptuous (>=0.11.5)
|
|
39
|
+
Project-URL: Repository, https://github.com/kellerza/data-playbook
|
|
40
|
+
Description-Content-Type: text/markdown
|
|
41
|
+
|
|
42
|
+
# Data Playbook
|
|
43
|
+
|
|
44
|
+
:book: Playbooks for data. Open, process and save table based data.
|
|
45
|
+
[](https://github.com/kellerza/data-playbook/actions)
|
|
46
|
+
[](https://codecov.io/gh/kellerza/data-playbook)
|
|
47
|
+
|
|
48
|
+
Automate repetitive tasks on table based data. Include various input and output tasks.
|
|
49
|
+
|
|
50
|
+
Install: `pip install dataplaybook`
|
|
51
|
+
|
|
52
|
+
Use the `@task` and `@playbook` decorators
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
from dataplaybook import task, playbook
|
|
56
|
+
from dataplaybook.tasks.io_xlsx
|
|
57
|
+
|
|
58
|
+
@task
|
|
59
|
+
def print
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Tasks
|
|
63
|
+
|
|
64
|
+
Tasks are implemented as simple Python functions and the modules can be found in the dataplaybook/tasks folder.
|
|
65
|
+
|
|
66
|
+
| Module | Functions |
|
|
67
|
+
| :----------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------- |
|
|
68
|
+
| Generic function to work on tables<br>`dataplaybook.tasks` | build_lookup, build_lookup_var, combine, drop, extend, filter, print, replace, unique, vlookup |
|
|
69
|
+
| Fuzzy string matching <br>`dataplaybook.taksk.fuzzy`<br> Requires _pip install fuzzywuzzy_ | |
|
|
70
|
+
| Read/write excel files ()<br>`dataplaybook.tasks.io_xlsx` | read_excel, write_excel |
|
|
71
|
+
| Misc IO tasks<br>`dataplaybook.tasks.io_misc` | read_csv, read_tab_delim, read_text_regex, wget, write_csv |
|
|
72
|
+
| MongoDB functions<br>`dataplaybook.tasks.io_mongo` | read_mongo, write_mongo, columns_to_list, list_to_columns |
|
|
73
|
+
| PDF functions. Requires _pdftotext_ on your path<br>`dataplaybook.tasks.io_pdf` | read_pdf_pages, read_pdf_files |
|
|
74
|
+
| Read XML<br>`dataplaybook.tasks.io_xml` | read_xml |
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
$ dataplaybook --all -vvv
|
|
78
|
+
dataplaybook.tasks
|
|
79
|
+
- build_lookup "(table: list[RowData], key: str, columns: list[str]) -> RowDataGen"
|
|
80
|
+
- build_lookup_dict "(table: list[RowData], key: str | list[str], columns: list[str] | None = None) -> dict[str | tuple, Any]"
|
|
81
|
+
- combine "(tables: list[list[RowData]], key: str, columns: list[str], value: Union[Literal[True], str] = True) -> list[RowData]"
|
|
82
|
+
- ensure_lists "(tables: Sequence[list[RowData]], columns: Sequence[str]) -> None"
|
|
83
|
+
- filter_rows "(table: list[RowData], include: dict[str, str] | None = None, exclude: dict[str, str] | None = None) -> RowDataGen"
|
|
84
|
+
- print_table "(*, table: list[RowData] | None = None, tables: dict[str, list[RowData]] | None = None) -> None"
|
|
85
|
+
- remove_null "(tables: Sequence[list[RowData]]) -> None"
|
|
86
|
+
- replace "(table: list[RowData], replace_dict: dict[str, str], columns: list[str]) -> None"
|
|
87
|
+
- unique "(table: list[RowData], key: str) -> RowDataGen"
|
|
88
|
+
- vlookup "(table0: list[RowData], acro: list[RowData], columns: list[str]) -> None"
|
|
89
|
+
dataplaybook.tasks.fuzzy
|
|
90
|
+
- fuzzy_match "(table1: list[RowData], table2: list[RowData], t1_column: str, t2_column: str, t1_target_column: str) -> None"
|
|
91
|
+
dataplaybook.tasks.ietf
|
|
92
|
+
- add_standards_column "(table: list[RowData], columns: list[str], rfc_col: str) -> None"
|
|
93
|
+
- extract_standards_from_table "(table: list[RowData], extract_columns: list[str], include_columns: list[str] | None = None, name: str = '', line_offset: int = 1) -> RowDataGen"
|
|
94
|
+
dataplaybook.tasks.gis
|
|
95
|
+
- linestring "(table: list[RowData], lat_a: str = 'latA', lat_b: str = 'latB', lon_a: str = 'lonA', lon_b: str = 'lonB', linestring_column: str = 'linestring', error: str = '22 -22') -> list[RowData]"
|
|
96
|
+
dataplaybook.tasks.io_mail
|
|
97
|
+
- mail "(to_addrs: list[str] | str, from_addr: str, subject: str, server: str, files: list[str] | None = None, priority: int = 4, body: str | None = '', html: str | None = '', cc_addrs: list[str] | None = None, bcc_addrs: list[str] | None = None) -> None"
|
|
98
|
+
dataplaybook.tasks.io_misc
|
|
99
|
+
- file_rotate "(file: str, count: int = 3) -> None"
|
|
100
|
+
- glob "(patterns: list[str]) -> RowDataGen"
|
|
101
|
+
- read_csv "(file: str, columns: dict[str, str] | None = None) -> RowDataGen"
|
|
102
|
+
- read_json "(file: str) -> list[RowData]"
|
|
103
|
+
- read_tab_delim "(file: str, headers: list[str]) -> RowDataGen"
|
|
104
|
+
- read_text_regex "(filename: str, newline: Pattern, fields: Optional[Pattern]) -> RowDataGen"
|
|
105
|
+
- wget "(url: str, file: str, age: int = 172800) -> None"
|
|
106
|
+
- write_csv "(table: list[RowData], file: str, header: list[str] | None = None) -> None"
|
|
107
|
+
- write_json "(data: dict[str, list[RowData]] | list[RowData], file: str, only_var: bool = False) -> None"
|
|
108
|
+
dataplaybook.tasks.io_mongo
|
|
109
|
+
- columns_to_list "(table: 'list[RowData]', *, list_column: 'str', columns: 'Columns') -> 'None'"
|
|
110
|
+
- list_to_columns "(table: 'list[RowData]', *, list_column: 'str', columns: 'Columns') -> 'None'"
|
|
111
|
+
- mongo_delete_sids "(*, mdb: 'MongoURI', sids: 'list[str]') -> 'None'"
|
|
112
|
+
- mongo_list_sids "(mdb: 'MongoURI') -> 'list[str]'"
|
|
113
|
+
- mongo_sync_sids "(*, mdb_local: 'MongoURI', mdb_remote: 'MongoURI', ignore_remote: 'Sequence[str] | None' = None, only_sync_sids: 'Sequence[str] | None' = None) -> 'None'"
|
|
114
|
+
- read_mongo "(mdb: 'MongoURI', *, set_id: 'str | None' = None) -> 'RowDataGen'"
|
|
115
|
+
- write_mongo "(table: 'list[RowData]', mdb: 'MongoURI', *, set_id: 'str | None' = None, force: 'bool' = False) -> 'None'"
|
|
116
|
+
dataplaybook.tasks.io_pdf
|
|
117
|
+
- read_pdf_files "(folder: str, pattern: str = '*.pdf', *, layout: bool = True, args: list[str] | None = None) -> RowDataGen"
|
|
118
|
+
- read_pdf_pages "(filename: str, *, layout: bool = True, args: list[str] | None = None) -> RowDataGen"
|
|
119
|
+
dataplaybook.tasks.io_xlsx
|
|
120
|
+
- read_excel "(*, tables: dict[str, list[RowData]], file: str, sheets: list[RowData] | None = None) -> list[str]"
|
|
121
|
+
- write_excel "(*, tables: dict[str, list[RowData]], file: str, include: list[str] | None = None, header: list[str] | None = None, headers: list[Any] | None = None, ensure_string: bool = False) -> None"
|
|
122
|
+
dataplaybook.tasks.io_xml
|
|
123
|
+
- read_xml "(tables: dict[str, list[RowData]], file: str, targets: list[str]) -> None"
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## Local development
|
|
127
|
+
|
|
128
|
+
Poetry is used for dependency management. Install poetry and run `poetry install` to install the dependencies.
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
poetry install -E all
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
pre-commit is used for code formatting and linting. Install pre-commit and run `pre-commit install` to install the git hooks.
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
pip install pre-commit && pre-commit install
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Test locally using pre-commit (ruff, codespell, mypy & pylint)
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
git add . && pre-commit run --all
|
|
144
|
+
poetry run pylint dataplaybook tests
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## Data Playbook v0 - origins
|
|
148
|
+
|
|
149
|
+
Data playbooks was created to replace various snippets of code I had lying around. They were all created to ensure repeatability of some menial task, and generally followed a similar structure of load something, process it and save it. (Process network data into GIS tools, network audits & reporting on router & NMS output, Extract IETF standards to complete SOCs, read my bank statements into my Excel budgeting tool, etc.)
|
|
150
|
+
|
|
151
|
+
For many of these tasks I have specific processing code (`tasks_x.py`, loaded with `modules: [tasks_x]` in the playbook), but in almost all cases input & output tasks (and configuring these names etc) are common. The idea of the modular tasks originally came from Home Assistant, where I started learning Python and the idea of "custom components" to add your own integrations, although one could argue this also has similarities to Ansible playbooks.
|
|
152
|
+
|
|
153
|
+
In many cases I have a 'loose' coupling to actual file names, using Everything search (`!es search_pattern` in the playbook) to resolve a search pattern to the correct file used for input.
|
|
154
|
+
|
|
155
|
+
It has some parts in common with Ansible Playbooks, especially the name was chosen after I was introduced to Ansible Playbooks. The task structure has been updated in 2019 to match the Ansible Playbooks 2.0/2.5+ format and allow names. This format will also be easier to introduce loop mechanisms etc.
|
|
156
|
+
|
|
157
|
+
### Comparison to Ansible Playbooks
|
|
158
|
+
|
|
159
|
+
Data playbooks is intended to create and modify variables in the environment (similar to **inventory**). Data playbooks starts with an empty environment (although you can read the environment from various sources inside the play).
|
|
160
|
+
Although new variables can be created using **register:** in Ansible, data playbook functions requires the output to be captured through `target:`.
|
|
161
|
+
|
|
162
|
+
Data playbook tasks are different form Ansible's **actions**:
|
|
163
|
+
|
|
164
|
+
- They are mostly not idempotent, since the intention is to modify tables as we go along,
|
|
165
|
+
- they can return lists containing rows or be Python iterators (that `yield` rows of a table)
|
|
166
|
+
- if they dont return any tabular data (a list), the return value will be added to the `var` table in the environment
|
|
167
|
+
- Each have a strict voluptuous schema, evaluated when loading and during runtime (e.g. to expand templates) to allow quick troubleshooting
|
|
168
|
+
|
|
169
|
+
You could argue I can do this with Ansible, but it won't be as elegant with single item hosts files, `gather_facts: no` and `delegate_to: localhost` throughout the playbooks. It will likely only be half as much fun trying to force it into my way of thinking.
|
|
170
|
+
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# Data Playbook
|
|
2
|
+
|
|
3
|
+
:book: Playbooks for data. Open, process and save table based data.
|
|
4
|
+
[](https://github.com/kellerza/data-playbook/actions)
|
|
5
|
+
[](https://codecov.io/gh/kellerza/data-playbook)
|
|
6
|
+
|
|
7
|
+
Automate repetitive tasks on table based data. Include various input and output tasks.
|
|
8
|
+
|
|
9
|
+
Install: `pip install dataplaybook`
|
|
10
|
+
|
|
11
|
+
Use the `@task` and `@playbook` decorators
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from dataplaybook import task, playbook
|
|
15
|
+
from dataplaybook.tasks.io_xlsx
|
|
16
|
+
|
|
17
|
+
@task
|
|
18
|
+
def print
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Tasks
|
|
22
|
+
|
|
23
|
+
Tasks are implemented as simple Python functions and the modules can be found in the dataplaybook/tasks folder.
|
|
24
|
+
|
|
25
|
+
| Module | Functions |
|
|
26
|
+
| :----------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------- |
|
|
27
|
+
| Generic function to work on tables<br>`dataplaybook.tasks` | build_lookup, build_lookup_var, combine, drop, extend, filter, print, replace, unique, vlookup |
|
|
28
|
+
| Fuzzy string matching <br>`dataplaybook.taksk.fuzzy`<br> Requires _pip install fuzzywuzzy_ | |
|
|
29
|
+
| Read/write excel files ()<br>`dataplaybook.tasks.io_xlsx` | read_excel, write_excel |
|
|
30
|
+
| Misc IO tasks<br>`dataplaybook.tasks.io_misc` | read_csv, read_tab_delim, read_text_regex, wget, write_csv |
|
|
31
|
+
| MongoDB functions<br>`dataplaybook.tasks.io_mongo` | read_mongo, write_mongo, columns_to_list, list_to_columns |
|
|
32
|
+
| PDF functions. Requires _pdftotext_ on your path<br>`dataplaybook.tasks.io_pdf` | read_pdf_pages, read_pdf_files |
|
|
33
|
+
| Read XML<br>`dataplaybook.tasks.io_xml` | read_xml |
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
$ dataplaybook --all -vvv
|
|
37
|
+
dataplaybook.tasks
|
|
38
|
+
- build_lookup "(table: list[RowData], key: str, columns: list[str]) -> RowDataGen"
|
|
39
|
+
- build_lookup_dict "(table: list[RowData], key: str | list[str], columns: list[str] | None = None) -> dict[str | tuple, Any]"
|
|
40
|
+
- combine "(tables: list[list[RowData]], key: str, columns: list[str], value: Union[Literal[True], str] = True) -> list[RowData]"
|
|
41
|
+
- ensure_lists "(tables: Sequence[list[RowData]], columns: Sequence[str]) -> None"
|
|
42
|
+
- filter_rows "(table: list[RowData], include: dict[str, str] | None = None, exclude: dict[str, str] | None = None) -> RowDataGen"
|
|
43
|
+
- print_table "(*, table: list[RowData] | None = None, tables: dict[str, list[RowData]] | None = None) -> None"
|
|
44
|
+
- remove_null "(tables: Sequence[list[RowData]]) -> None"
|
|
45
|
+
- replace "(table: list[RowData], replace_dict: dict[str, str], columns: list[str]) -> None"
|
|
46
|
+
- unique "(table: list[RowData], key: str) -> RowDataGen"
|
|
47
|
+
- vlookup "(table0: list[RowData], acro: list[RowData], columns: list[str]) -> None"
|
|
48
|
+
dataplaybook.tasks.fuzzy
|
|
49
|
+
- fuzzy_match "(table1: list[RowData], table2: list[RowData], t1_column: str, t2_column: str, t1_target_column: str) -> None"
|
|
50
|
+
dataplaybook.tasks.ietf
|
|
51
|
+
- add_standards_column "(table: list[RowData], columns: list[str], rfc_col: str) -> None"
|
|
52
|
+
- extract_standards_from_table "(table: list[RowData], extract_columns: list[str], include_columns: list[str] | None = None, name: str = '', line_offset: int = 1) -> RowDataGen"
|
|
53
|
+
dataplaybook.tasks.gis
|
|
54
|
+
- linestring "(table: list[RowData], lat_a: str = 'latA', lat_b: str = 'latB', lon_a: str = 'lonA', lon_b: str = 'lonB', linestring_column: str = 'linestring', error: str = '22 -22') -> list[RowData]"
|
|
55
|
+
dataplaybook.tasks.io_mail
|
|
56
|
+
- mail "(to_addrs: list[str] | str, from_addr: str, subject: str, server: str, files: list[str] | None = None, priority: int = 4, body: str | None = '', html: str | None = '', cc_addrs: list[str] | None = None, bcc_addrs: list[str] | None = None) -> None"
|
|
57
|
+
dataplaybook.tasks.io_misc
|
|
58
|
+
- file_rotate "(file: str, count: int = 3) -> None"
|
|
59
|
+
- glob "(patterns: list[str]) -> RowDataGen"
|
|
60
|
+
- read_csv "(file: str, columns: dict[str, str] | None = None) -> RowDataGen"
|
|
61
|
+
- read_json "(file: str) -> list[RowData]"
|
|
62
|
+
- read_tab_delim "(file: str, headers: list[str]) -> RowDataGen"
|
|
63
|
+
- read_text_regex "(filename: str, newline: Pattern, fields: Optional[Pattern]) -> RowDataGen"
|
|
64
|
+
- wget "(url: str, file: str, age: int = 172800) -> None"
|
|
65
|
+
- write_csv "(table: list[RowData], file: str, header: list[str] | None = None) -> None"
|
|
66
|
+
- write_json "(data: dict[str, list[RowData]] | list[RowData], file: str, only_var: bool = False) -> None"
|
|
67
|
+
dataplaybook.tasks.io_mongo
|
|
68
|
+
- columns_to_list "(table: 'list[RowData]', *, list_column: 'str', columns: 'Columns') -> 'None'"
|
|
69
|
+
- list_to_columns "(table: 'list[RowData]', *, list_column: 'str', columns: 'Columns') -> 'None'"
|
|
70
|
+
- mongo_delete_sids "(*, mdb: 'MongoURI', sids: 'list[str]') -> 'None'"
|
|
71
|
+
- mongo_list_sids "(mdb: 'MongoURI') -> 'list[str]'"
|
|
72
|
+
- mongo_sync_sids "(*, mdb_local: 'MongoURI', mdb_remote: 'MongoURI', ignore_remote: 'Sequence[str] | None' = None, only_sync_sids: 'Sequence[str] | None' = None) -> 'None'"
|
|
73
|
+
- read_mongo "(mdb: 'MongoURI', *, set_id: 'str | None' = None) -> 'RowDataGen'"
|
|
74
|
+
- write_mongo "(table: 'list[RowData]', mdb: 'MongoURI', *, set_id: 'str | None' = None, force: 'bool' = False) -> 'None'"
|
|
75
|
+
dataplaybook.tasks.io_pdf
|
|
76
|
+
- read_pdf_files "(folder: str, pattern: str = '*.pdf', *, layout: bool = True, args: list[str] | None = None) -> RowDataGen"
|
|
77
|
+
- read_pdf_pages "(filename: str, *, layout: bool = True, args: list[str] | None = None) -> RowDataGen"
|
|
78
|
+
dataplaybook.tasks.io_xlsx
|
|
79
|
+
- read_excel "(*, tables: dict[str, list[RowData]], file: str, sheets: list[RowData] | None = None) -> list[str]"
|
|
80
|
+
- write_excel "(*, tables: dict[str, list[RowData]], file: str, include: list[str] | None = None, header: list[str] | None = None, headers: list[Any] | None = None, ensure_string: bool = False) -> None"
|
|
81
|
+
dataplaybook.tasks.io_xml
|
|
82
|
+
- read_xml "(tables: dict[str, list[RowData]], file: str, targets: list[str]) -> None"
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## Local development
|
|
86
|
+
|
|
87
|
+
Poetry is used for dependency management. Install poetry and run `poetry install` to install the dependencies.
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
poetry install -E all
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
pre-commit is used for code formatting and linting. Install pre-commit and run `pre-commit install` to install the git hooks.
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
pip install pre-commit && pre-commit install
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Test locally using pre-commit (ruff, codespell, mypy & pylint)
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
git add . && pre-commit run --all
|
|
103
|
+
poetry run pylint dataplaybook tests
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
## Data Playbook v0 - origins
|
|
107
|
+
|
|
108
|
+
Data playbooks was created to replace various snippets of code I had lying around. They were all created to ensure repeatability of some menial task, and generally followed a similar structure of load something, process it and save it. (Process network data into GIS tools, network audits & reporting on router & NMS output, Extract IETF standards to complete SOCs, read my bank statements into my Excel budgeting tool, etc.)
|
|
109
|
+
|
|
110
|
+
For many of these tasks I have specific processing code (`tasks_x.py`, loaded with `modules: [tasks_x]` in the playbook), but in almost all cases input & output tasks (and configuring these names etc) are common. The idea of the modular tasks originally came from Home Assistant, where I started learning Python and the idea of "custom components" to add your own integrations, although one could argue this also has similarities to Ansible playbooks.
|
|
111
|
+
|
|
112
|
+
In many cases I have a 'loose' coupling to actual file names, using Everything search (`!es search_pattern` in the playbook) to resolve a search pattern to the correct file used for input.
|
|
113
|
+
|
|
114
|
+
It has some parts in common with Ansible Playbooks, especially the name was chosen after I was introduced to Ansible Playbooks. The task structure has been updated in 2019 to match the Ansible Playbooks 2.0/2.5+ format and allow names. This format will also be easier to introduce loop mechanisms etc.
|
|
115
|
+
|
|
116
|
+
### Comparison to Ansible Playbooks
|
|
117
|
+
|
|
118
|
+
Data playbooks is intended to create and modify variables in the environment (similar to **inventory**). Data playbooks starts with an empty environment (although you can read the environment from various sources inside the play).
|
|
119
|
+
Although new variables can be created using **register:** in Ansible, data playbook functions requires the output to be captured through `target:`.
|
|
120
|
+
|
|
121
|
+
Data playbook tasks are different form Ansible's **actions**:
|
|
122
|
+
|
|
123
|
+
- They are mostly not idempotent, since the intention is to modify tables as we go along,
|
|
124
|
+
- they can return lists containing rows or be Python iterators (that `yield` rows of a table)
|
|
125
|
+
- if they dont return any tabular data (a list), the return value will be added to the `var` table in the environment
|
|
126
|
+
- Each have a strict voluptuous schema, evaluated when loading and during runtime (e.g. to expand templates) to allow quick troubleshooting
|
|
127
|
+
|
|
128
|
+
You could argue I can do this with Ansible, but it won't be as elegant with single item hosts files, `gather_facts: no` and `delegate_to: localhost` throughout the playbooks. It will likely only be half as much fun trying to force it into my way of thinking.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""DataPlayook init class."""
|
|
2
|
+
|
|
3
|
+
# ruff: noqa
|
|
4
|
+
from dataplaybook.const import (
|
|
5
|
+
Column,
|
|
6
|
+
Columns,
|
|
7
|
+
RowDataGen,
|
|
8
|
+
Tables,
|
|
9
|
+
DataEnvironment,
|
|
10
|
+
RowData,
|
|
11
|
+
)
|
|
12
|
+
from dataplaybook.main import _ENV as ENV
|
|
13
|
+
from dataplaybook.main import playbook, task, task_validate
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"""Data validation helpers for voluptuous."""
|
|
2
|
+
|
|
3
|
+
import logging
|
|
4
|
+
from typing import Any, Callable
|
|
5
|
+
|
|
6
|
+
import voluptuous as vol
|
|
7
|
+
|
|
8
|
+
_LOGGER = logging.getLogger(__name__)
|
|
9
|
+
_LOGGER.setLevel(logging.INFO)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def endswith(parts: str) -> Callable[[Any], Any]:
|
|
13
|
+
"""Ensure a string ends with specified part."""
|
|
14
|
+
|
|
15
|
+
def _check(_str: str) -> str:
|
|
16
|
+
"""Return the validator."""
|
|
17
|
+
if _str.endswith(parts):
|
|
18
|
+
return _str
|
|
19
|
+
raise vol.Invalid(f"{_str} does not end with {parts}")
|
|
20
|
+
|
|
21
|
+
return _check
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def ensure_tables(value: Any) -> Any:
|
|
25
|
+
"""Ensure you have a dict of tables."""
|
|
26
|
+
if not isinstance(value, dict):
|
|
27
|
+
raise vol.Invalid("tables need to be a dict")
|
|
28
|
+
for key, val in value.items():
|
|
29
|
+
if key == "var":
|
|
30
|
+
continue
|
|
31
|
+
if not isinstance(val, list):
|
|
32
|
+
raise vol.Invalid(
|
|
33
|
+
f"tables need to contain lists {key} contains {type(val)}"
|
|
34
|
+
)
|
|
35
|
+
return value
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Constants."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
# pylint: disable=unused-import
|
|
7
|
+
from dataplaybook.helpers.env import DataEnvironment # noqa: F401
|
|
8
|
+
|
|
9
|
+
VERSION = "1.0.25"
|
|
10
|
+
|
|
11
|
+
Columns = list[str]
|
|
12
|
+
Column = str
|
|
13
|
+
RowData = dict[str, typing.Any]
|
|
14
|
+
RowDataGen = typing.Generator[RowData, None, None]
|
|
15
|
+
Tables = dict[str, list[RowData]] | DataEnvironment
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# @attrs.define(slots=True)
|
|
19
|
+
# class Result(list[dict[str, typing.Any]]):
|
|
20
|
+
# """A table/list with some metadata."""
|
|
21
|
+
|
|
22
|
+
# name: str = attrs.field(default="")
|
|
23
|
+
# headers: int = 0
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
r"""Search for files using Everything from voidtools.
|
|
2
|
+
|
|
3
|
+
Everything HTTP Example:
|
|
4
|
+
http://localhost:8881/?s=zz%20xls&j=1&path_column=1
|
|
5
|
+
{ "totalResults":25, "results":[ { "type":"file",
|
|
6
|
+
"name":"filename.xlsx", "path":"C:\\...." }
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from collections import namedtuple
|
|
10
|
+
from pathlib import Path
|
|
11
|
+
from typing import Callable
|
|
12
|
+
|
|
13
|
+
import requests
|
|
14
|
+
|
|
15
|
+
SANE = r" !c:\windows !appdata\ !\.git !\.vscode !_old\ !.lnk !~$ !C:\program !c:\$R"
|
|
16
|
+
SERVER = "http://localhost:8881"
|
|
17
|
+
|
|
18
|
+
Result = namedtuple("Result", ["total", "files", "folders"])
|
|
19
|
+
PathT = namedtuple("PathT", ["path", "name"])
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def _everything_result(json: dict, class_: Callable) -> Result:
|
|
23
|
+
"""Everything's return value."""
|
|
24
|
+
result = {"total": -1, "files": [], "folders": []}
|
|
25
|
+
result["total"] = json["totalResults"]
|
|
26
|
+
for itm in json["results"]:
|
|
27
|
+
try:
|
|
28
|
+
lst = result[itm["type"] + "s"]
|
|
29
|
+
if isinstance(lst, list):
|
|
30
|
+
lst.append(class_(itm["path"], itm.get("name", "")))
|
|
31
|
+
except KeyError as err:
|
|
32
|
+
print(err)
|
|
33
|
+
return Result(**result)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def search(
|
|
37
|
+
*terms: str,
|
|
38
|
+
params: dict | None = None,
|
|
39
|
+
sane: bool = True,
|
|
40
|
+
sort: bool = True,
|
|
41
|
+
max_results: int = 50,
|
|
42
|
+
class_: Callable = Path,
|
|
43
|
+
) -> Result:
|
|
44
|
+
"""Search for files."""
|
|
45
|
+
params = dict(
|
|
46
|
+
{"s": " ".join(terms), "path_column": 1, "json": 1, "count": max_results},
|
|
47
|
+
**(params or {}),
|
|
48
|
+
)
|
|
49
|
+
if sane:
|
|
50
|
+
params["s"] += SANE
|
|
51
|
+
if sort:
|
|
52
|
+
params["sort"] = "date_modified"
|
|
53
|
+
params["ascending"] = 0
|
|
54
|
+
res = requests.get(SERVER, params=params, timeout=15)
|
|
55
|
+
return _everything_result(res.json(), class_)
|