spiderforce4ai 1.3__tar.gz → 1.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/PKG-INFO +1 -1
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/pyproject.toml +1 -1
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/setup.py +1 -1
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/spiderforce4ai/__init__.py +21 -10
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/spiderforce4ai.egg-info/PKG-INFO +1 -1
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/README.md +0 -0
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/setup.cfg +0 -0
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/spiderforce4ai.egg-info/SOURCES.txt +0 -0
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/spiderforce4ai.egg-info/dependency_links.txt +0 -0
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/spiderforce4ai.egg-info/requires.txt +0 -0
- {spiderforce4ai-1.3 → spiderforce4ai-1.4}/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.4"
|
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"}]
|
@@ -556,10 +556,7 @@ class SpiderForce4AI:
|
|
556
556
|
else:
|
557
557
|
results = initial_results
|
558
558
|
|
559
|
-
#
|
560
|
-
await self._save_report(config)
|
561
|
-
|
562
|
-
# Calculate final statistics
|
559
|
+
# Calculate final statistics before saving report
|
563
560
|
final_successful = len([r for r in results if r.status == "success"])
|
564
561
|
final_failed = len([r for r in results if r.status == "failed"])
|
565
562
|
|
@@ -575,7 +572,15 @@ class SpiderForce4AI:
|
|
575
572
|
retry_successful = initial_failed - final_failed
|
576
573
|
console.print(f"Retry success rate: {retry_successful}/{initial_failed} ({(retry_successful/initial_failed)*100:.1f}%)")
|
577
574
|
|
578
|
-
|
575
|
+
# Save final report after all retries are complete
|
576
|
+
if config.save_reports:
|
577
|
+
self._retry_stats = {
|
578
|
+
"initial_failures": initial_failed,
|
579
|
+
"failure_ratio": failure_ratio,
|
580
|
+
"retry_successful": retry_successful if initial_failed > 0 else 0,
|
581
|
+
"retry_failed": final_failed
|
582
|
+
}
|
583
|
+
await self._save_report(config)
|
579
584
|
console.print(f"📊 Report saved to: {config.report_file}")
|
580
585
|
|
581
586
|
return results
|
@@ -656,11 +661,6 @@ class SpiderForce4AI:
|
|
656
661
|
status = "✓" if result.status == "success" else "✗"
|
657
662
|
progress.description = f"Last: {status} {result.url}"
|
658
663
|
|
659
|
-
# Save final report
|
660
|
-
if config.report_file:
|
661
|
-
self._save_report_sync(results, config)
|
662
|
-
print(f"\nReport saved to: {config.report_file}")
|
663
|
-
|
664
664
|
# Calculate initial failure statistics
|
665
665
|
failed_results = [r for r in results if r.status == "failed"]
|
666
666
|
initial_failed = len(failed_results)
|
@@ -715,6 +715,17 @@ class SpiderForce4AI:
|
|
715
715
|
retry_successful = initial_failed - final_failed
|
716
716
|
console.print(f"Retry success rate: {retry_successful}/{initial_failed} ({(retry_successful/initial_failed)*100:.1f}%)")
|
717
717
|
|
718
|
+
# Save final report after all retries are complete
|
719
|
+
if config.save_reports:
|
720
|
+
self._retry_stats = {
|
721
|
+
"initial_failures": initial_failed,
|
722
|
+
"failure_ratio": failure_ratio,
|
723
|
+
"retry_successful": retry_successful if initial_failed > 0 else 0,
|
724
|
+
"retry_failed": final_failed
|
725
|
+
}
|
726
|
+
self._save_report_sync(results, config)
|
727
|
+
console.print(f"📊 Report saved to: {config.report_file}")
|
728
|
+
|
718
729
|
return results
|
719
730
|
|
720
731
|
async def __aenter__(self):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|