You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cmd/batch.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ import (
16
16
17
17
varbatchRetrieve= cli.Command{
18
18
Name: "retrieve",
19
-
Usage: "Check progress and get download links when the batch finishes. Also returns the\nrejected-URL list from submission. The webhook signing secret is not repeated\nhere — it is returned once, by the submit response.",
19
+
Usage: "Check progress, and get download links once the batch finishes.",
20
20
Suggest: true,
21
21
Flags: []cli.Flag{
22
22
&requestflag.Flag[string]{
@@ -88,7 +88,7 @@ var batchCancel = cli.Command{
88
88
89
89
varbatchGetResults= cli.Command{
90
90
Name: "get-results",
91
-
Usage: "Page through the result records of a finished batchas JSON, in the same order\nas the downloadable result files. Use this instead of downloading and parsing\nthe NDJSON files yourself.",
91
+
Usage: "Page through a finished batch's results as JSONinstead of downloading the\nNDJSON files.",
Copy file name to clipboardExpand all lines: pkg/cmd/web.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ var webScreenshot = requestflag.WithInnerFlags(cli.Command{
247
247
},
248
248
&requestflag.Flag[string]{
249
249
Name: "country",
250
-
Usage: "Two-letter ISO 3166-1 alpha-2 country code identifying a supported Context.dev residential proxy exit location. Must be one of Context.dev's supported countries. When provided, Context.dev fetches the target page from that country.",
250
+
Usage: "Fetch the target page through a residential proxy in this country (ISO 3166-1 alpha-2).",
251
251
QueryPath: "country",
252
252
},
253
253
&requestflag.Flag[string]{
@@ -461,7 +461,7 @@ var webWebCrawlMd = requestflag.WithInnerFlags(cli.Command{
461
461
},
462
462
&requestflag.Flag[string]{
463
463
Name: "country",
464
-
Usage: "Two-letter ISO 3166-1 alpha-2 country code identifying a supported Context.dev residential proxy exit location. Must be one of Context.dev's supported countries. When provided, Context.dev fetches the target page from that country.",
464
+
Usage: "Fetch the target page through a residential proxy in this country (ISO 3166-1 alpha-2).",
465
465
BodyPath: "country",
466
466
},
467
467
&requestflag.Flag[[]string]{
@@ -617,7 +617,7 @@ var webWebScrapeHTML = requestflag.WithInnerFlags(cli.Command{
617
617
},
618
618
&requestflag.Flag[string]{
619
619
Name: "country",
620
-
Usage: "Two-letter ISO 3166-1 alpha-2 country code identifying a supported Context.dev residential proxy exit location. Must be one of Context.dev's supported countries. When provided, Context.dev fetches the target page from that country.",
620
+
Usage: "Fetch the target page through a residential proxy in this country (ISO 3166-1 alpha-2).",
621
621
QueryPath: "country",
622
622
},
623
623
&requestflag.Flag[any]{
@@ -813,7 +813,7 @@ var webWebScrapeMd = requestflag.WithInnerFlags(cli.Command{
813
813
},
814
814
&requestflag.Flag[string]{
815
815
Name: "country",
816
-
Usage: "Two-letter ISO 3166-1 alpha-2 country code identifying a supported Context.dev residential proxy exit location. Must be one of Context.dev's supported countries. When provided, Context.dev fetches the target page from that country.",
816
+
Usage: "Fetch the target page through a residential proxy in this country (ISO 3166-1 alpha-2).",
0 commit comments