Created
March 19, 2025 12:30
-
-
Save davepoon/a84430e48db8aeb54775b7f40f852656 to your computer and use it in GitHub Desktop.
a simple firecrawl example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from firecrawl import FireCrawl | |
fc = FireCrawl(api_key='your_api_key') | |
data = fc.scrape(url="https://example.com") | |
markdown_data = data.to_markdown() | |
print(markdown_data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment