mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
fix(py-sdk): removed asyncio package
tested websocket with example.py without asyncio and it works with no problem.
This commit is contained in:
parent
1074e976cd
commit
ee8a54213c
|
@ -13,7 +13,6 @@ import logging
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
from typing import Any, Dict, Optional, List
|
from typing import Any, Dict, Optional, List
|
||||||
import asyncio
|
|
||||||
import json
|
import json
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
|
|
@ -12,8 +12,7 @@ dependencies = [
|
||||||
"requests",
|
"requests",
|
||||||
"python-dotenv",
|
"python-dotenv",
|
||||||
"websockets",
|
"websockets",
|
||||||
"asyncio",
|
"nest-asyncio"
|
||||||
"nest-asyncio"
|
|
||||||
]
|
]
|
||||||
authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
||||||
maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
|
||||||
|
|
|
@ -2,5 +2,4 @@ requests
|
||||||
pytest
|
pytest
|
||||||
python-dotenv
|
python-dotenv
|
||||||
websockets
|
websockets
|
||||||
asyncio
|
|
||||||
nest-asyncio
|
nest-asyncio
|
Loading…
Reference in New Issue
Block a user