python-table-processor 0.3.10__tar.gz → 0.3.11__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.
Files changed (23) hide show
  1. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/PKG-INFO +1 -1
  2. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/pyproject.toml +1 -1
  3. python_table_processor-0.3.11/table_processor/__init__.py +2 -0
  4. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/convert.py +1 -1
  5. python_table_processor-0.3.10/table_processor/__init__.py +0 -2
  6. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/LICENSE +0 -0
  7. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/README.md +0 -0
  8. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/cli.py +0 -0
  9. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/commands/convert_tables.py +0 -0
  10. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/commands/merge_tables.py +0 -0
  11. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/actions.py +0 -0
  12. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/config.py +0 -0
  13. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/constants.py +0 -0
  14. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/assign_id.py +0 -0
  15. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/flatten_row.py +0 -0
  16. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/get_nested_field_value.py +0 -0
  17. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/nest_row.py +0 -0
  18. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/search_column_value.py +0 -0
  19. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/set_flat_field_value.py +0 -0
  20. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/set_nested_field_value.py +0 -0
  21. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/functions/set_row_value.py +0 -0
  22. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/merge.py +0 -0
  23. {python_table_processor-0.3.10 → python_table_processor-0.3.11}/table_processor/core/types.py +0 -0
@@ -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,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-table-processor"
3
- version = "0.3.10"
3
+ version = "0.3.11"
4
4
  description = "A table data processor"
5
5
  authors = ["Akiva Miura <akiva.miura@gmail.com>"]
6
6
  license = "MIT"
@@ -0,0 +1,2 @@
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)
@@ -1,2 +0,0 @@
1
- __version__ = "0.3.10"
2
- __version_tuple__ = (0, 3, 10)