fraudcrawler 0.5.0__tar.gz → 0.5.2__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 (21) hide show
  1. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/PKG-INFO +1 -1
  2. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/scraping/search.py +5 -5
  3. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/pyproject.toml +1 -1
  4. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/LICENSE +0 -0
  5. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/README.md +0 -0
  6. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/__init__.py +0 -0
  7. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/__init__.py +0 -0
  8. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/base.py +0 -0
  9. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/client.py +0 -0
  10. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/google-languages.json +0 -0
  11. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/google-locations.json +0 -0
  12. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/orchestrator.py +0 -0
  13. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/base/retry.py +0 -0
  14. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/launch_demo_pipeline.py +0 -0
  15. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/processing/__init__.py +0 -0
  16. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/processing/processor.py +0 -0
  17. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/scraping/__init__.py +0 -0
  18. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/scraping/enrich.py +0 -0
  19. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/scraping/url.py +0 -0
  20. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/scraping/zyte.py +0 -0
  21. {fraudcrawler-0.5.0 → fraudcrawler-0.5.2}/fraudcrawler/settings.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fraudcrawler
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Intelligent Market Monitoring
5
5
  Home-page: https://github.com/open-veanu/fraudcrawler
6
6
  License: MIT
@@ -29,9 +29,9 @@ class SearchResult(BaseModel):
29
29
  class SearchEngineName(Enum):
30
30
  """Enum for search engine names."""
31
31
 
32
- GOOGLE = "google"
33
- GOOGLE_SHOPPING = "google_shopping"
34
- TOPPREISE = "toppreise"
32
+ GOOGLE = "Google"
33
+ GOOGLE_SHOPPING = "Google Shopping"
34
+ TOPPREISE = "Toppreise"
35
35
 
36
36
 
37
37
  class SearchEngine(ABC, DomainUtils):
@@ -232,7 +232,7 @@ class SerpAPIGoogle(SerpAPI):
232
232
  @property
233
233
  def _engine(self) -> str:
234
234
  """The search engine name used in the SerpAPI request."""
235
- return "google"
235
+ return "Google"
236
236
 
237
237
  @staticmethod
238
238
  def _extract_search_results_urls(data: dict) -> List[str]:
@@ -305,7 +305,7 @@ class SerpAPIGoogleShopping(SerpAPI):
305
305
  @property
306
306
  def _engine(self) -> str:
307
307
  """The search engine name used in the SerpAPI request."""
308
- return "google_shopping"
308
+ return "Google Shopping"
309
309
 
310
310
  @staticmethod
311
311
  def _extract_search_results_urls(data: dict) -> List[str]:
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "fraudcrawler"
7
- version = "0.5.0"
7
+ version = "0.5.2"
8
8
  description = "Intelligent Market Monitoring"
9
9
  authors = [
10
10
  "Domingo Bertus <hello@veanu.ch>",
File without changes
File without changes