firecrawl 0.0.16__tar.gz → 0.0.19__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.
- {firecrawl-0.0.16 → firecrawl-0.0.19}/PKG-INFO +2 -2
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl/__init__.py +1 -1
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl.egg-info/PKG-INFO +2 -2
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl.egg-info/top_level.txt +0 -1
- {firecrawl-0.0.16 → firecrawl-0.0.19}/setup.py +5 -3
- {firecrawl-0.0.16 → firecrawl-0.0.19}/README.md +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl/firecrawl.py +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/pyproject.toml +0 -0
- {firecrawl-0.0.16 → firecrawl-0.0.19}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: firecrawl
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.19
|
|
4
4
|
Summary: Python SDK for Firecrawl API
|
|
5
5
|
Home-page: https://github.com/mendableai/firecrawl
|
|
6
6
|
Author: Mendable.ai
|
|
@@ -30,7 +30,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
30
30
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
31
31
|
Classifier: Topic :: Text Processing
|
|
32
32
|
Classifier: Topic :: Text Processing :: Indexing
|
|
33
|
-
Requires-Python: >=3.
|
|
33
|
+
Requires-Python: >=3.7
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
Requires-Dist: requests
|
|
36
36
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: firecrawl
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.19
|
|
4
4
|
Summary: Python SDK for Firecrawl API
|
|
5
5
|
Home-page: https://github.com/mendableai/firecrawl
|
|
6
6
|
Author: Mendable.ai
|
|
@@ -30,7 +30,7 @@ Classifier: Topic :: Software Development :: Libraries
|
|
|
30
30
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
31
31
|
Classifier: Topic :: Text Processing
|
|
32
32
|
Classifier: Topic :: Text Processing :: Indexing
|
|
33
|
-
Requires-Python: >=3.
|
|
33
|
+
Requires-Python: >=3.7
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
Requires-Dist: requests
|
|
36
36
|
|
|
@@ -16,7 +16,9 @@ def get_version():
|
|
|
16
16
|
raise RuntimeError("Unable to find version string.")
|
|
17
17
|
|
|
18
18
|
|
|
19
|
+
|
|
19
20
|
setup(
|
|
21
|
+
# This name is modified by build_and_publish.sh to firecrawl or firecrawl-py
|
|
20
22
|
name="firecrawl",
|
|
21
23
|
version=get_version(),
|
|
22
24
|
url="https://github.com/mendableai/firecrawl",
|
|
@@ -29,9 +31,9 @@ setup(
|
|
|
29
31
|
install_requires=[
|
|
30
32
|
'requests',
|
|
31
33
|
'pytest',
|
|
32
|
-
'python-dotenv'
|
|
34
|
+
'python-dotenv'
|
|
33
35
|
],
|
|
34
|
-
python_requires=">=3.
|
|
36
|
+
python_requires=">=3.7",
|
|
35
37
|
classifiers=[
|
|
36
38
|
"Development Status :: 5 - Production/Stable",
|
|
37
39
|
"Environment :: Web Environment",
|
|
@@ -60,4 +62,4 @@ setup(
|
|
|
60
62
|
"Tracker": "https://github.com/mendableai/firecrawl/issues",
|
|
61
63
|
},
|
|
62
64
|
license="GNU General Public License v3 (GPLv3)",
|
|
63
|
-
)
|
|
65
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|