Skip to content

Commit 470f9e2

Browse files
authored
Merge branch 'main' into pre/beta
2 parents 006a2aa + e721a49 commit 470f9e2

File tree

149 files changed

+1071
-683
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+1071
-683
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cl
1212
polar: # Replace with a single Polar username
1313
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
1414
thanks_dev: # Replace with a single thanks.dev username
15-
custom:
15+
custom:

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ labels: ''
66
assignees: ''
77

88
---
9-
10-

.github/workflows/release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ jobs:
1919
uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.10'
22-
22+
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@v3
25-
25+
2626
- name: Install Node Env
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: 20
30-
30+
3131
- name: Checkout
3232
uses: actions/[email protected]
3333
with:
3434
fetch-depth: 0
3535
persist-credentials: false
36-
36+
3737
- name: Build and validate package
3838
run: |
3939
uv venv
@@ -44,10 +44,10 @@ jobs:
4444
uv build
4545
uv pip install --upgrade pkginfo==1.12.0 twine==6.0.1 # Upgrade pkginfo and install twine
4646
python -m twine check dist/*
47-
47+
4848
- name: Debug Dist Directory
4949
run: ls -al dist
50-
50+
5151
- name: Cache build
5252
uses: actions/cache@v3
5353
with:
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
needs: build
6161
environment: development
62-
if: >
62+
if: >
6363
github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/pre/beta') ||
6464
(github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged &&
6565
(github.event.pull_request.base.ref == 'main' || github.event.pull_request.base.ref == 'pre/beta'))
@@ -74,23 +74,23 @@ jobs:
7474
with:
7575
fetch-depth: 0
7676
persist-credentials: false
77-
77+
7878
- name: Restore build artifacts
7979
uses: actions/cache@v3
8080
with:
8181
path: ./dist
8282
key: ${{ runner.os }}-build-${{ github.sha }}
83-
83+
8484
- name: Semantic Release
8585
uses: cycjimmy/[email protected]
8686
with:
8787
semantic_version: 23
8888
extra_plugins: |
8989
semantic-release-pypi@3
90-
@semantic-release/git
91-
@semantic-release/commit-analyzer@12
92-
@semantic-release/release-notes-generator@13
93-
@semantic-release/github@10
90+
@semantic-release/git
91+
@semantic-release/commit-analyzer@12
92+
@semantic-release/release-notes-generator@13
93+
@semantic-release/github@10
9494
@semantic-release/changelog@6
9595
conventional-changelog-conventionalcommits@7
9696
env:

.readthedocs.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
# Read the Docs configuration file for Sphinx projects
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the OS, Python version and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.12"
13+
# You can also specify other tool versions:
14+
# nodejs: "20"
15+
# rust: "1.70"
16+
# golang: "1.20"
17+
18+
# Build documentation in the "docs/" directory with Sphinx
19+
sphinx:
20+
configuration: docs/conf.py
21+
# You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
22+
# builder: "dirhtml"
23+
# Fail on all warnings to avoid broken references
24+
# fail_on_warning: true
25+
26+
# Optionally build your docs in additional formats such as PDF and ePub
27+
# formats:
28+
# - pdf
29+
# - epub
30+
31+
# Optional but recommended, declare the Python requirements required
32+
# to build your documentation
33+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
34+
# python:
35+
# install:
36+
# - requirements: docs/requirements.txt

.releaserc.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,3 @@ branches:
5353
channel: "dev"
5454
prerelease: "beta"
5555
debug: true
56-

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
## [1.36.1-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.36.0...v1.36.1-beta.1) (2025-01-21)
22

33

4+
45
### Bug Fixes
56

67
* Schema parameter type ([2b5bd80](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/2b5bd80a945a24072e578133eacc751feeec6188))
8+
* search ([ce25b6a](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/ce25b6a4b0e1ea15edf14a5867f6336bb27590cb))
9+
710

811

912
### Docs
1013

14+
15+
* add requirements.dev ([6e12981](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/6e12981e637d078a6d3b3ce83f0d4901e9dd9996))
1116
* added first ollama example ([aa6a76e](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/aa6a76e5bdf63544f62786b0d17effa205aab3d8))
1217

1318
## [1.36.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.35.0...v1.36.0) (2025-01-12)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ RUN pip install --no-cache-dir scrapegraphai
66
RUN pip install --no-cache-dir scrapegraphai[burr]
77

88
RUN python3 -m playwright install-deps
9-
RUN python3 -m playwright install
9+
RUN python3 -m playwright install

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
44

55
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
66

7-
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ The Official API Documentation can be found [here](https://docs.scrapegraphai.co
182182
</a>
183183
</div>
184184

185-
## 📈 Telemetry
185+
## 📈 Telemetry
186186
We collect anonymous usage metrics to enhance our package's quality and user experience. The data helps us prioritize improvements and ensure compatibility. If you wish to opt-out, set the environment variable SCRAPEGRAPHAI_TELEMETRY_ENABLED=false. For more information, please refer to the documentation [here](https://scrapegraph-ai.readthedocs.io/en/latest/scrapers/telemetry.html).
187187

188188

SECURITY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
## Reporting a Vulnerability
44

55
For reporting a vulnerability contact directly [email protected]
6-

0 commit comments

Comments
 (0)