sparrow-parse 0.2.5__tar.gz → 0.2.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: sparrow-parse
3
- Version: 0.2.5
3
+ Version: 0.2.6
4
4
  Summary: Sparrow Parse is a Python package for parsing and extracting information from documents.
5
5
  Home-page: https://github.com/katanaml/sparrow/tree/main/sparrow-data/parse
6
6
  License: GPL-3.0
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "sparrow-parse"
3
- version = "0.2.5"
3
+ version = "0.2.6"
4
4
  description = "Sparrow Parse is a Python package for parsing and extracting information from documents."
5
5
  authors = ["Andrej Baranovskij <andrejus.baranovskis@gmail.com>"]
6
6
  license = "GPL-3.0"
@@ -0,0 +1 @@
1
+ __version__ = '0.2.6'
@@ -24,7 +24,7 @@ class HTMLExtractor(object):
24
24
 
25
25
  json_result, targets_unprocessed = self.read_data_from_table(target_columns, table, column_keywords,
26
26
  group_by_rows, local, debug)
27
- answer = self.add_answer_section(answer, "items" + str(i), json_result)
27
+ answer = self.add_answer_section(answer, "items" + str(i + 1), json_result)
28
28
 
29
29
  if update_targets:
30
30
  target_columns = targets_unprocessed
@@ -1 +0,0 @@
1
- __version__ = '0.2.5'
File without changes