firecrawl 2.4.2__tar.gz → 2.4.3__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.

Potentially problematic release.


This version of firecrawl might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 2.4.2
3
+ Version: 2.4.3
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -40,13 +40,13 @@ Requires-Dist: nest-asyncio
40
40
  Requires-Dist: pydantic
41
41
  Requires-Dist: aiohttp
42
42
 
43
- # Firecrawl SDK
43
+ # Firecrawl Python SDK
44
44
 
45
- > Firecrawl SDK is a wrapper around the Firecrawl API to help you easily turn websites into markdown.
45
+ The Firecrawl Python SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
46
46
 
47
47
  ## Installation
48
48
 
49
- To install the Firecrawl SDK, you can use pip:
49
+ To install the Firecrawl Python SDK, you can use pip:
50
50
 
51
51
  ```bash
52
52
  pip install firecrawl-py
@@ -60,16 +60,16 @@ pip install firecrawl-py
60
60
  Here's an example of how to use the SDK:
61
61
 
62
62
  ```python
63
- from firecrawl import FirecrawlApp
63
+ from firecrawl import FirecrawlApp, ScrapeOptions
64
64
 
65
65
  app = FirecrawlApp(api_key="fc-YOUR_API_KEY")
66
66
 
67
67
  # Scrape a website:
68
- scrape_status = app.scrape_url(
68
+ data = app.scrape_url(
69
69
  'https://firecrawl.dev',
70
70
  formats=['markdown', 'html']
71
71
  )
72
- print(scrape_status)
72
+ print(data)
73
73
 
74
74
  # Crawl a website:
75
75
  crawl_status = app.crawl_url(
@@ -1,10 +1,10 @@
1
- # Firecrawl SDK
1
+ # Firecrawl Python SDK
2
2
 
3
- > Firecrawl SDK is a wrapper around the Firecrawl API to help you easily turn websites into markdown.
3
+ The Firecrawl Python SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
4
4
 
5
5
  ## Installation
6
6
 
7
- To install the Firecrawl SDK, you can use pip:
7
+ To install the Firecrawl Python SDK, you can use pip:
8
8
 
9
9
  ```bash
10
10
  pip install firecrawl-py
@@ -18,16 +18,16 @@ pip install firecrawl-py
18
18
  Here's an example of how to use the SDK:
19
19
 
20
20
  ```python
21
- from firecrawl import FirecrawlApp
21
+ from firecrawl import FirecrawlApp, ScrapeOptions
22
22
 
23
23
  app = FirecrawlApp(api_key="fc-YOUR_API_KEY")
24
24
 
25
25
  # Scrape a website:
26
- scrape_status = app.scrape_url(
26
+ data = app.scrape_url(
27
27
  'https://firecrawl.dev',
28
28
  formats=['markdown', 'html']
29
29
  )
30
- print(scrape_status)
30
+ print(data)
31
31
 
32
32
  # Crawl a website:
33
33
  crawl_status = app.crawl_url(
@@ -13,7 +13,7 @@ import os
13
13
 
14
14
  from .firecrawl import FirecrawlApp, JsonConfig, ScrapeOptions # noqa
15
15
 
16
- __version__ = "2.4.2"
16
+ __version__ = "2.4.3"
17
17
 
18
18
  # Define the logger for the Firecrawl project
19
19
  logger: logging.Logger = logging.getLogger("firecrawl")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 2.4.2
3
+ Version: 2.4.3
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -40,13 +40,13 @@ Requires-Dist: nest-asyncio
40
40
  Requires-Dist: pydantic
41
41
  Requires-Dist: aiohttp
42
42
 
43
- # Firecrawl SDK
43
+ # Firecrawl Python SDK
44
44
 
45
- > Firecrawl SDK is a wrapper around the Firecrawl API to help you easily turn websites into markdown.
45
+ The Firecrawl Python SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
46
46
 
47
47
  ## Installation
48
48
 
49
- To install the Firecrawl SDK, you can use pip:
49
+ To install the Firecrawl Python SDK, you can use pip:
50
50
 
51
51
  ```bash
52
52
  pip install firecrawl-py
@@ -60,16 +60,16 @@ pip install firecrawl-py
60
60
  Here's an example of how to use the SDK:
61
61
 
62
62
  ```python
63
- from firecrawl import FirecrawlApp
63
+ from firecrawl import FirecrawlApp, ScrapeOptions
64
64
 
65
65
  app = FirecrawlApp(api_key="fc-YOUR_API_KEY")
66
66
 
67
67
  # Scrape a website:
68
- scrape_status = app.scrape_url(
68
+ data = app.scrape_url(
69
69
  'https://firecrawl.dev',
70
70
  formats=['markdown', 'html']
71
71
  )
72
- print(scrape_status)
72
+ print(data)
73
73
 
74
74
  # Crawl a website:
75
75
  crawl_status = app.crawl_url(
File without changes
File without changes
File without changes
File without changes