python-table-processor 0.3.10__py3-none-any.whl → 0.3.11__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-table-processor
3
- Version: 0.3.10
3
+ Version: 0.3.11
4
4
  Summary: A table data processor
5
5
  Home-page: https://github.com/akivajp/python-table-processor
6
6
  License: MIT
@@ -1,11 +1,11 @@
1
- table_processor/__init__.py,sha256=mwLX0OVEDStzXhj4fEvyizEu7Ky92pbEm-V4v6LU4Po,54
1
+ table_processor/__init__.py,sha256=VGVBf0Tvu9kKvvklW4UI-fweoMZobinpwjqSjD7Hm30,54
2
2
  table_processor/cli.py,sha256=uluf_VsBzq3Ldxh3ePGseSrv8--lI7huu-6RjDaHPPg,2170
3
3
  table_processor/commands/convert_tables.py,sha256=w4IZftSlrbt-BMPjldULT_616LSiNE3h7GmrFF7K5OM,2276
4
4
  table_processor/commands/merge_tables.py,sha256=fIk3e-Qbdj3QtOXetC4ItbJs9NfBHVsraRhdfnpy2RQ,2194
5
5
  table_processor/core/actions.py,sha256=3yjSW1CKXPn49BNHx0HbjkU5gp8266s5iun57snXqlc,23815
6
6
  table_processor/core/config.py,sha256=Z1s2r3y4oQXdbDCwIY_hYzoq6VRv7Sb3oUlfBCu13Lc,11646
7
7
  table_processor/core/constants.py,sha256=w-1TxtpXywb6Qh8M4YWuzcCHUvCjy5zJYxaXC3RQS6A,158
8
- table_processor/core/convert.py,sha256=dzGcpBwJ5omiE8Pw-VmHnGoOqDyh1Rip6BiLdvdf3V8,11561
8
+ table_processor/core/convert.py,sha256=yF_ypp0WCdyavhLldP_dQE9aw9Bm5bS8DQgsCQTTT2E,11562
9
9
  table_processor/core/functions/assign_id.py,sha256=dA-wgZA7E01gbx8qGvo1PeMd3aq9PhMdyITzr3BKXIE,4204
10
10
  table_processor/core/functions/flatten_row.py,sha256=2l-s4YXgBM58IthpfVzd7L4EGUCekSi7ss5CaM_3MUU,686
11
11
  table_processor/core/functions/get_nested_field_value.py,sha256=ZEJi8XtDONoYmhPoqYpVZRGtEWvsfAksV4FXtkMAaq8,946
@@ -16,8 +16,8 @@ table_processor/core/functions/set_nested_field_value.py,sha256=351AoyL8-dT9I4eB
16
16
  table_processor/core/functions/set_row_value.py,sha256=wlF_nVGZY74XCzd6pBJJyti62m6y0s1kc5Q6uq9jn8o,641
17
17
  table_processor/core/merge.py,sha256=gcMQ5LgBssGBZ0CuSPN0ddslNuLznxwh024kRiGOFLM,5800
18
18
  table_processor/core/types.py,sha256=76Fn1PQgO03Swe7E_zFLjusbQ6w9sfxzsL08uHS21hE,2919
19
- python_table_processor-0.3.10.dist-info/LICENSE,sha256=1_Gn0I1neLPxDLfLiHEyxjDg-pbAra1p2iHEqutGS_c,1068
20
- python_table_processor-0.3.10.dist-info/METADATA,sha256=GUxul_rcnJRWI90S6InJPJkjS5JC9xFzfBXeeRVEkMg,1099
21
- python_table_processor-0.3.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
22
- python_table_processor-0.3.10.dist-info/entry_points.txt,sha256=lq97F6m51yZ93qmVIqkUHJfbILZuYLxrMWXSqrP4JpM,118
23
- python_table_processor-0.3.10.dist-info/RECORD,,
19
+ python_table_processor-0.3.11.dist-info/LICENSE,sha256=1_Gn0I1neLPxDLfLiHEyxjDg-pbAra1p2iHEqutGS_c,1068
20
+ python_table_processor-0.3.11.dist-info/METADATA,sha256=scfDAfEQ1Gm7-BmJgJEC_XeGzjGAP87OmyQV5aADoko,1099
21
+ python_table_processor-0.3.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
22
+ python_table_processor-0.3.11.dist-info/entry_points.txt,sha256=lq97F6m51yZ93qmVIqkUHJfbILZuYLxrMWXSqrP4JpM,118
23
+ python_table_processor-0.3.11.dist-info/RECORD,,
@@ -1,2 +1,2 @@
1
- __version__ = "0.3.10"
2
- __version_tuple__ = (0, 3, 10)
1
+ __version__ = "0.3.11"
2
+ __version_tuple__ = (0, 3, 11)
@@ -391,7 +391,7 @@ def convert(
391
391
  #ic(all_df.columns)
392
392
  #ic(all_df.iloc[0])
393
393
  if output_file:
394
- ic('Saing to: ', output_file)
394
+ ic('Saving to: ', output_file)
395
395
  saver(all_df, output_file)
396
396
  else:
397
397
  ic(all_df)