Skip to content

Commit b3671c2

Browse files
chore: update SDK settings
1 parent 97854ff commit b3671c2

Some content is hidden

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

60 files changed

+240
-162
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.1"
3+
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 15
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/scrapegraphai%2Fscrapegraphai-969ebada41127057e4cda129b2e7206224743b5c7fd33aa8ae062ff71b775ac9.yml
33
openapi_spec_hash: 2b2c2c684e6f6885398efca5f2b1f854
4-
config_hash: 938d01575f4400810a85576c6324f29d
4+
config_hash: 902a011baea415037e1fe6ba11b90b3f

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To use a local version of this library from source in another project, edit the
4141
directive. This can be done through the CLI with the following:
4242

4343
```sh
44-
$ go mod edit -replace github.com/stainless-sdks/scrapegraphai-go=/path/to/scrapegraphai-go
44+
$ go mod edit -replace github.com/ScrapeGraphAI/scrapegraphai-go=/path/to/scrapegraphai-go
4545
```
4646

4747
## Running tests

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scrapegraphai Go API Library
22

3-
<a href="https://pkg.go.dev/github.com/stainless-sdks/scrapegraphai-go"><img src="https://pkg.go.dev/badge/github.com/stainless-sdks/scrapegraphai-go.svg" alt="Go Reference"></a>
3+
<a href="https://pkg.go.dev/github.com/ScrapeGraphAI/scrapegraphai-go"><img src="https://pkg.go.dev/badge/github.com/ScrapeGraphAI/scrapegraphai-go.svg" alt="Go Reference"></a>
44

55
The Scrapegraphai Go library provides convenient access to the [Scrapegraphai REST API](https://scrapegraphai.com)
66
from applications written in Go.
@@ -9,18 +9,26 @@ It is generated with [Stainless](https://www.stainless.com/).
99

1010
## Installation
1111

12+
<!-- x-release-please-start-version -->
13+
1214
```go
1315
import (
14-
"github.com/stainless-sdks/scrapegraphai-go" // imported as scrapegraphai
16+
"github.com/ScrapeGraphAI/scrapegraphai-go" // imported as scrapegraphai
1517
)
1618
```
1719

20+
<!-- x-release-please-end -->
21+
1822
Or to pin the version:
1923

24+
<!-- x-release-please-start-version -->
25+
2026
```sh
21-
go get -u 'github.com/stainless-sdks/[email protected]'
27+
go get -u 'github.com/ScrapeGraphAI/[email protected]'
2228
```
2329

30+
<!-- x-release-please-end -->
31+
2432
## Requirements
2533

2634
This library requires Go 1.18+.
@@ -36,8 +44,8 @@ import (
3644
"context"
3745
"fmt"
3846

39-
"github.com/stainless-sdks/scrapegraphai-go"
40-
"github.com/stainless-sdks/scrapegraphai-go/option"
47+
"github.com/ScrapeGraphAI/scrapegraphai-go"
48+
"github.com/ScrapeGraphAI/scrapegraphai-go/option"
4149
)
4250

4351
func main() {
@@ -267,7 +275,7 @@ client.Smartscraper.New(context.TODO(), ...,
267275

268276
The request option `option.WithDebugLog(nil)` may be helpful while debugging.
269277

270-
See the [full list of request options](https://pkg.go.dev/github.com/stainless-sdks/scrapegraphai-go/option).
278+
See the [full list of request options](https://pkg.go.dev/github.com/ScrapeGraphAI/scrapegraphai-go/option).
271279

272280
### Pagination
273281

@@ -481,7 +489,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
481489

482490
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
483491

484-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/scrapegraphai-go/issues) with questions, bugs, or suggestions.
492+
We are keen for your feedback; please open an [issue](https://www.github.com/ScrapeGraphAI/scrapegraphai-go/issues) with questions, bugs, or suggestions.
485493

486494
## Contributing
487495

aliases.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package scrapegraphai
44

55
import (
6-
"github.com/stainless-sdks/scrapegraphai-go/internal/apierror"
7-
"github.com/stainless-sdks/scrapegraphai-go/packages/param"
6+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal/apierror"
7+
"github.com/ScrapeGraphAI/scrapegraphai-go/packages/param"
88
)
99

1010
// aliased to make [param.APIUnion] private when embedding

api.md

Lines changed: 31 additions & 31 deletions
Large diffs are not rendered by default.

client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"net/http"
88
"os"
99

10-
"github.com/stainless-sdks/scrapegraphai-go/internal/requestconfig"
11-
"github.com/stainless-sdks/scrapegraphai-go/option"
10+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal/requestconfig"
11+
"github.com/ScrapeGraphAI/scrapegraphai-go/option"
1212
)
1313

1414
// Client creates a struct with services and top level methods that help with

client_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/stainless-sdks/scrapegraphai-go"
14-
"github.com/stainless-sdks/scrapegraphai-go/internal"
15-
"github.com/stainless-sdks/scrapegraphai-go/option"
13+
"github.com/ScrapeGraphAI/scrapegraphai-go"
14+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal"
15+
"github.com/ScrapeGraphAI/scrapegraphai-go/option"
1616
)
1717

1818
type closureTransport struct {

crawl.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"fmt"
99
"net/http"
1010

11-
"github.com/stainless-sdks/scrapegraphai-go/internal/apijson"
12-
"github.com/stainless-sdks/scrapegraphai-go/internal/requestconfig"
13-
"github.com/stainless-sdks/scrapegraphai-go/option"
14-
"github.com/stainless-sdks/scrapegraphai-go/packages/param"
15-
"github.com/stainless-sdks/scrapegraphai-go/packages/respjson"
11+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal/apijson"
12+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal/requestconfig"
13+
"github.com/ScrapeGraphAI/scrapegraphai-go/option"
14+
"github.com/ScrapeGraphAI/scrapegraphai-go/packages/param"
15+
"github.com/ScrapeGraphAI/scrapegraphai-go/packages/respjson"
1616
)
1717

1818
// CrawlService contains methods and other services that help with interacting with

crawl_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/stainless-sdks/scrapegraphai-go"
12-
"github.com/stainless-sdks/scrapegraphai-go/internal/testutil"
13-
"github.com/stainless-sdks/scrapegraphai-go/option"
11+
"github.com/ScrapeGraphAI/scrapegraphai-go"
12+
"github.com/ScrapeGraphAI/scrapegraphai-go/internal/testutil"
13+
"github.com/ScrapeGraphAI/scrapegraphai-go/option"
1414
)
1515

1616
func TestCrawlGetResults(t *testing.T) {

0 commit comments

Comments
 (0)