pyfastexcel 0.1.2__tar.gz → 0.1.3__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 (22) hide show
  1. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/PKG-INFO +1 -1
  2. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/pyfastexcel.dll +0 -0
  3. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/pyfastexcel.so +0 -0
  4. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/writer.py +3 -5
  5. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/PKG-INFO +1 -1
  6. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/setup.cfg +1 -1
  7. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/LICENSE +0 -0
  8. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/README.md +0 -0
  9. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/__init__.py +0 -0
  10. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/_typing.py +0 -0
  11. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/driver.py +0 -0
  12. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/logformatter.py +0 -0
  13. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/style.py +0 -0
  14. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/utils.py +0 -0
  15. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/workbook.py +0 -0
  16. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel/worksheet.py +0 -0
  17. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/SOURCES.txt +0 -0
  18. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/dependency_links.txt +0 -0
  19. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/not-zip-safe +0 -0
  20. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/requires.txt +0 -0
  21. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/pyfastexcel.egg-info/top_level.txt +0 -0
  22. {pyfastexcel-0.1.2 → pyfastexcel-0.1.3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyfastexcel
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: High performace excel file generation library.
5
5
  Home-page: https://github.com/Zncl2222/pyfastexcel
6
6
  Author: Zncl2222
@@ -133,14 +133,12 @@ class StreamWriter(Workbook):
133
133
  elif isinstance(style, str):
134
134
  style = self._handle_string_style(style, kwargs)
135
135
 
136
+ value = tuple((validate_and_format_value(x, set_default_style=False), style) for x in value)
137
+
136
138
  if create_row:
137
- value = tuple(
138
- (validate_and_format_value(x, set_default_style=False), style) for x in value
139
- )
140
139
  self.workbook[self.sheet].data.append(value)
141
140
  else:
142
- value = validate_and_format_value(value, set_default_style=False)
143
- self._row_list.append((value, style))
141
+ self._row_list.extend(value)
144
142
 
145
143
  def create_row(self):
146
144
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyfastexcel
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: High performace excel file generation library.
5
5
  Home-page: https://github.com/Zncl2222/pyfastexcel
6
6
  Author: Zncl2222
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pyfastexcel
3
- version = 0.1.2
3
+ version = 0.1.3
4
4
  description = High performace excel file generation library.
5
5
  long_description = file: README.md
6
6
  long_description_content_type = text/markdown
File without changes
File without changes
File without changes