checkup 0.2.2__tar.gz → 0.2.4__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. {checkup-0.2.2 → checkup-0.2.4}/PKG-INFO +1 -1
  2. {checkup-0.2.2 → checkup-0.2.4}/pyproject.toml +1 -1
  3. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/database.py +3 -2
  4. {checkup-0.2.2 → checkup-0.2.4}/README.md +0 -0
  5. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/__init__.py +0 -0
  6. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/config.py +0 -0
  7. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/errors.py +0 -0
  8. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/executor.py +0 -0
  9. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/graph.py +0 -0
  10. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/hub.py +0 -0
  11. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/__init__.py +0 -0
  12. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/base.py +0 -0
  13. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/console.py +0 -0
  14. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/csv_file.py +0 -0
  15. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/materializers/html_report.py +0 -0
  16. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/metric.py +0 -0
  17. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/provider.py +0 -0
  18. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/providers/__init__.py +0 -0
  19. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/providers/tags.py +0 -0
  20. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/templates/metrics_report.html +0 -0
  21. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/types.py +0 -0
  22. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/utils.py +0 -0
  23. {checkup-0.2.2 → checkup-0.2.4}/src/checkup/validators.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: checkup
3
- Version: 0.2.2
3
+ Version: 0.2.4
4
4
  Summary: Add your description here
5
5
  Author: Jan Vanbuel
6
6
  Author-email: Jan Vanbuel <jan.vanbuel@ond.vlaanderen.be>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "checkup"
3
- version = "0.2.2"
3
+ version = "0.2.4"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Jan Vanbuel", email = "jan.vanbuel@ond.vlaanderen.be" }]
@@ -114,7 +114,8 @@ class SQLAlchemyMaterializer(Materializer):
114
114
  )
115
115
  rows.append(row)
116
116
 
117
- with engine.begin() as conn:
117
+ with engine.connect() as conn:
118
118
  for i in range(0, len(rows), self.batch_size):
119
119
  batch = rows[i : i + self.batch_size]
120
- conn.execute(insert(table), batch)
120
+ conn.execute(insert(table).values(batch))
121
+ conn.commit()
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes