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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: spiderforce4ai
3
- Version: 1.3
3
+ Version: 1.4
4
4
  Summary: Python wrapper for SpiderForce4AI HTML-to-Markdown conversion service
5
5
  Home-page: https://petertam.pro
6
6
  Author: Piotr Tamulewicz
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "spiderforce4ai"
7
- version = "1.3"
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"}]
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
3
 
4
4
  setup(
5
5
  name="spiderforce4ai",
6
- version="1.3",
6
+ version="1.4",
7
7
  author="Piotr Tamulewicz",
8
8
  author_email="pt@petertam.pro",
9
9
  description="Python wrapper for SpiderForce4AI HTML-to-Markdown conversion service",
@@ -556,10 +556,7 @@ class SpiderForce4AI:
556
556
  else:
557
557
  results = initial_results
558
558
 
559
- # Save final report
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
- if config.report_file:
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):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: spiderforce4ai
3
- Version: 1.3
3
+ Version: 1.4
4
4
  Summary: Python wrapper for SpiderForce4AI HTML-to-Markdown conversion service
5
5
  Home-page: https://petertam.pro
6
6
  Author: Piotr Tamulewicz
File without changes
File without changes