spiderforce4ai 1.4__tar.gz → 1.5__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/PKG-INFO +1 -1
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/pyproject.toml +1 -1
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/setup.py +1 -1
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai/__init__.py +14 -6
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai.egg-info/PKG-INFO +1 -1
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/README.md +0 -0
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/setup.cfg +0 -0
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai.egg-info/SOURCES.txt +0 -0
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai.egg-info/dependency_links.txt +0 -0
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai.egg-info/requires.txt +0 -0
- {spiderforce4ai-1.4 → spiderforce4ai-1.5}/spiderforce4ai.egg-info/top_level.txt +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "spiderforce4ai"
|
7
|
-
version = "1.
|
7
|
+
version = "1.5"
|
8
8
|
description = "Python wrapper for SpiderForce4AI HTML-to-Markdown conversion service"
|
9
9
|
readme = "README.md"
|
10
10
|
authors = [{name = "Piotr Tamulewicz", email = "pt@petertam.pro"}]
|
@@ -296,17 +296,25 @@ class SpiderForce4AI:
|
|
296
296
|
|
297
297
|
results.append(result)
|
298
298
|
|
299
|
-
#
|
300
|
-
if config.save_reports:
|
301
|
-
self._save_report_sync(results, config)
|
302
|
-
print(f"\nReport saved to: {config.report_file}")
|
303
|
-
|
304
|
-
# Print summary
|
299
|
+
# Calculate statistics
|
305
300
|
successful = len([r for r in results if r.status == "success"])
|
306
301
|
failed = len([r for r in results if r.status == "failed"])
|
302
|
+
|
303
|
+
# Print summary
|
307
304
|
print(f"\nParallel processing completed:")
|
308
305
|
print(f"✓ Successful: {successful}")
|
309
306
|
print(f"✗ Failed: {failed}")
|
307
|
+
|
308
|
+
# Save report if enabled
|
309
|
+
if config.save_reports and config.report_file:
|
310
|
+
self._retry_stats = {
|
311
|
+
"initial_failures": failed,
|
312
|
+
"failure_ratio": (failed / len(urls)) * 100,
|
313
|
+
"retry_successful": 0, # No retries in server parallel mode
|
314
|
+
"retry_failed": failed
|
315
|
+
}
|
316
|
+
self._save_report_sync(results, config)
|
317
|
+
console.print(f"📊 Report saved to: {config.report_file}")
|
310
318
|
|
311
319
|
return results
|
312
320
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|