@sovovs/bycli 2.1.36 → 2.1.38
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.
- package/README.md +22 -0
- package/README.zh-CN.md +21 -0
- package/cli-manifest.json +642 -0
- package/clis/52pojie/search.js +32 -0
- package/clis/baidu/search.js +68 -0
- package/clis/bing/search.js +58 -0
- package/clis/csdn/search.js +34 -0
- package/clis/gitlab/search.js +36 -0
- package/clis/so/search.js +36 -0
- package/clis/sogou/search.js +35 -0
- package/clis/threads/search.js +33 -0
- package/clis/toutiao/search.js +63 -0
- package/clis/toutiao/utils.js +110 -1
- package/clis/yandex/search.js +43 -0
- package/package.json +1 -1
package/cli-manifest.json
CHANGED
|
@@ -1177,6 +1177,66 @@
|
|
|
1177
1177
|
"sourceFile": "51job/search.js",
|
|
1178
1178
|
"navigateBefore": false
|
|
1179
1179
|
},
|
|
1180
|
+
{
|
|
1181
|
+
"site": "52pojie",
|
|
1182
|
+
"name": "search",
|
|
1183
|
+
"description": "Search 52pojie",
|
|
1184
|
+
"access": "read",
|
|
1185
|
+
"domain": "www.52pojie.cn",
|
|
1186
|
+
"strategy": "public",
|
|
1187
|
+
"browser": true,
|
|
1188
|
+
"args": [
|
|
1189
|
+
{
|
|
1190
|
+
"name": "keyword",
|
|
1191
|
+
"type": "str",
|
|
1192
|
+
"required": true,
|
|
1193
|
+
"positional": true,
|
|
1194
|
+
"help": "Search query"
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"name": "limit",
|
|
1198
|
+
"type": "int",
|
|
1199
|
+
"default": 10,
|
|
1200
|
+
"required": false,
|
|
1201
|
+
"help": "Number of threads (1-50)"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"name": "page",
|
|
1205
|
+
"type": "int",
|
|
1206
|
+
"default": 1,
|
|
1207
|
+
"required": false,
|
|
1208
|
+
"help": "Result page number"
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"name": "section",
|
|
1212
|
+
"type": "str",
|
|
1213
|
+
"required": false,
|
|
1214
|
+
"help": "Forum section identifier"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "sort",
|
|
1218
|
+
"type": "str",
|
|
1219
|
+
"required": false,
|
|
1220
|
+
"help": "Sort order: relevance, latest, replies, views"
|
|
1221
|
+
}
|
|
1222
|
+
],
|
|
1223
|
+
"columns": [
|
|
1224
|
+
"rank",
|
|
1225
|
+
"title",
|
|
1226
|
+
"url",
|
|
1227
|
+
"snippet",
|
|
1228
|
+
"displayUrl",
|
|
1229
|
+
"source",
|
|
1230
|
+
"resultType",
|
|
1231
|
+
"author",
|
|
1232
|
+
"publishedAt",
|
|
1233
|
+
"score",
|
|
1234
|
+
"extra"
|
|
1235
|
+
],
|
|
1236
|
+
"type": "js",
|
|
1237
|
+
"modulePath": "52pojie/search.js",
|
|
1238
|
+
"sourceFile": "52pojie/search.js"
|
|
1239
|
+
},
|
|
1180
1240
|
{
|
|
1181
1241
|
"site": "aibase",
|
|
1182
1242
|
"name": "news",
|
|
@@ -1855,6 +1915,78 @@
|
|
|
1855
1915
|
"modulePath": "arxiv/search.js",
|
|
1856
1916
|
"sourceFile": "arxiv/search.js"
|
|
1857
1917
|
},
|
|
1918
|
+
{
|
|
1919
|
+
"site": "baidu",
|
|
1920
|
+
"name": "search",
|
|
1921
|
+
"description": "Search Baidu",
|
|
1922
|
+
"access": "read",
|
|
1923
|
+
"domain": "www.baidu.com",
|
|
1924
|
+
"strategy": "public",
|
|
1925
|
+
"browser": true,
|
|
1926
|
+
"args": [
|
|
1927
|
+
{
|
|
1928
|
+
"name": "keyword",
|
|
1929
|
+
"type": "str",
|
|
1930
|
+
"required": true,
|
|
1931
|
+
"positional": true,
|
|
1932
|
+
"help": "Search query"
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"name": "limit",
|
|
1936
|
+
"type": "int",
|
|
1937
|
+
"default": 10,
|
|
1938
|
+
"required": false,
|
|
1939
|
+
"help": "Number of results (1-50)"
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"name": "page",
|
|
1943
|
+
"type": "int",
|
|
1944
|
+
"default": 1,
|
|
1945
|
+
"required": false,
|
|
1946
|
+
"help": "Result page number"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
"name": "site",
|
|
1950
|
+
"type": "str",
|
|
1951
|
+
"required": false,
|
|
1952
|
+
"help": "Restrict results to a domain"
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
"name": "filetype",
|
|
1956
|
+
"type": "str",
|
|
1957
|
+
"required": false,
|
|
1958
|
+
"help": "File type: pdf, doc, xls, ppt, rtf, all"
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"name": "platform",
|
|
1962
|
+
"type": "str",
|
|
1963
|
+
"required": false,
|
|
1964
|
+
"help": "Client platform: pc or mobile"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
"name": "time",
|
|
1968
|
+
"type": "str",
|
|
1969
|
+
"required": false,
|
|
1970
|
+
"help": "Recent time filter understood by Baidu"
|
|
1971
|
+
}
|
|
1972
|
+
],
|
|
1973
|
+
"columns": [
|
|
1974
|
+
"rank",
|
|
1975
|
+
"title",
|
|
1976
|
+
"url",
|
|
1977
|
+
"snippet",
|
|
1978
|
+
"displayUrl",
|
|
1979
|
+
"source",
|
|
1980
|
+
"resultType",
|
|
1981
|
+
"author",
|
|
1982
|
+
"publishedAt",
|
|
1983
|
+
"score",
|
|
1984
|
+
"extra"
|
|
1985
|
+
],
|
|
1986
|
+
"type": "js",
|
|
1987
|
+
"modulePath": "baidu/search.js",
|
|
1988
|
+
"sourceFile": "baidu/search.js"
|
|
1989
|
+
},
|
|
1858
1990
|
{
|
|
1859
1991
|
"site": "baidu-scholar",
|
|
1860
1992
|
"name": "search",
|
|
@@ -3265,6 +3397,78 @@
|
|
|
3265
3397
|
"modulePath": "binance/trades.js",
|
|
3266
3398
|
"sourceFile": "binance/trades.js"
|
|
3267
3399
|
},
|
|
3400
|
+
{
|
|
3401
|
+
"site": "bing",
|
|
3402
|
+
"name": "search",
|
|
3403
|
+
"description": "Search Bing",
|
|
3404
|
+
"access": "read",
|
|
3405
|
+
"domain": "www.bing.com",
|
|
3406
|
+
"strategy": "public",
|
|
3407
|
+
"browser": true,
|
|
3408
|
+
"args": [
|
|
3409
|
+
{
|
|
3410
|
+
"name": "keyword",
|
|
3411
|
+
"type": "str",
|
|
3412
|
+
"required": true,
|
|
3413
|
+
"positional": true,
|
|
3414
|
+
"help": "Search query"
|
|
3415
|
+
},
|
|
3416
|
+
{
|
|
3417
|
+
"name": "limit",
|
|
3418
|
+
"type": "int",
|
|
3419
|
+
"default": 10,
|
|
3420
|
+
"required": false,
|
|
3421
|
+
"help": "Number of results (1-50)"
|
|
3422
|
+
},
|
|
3423
|
+
{
|
|
3424
|
+
"name": "page",
|
|
3425
|
+
"type": "int",
|
|
3426
|
+
"default": 1,
|
|
3427
|
+
"required": false,
|
|
3428
|
+
"help": "Result page number"
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"name": "freshness",
|
|
3432
|
+
"type": "str",
|
|
3433
|
+
"required": false,
|
|
3434
|
+
"help": "Time range: day, week, month, year"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"name": "market",
|
|
3438
|
+
"type": "str",
|
|
3439
|
+
"required": false,
|
|
3440
|
+
"help": "Market code such as en-US or zh-CN"
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "answer",
|
|
3444
|
+
"type": "str",
|
|
3445
|
+
"required": false,
|
|
3446
|
+
"help": "Result scope: web, news, video, images"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"name": "safe",
|
|
3450
|
+
"type": "str",
|
|
3451
|
+
"required": false,
|
|
3452
|
+
"help": "Safe search: off, moderate, strict"
|
|
3453
|
+
}
|
|
3454
|
+
],
|
|
3455
|
+
"columns": [
|
|
3456
|
+
"rank",
|
|
3457
|
+
"title",
|
|
3458
|
+
"url",
|
|
3459
|
+
"snippet",
|
|
3460
|
+
"displayUrl",
|
|
3461
|
+
"source",
|
|
3462
|
+
"resultType",
|
|
3463
|
+
"author",
|
|
3464
|
+
"publishedAt",
|
|
3465
|
+
"score",
|
|
3466
|
+
"extra"
|
|
3467
|
+
],
|
|
3468
|
+
"type": "js",
|
|
3469
|
+
"modulePath": "bing/search.js",
|
|
3470
|
+
"sourceFile": "bing/search.js"
|
|
3471
|
+
},
|
|
3268
3472
|
{
|
|
3269
3473
|
"site": "bloomberg",
|
|
3270
3474
|
"name": "businessweek",
|
|
@@ -6722,6 +6926,72 @@
|
|
|
6722
6926
|
"modulePath": "crates/search.js",
|
|
6723
6927
|
"sourceFile": "crates/search.js"
|
|
6724
6928
|
},
|
|
6929
|
+
{
|
|
6930
|
+
"site": "csdn",
|
|
6931
|
+
"name": "search",
|
|
6932
|
+
"description": "Search CSDN",
|
|
6933
|
+
"access": "read",
|
|
6934
|
+
"domain": "so.csdn.net",
|
|
6935
|
+
"strategy": "public",
|
|
6936
|
+
"browser": true,
|
|
6937
|
+
"args": [
|
|
6938
|
+
{
|
|
6939
|
+
"name": "keyword",
|
|
6940
|
+
"type": "str",
|
|
6941
|
+
"required": true,
|
|
6942
|
+
"positional": true,
|
|
6943
|
+
"help": "Search query"
|
|
6944
|
+
},
|
|
6945
|
+
{
|
|
6946
|
+
"name": "limit",
|
|
6947
|
+
"type": "int",
|
|
6948
|
+
"default": 10,
|
|
6949
|
+
"required": false,
|
|
6950
|
+
"help": "Number of results (1-50)"
|
|
6951
|
+
},
|
|
6952
|
+
{
|
|
6953
|
+
"name": "page",
|
|
6954
|
+
"type": "int",
|
|
6955
|
+
"default": 1,
|
|
6956
|
+
"required": false,
|
|
6957
|
+
"help": "Result page number"
|
|
6958
|
+
},
|
|
6959
|
+
{
|
|
6960
|
+
"name": "content-type",
|
|
6961
|
+
"type": "str",
|
|
6962
|
+
"required": false,
|
|
6963
|
+
"help": "Content type: all, blog, download, course"
|
|
6964
|
+
},
|
|
6965
|
+
{
|
|
6966
|
+
"name": "sort",
|
|
6967
|
+
"type": "str",
|
|
6968
|
+
"required": false,
|
|
6969
|
+
"help": "Sort order: relevance, latest, hot"
|
|
6970
|
+
},
|
|
6971
|
+
{
|
|
6972
|
+
"name": "time",
|
|
6973
|
+
"type": "str",
|
|
6974
|
+
"required": false,
|
|
6975
|
+
"help": "Time range: day, week, month, year"
|
|
6976
|
+
}
|
|
6977
|
+
],
|
|
6978
|
+
"columns": [
|
|
6979
|
+
"rank",
|
|
6980
|
+
"title",
|
|
6981
|
+
"url",
|
|
6982
|
+
"snippet",
|
|
6983
|
+
"displayUrl",
|
|
6984
|
+
"source",
|
|
6985
|
+
"resultType",
|
|
6986
|
+
"author",
|
|
6987
|
+
"publishedAt",
|
|
6988
|
+
"score",
|
|
6989
|
+
"extra"
|
|
6990
|
+
],
|
|
6991
|
+
"type": "js",
|
|
6992
|
+
"modulePath": "csdn/search.js",
|
|
6993
|
+
"sourceFile": "csdn/search.js"
|
|
6994
|
+
},
|
|
6725
6995
|
{
|
|
6726
6996
|
"site": "ctrip",
|
|
6727
6997
|
"name": "flight",
|
|
@@ -11535,6 +11805,72 @@
|
|
|
11535
11805
|
"modulePath": "github/search.js",
|
|
11536
11806
|
"sourceFile": "github/search.js"
|
|
11537
11807
|
},
|
|
11808
|
+
{
|
|
11809
|
+
"site": "gitlab",
|
|
11810
|
+
"name": "search",
|
|
11811
|
+
"description": "Search GitLab",
|
|
11812
|
+
"access": "read",
|
|
11813
|
+
"domain": "gitlab.com",
|
|
11814
|
+
"strategy": "public",
|
|
11815
|
+
"browser": true,
|
|
11816
|
+
"args": [
|
|
11817
|
+
{
|
|
11818
|
+
"name": "keyword",
|
|
11819
|
+
"type": "str",
|
|
11820
|
+
"required": true,
|
|
11821
|
+
"positional": true,
|
|
11822
|
+
"help": "Search query"
|
|
11823
|
+
},
|
|
11824
|
+
{
|
|
11825
|
+
"name": "limit",
|
|
11826
|
+
"type": "int",
|
|
11827
|
+
"default": 10,
|
|
11828
|
+
"required": false,
|
|
11829
|
+
"help": "Number of results (1-50)"
|
|
11830
|
+
},
|
|
11831
|
+
{
|
|
11832
|
+
"name": "page",
|
|
11833
|
+
"type": "int",
|
|
11834
|
+
"default": 1,
|
|
11835
|
+
"required": false,
|
|
11836
|
+
"help": "Result page number"
|
|
11837
|
+
},
|
|
11838
|
+
{
|
|
11839
|
+
"name": "scope",
|
|
11840
|
+
"type": "str",
|
|
11841
|
+
"required": false,
|
|
11842
|
+
"help": "Search scope: projects, issues, merge_requests, commits, blobs, users"
|
|
11843
|
+
},
|
|
11844
|
+
{
|
|
11845
|
+
"name": "order-by",
|
|
11846
|
+
"type": "str",
|
|
11847
|
+
"required": false,
|
|
11848
|
+
"help": "Order by: created_at, updated_at, latest_activity_at"
|
|
11849
|
+
},
|
|
11850
|
+
{
|
|
11851
|
+
"name": "sort",
|
|
11852
|
+
"type": "str",
|
|
11853
|
+
"required": false,
|
|
11854
|
+
"help": "Sort direction: asc or desc"
|
|
11855
|
+
}
|
|
11856
|
+
],
|
|
11857
|
+
"columns": [
|
|
11858
|
+
"rank",
|
|
11859
|
+
"title",
|
|
11860
|
+
"url",
|
|
11861
|
+
"snippet",
|
|
11862
|
+
"displayUrl",
|
|
11863
|
+
"source",
|
|
11864
|
+
"resultType",
|
|
11865
|
+
"author",
|
|
11866
|
+
"publishedAt",
|
|
11867
|
+
"score",
|
|
11868
|
+
"extra"
|
|
11869
|
+
],
|
|
11870
|
+
"type": "js",
|
|
11871
|
+
"modulePath": "gitlab/search.js",
|
|
11872
|
+
"sourceFile": "gitlab/search.js"
|
|
11873
|
+
},
|
|
11538
11874
|
{
|
|
11539
11875
|
"site": "google",
|
|
11540
11876
|
"name": "news",
|
|
@@ -23468,6 +23804,132 @@
|
|
|
23468
23804
|
"sourceFile": "smzdm/search.js",
|
|
23469
23805
|
"navigateBefore": "https://www.smzdm.com"
|
|
23470
23806
|
},
|
|
23807
|
+
{
|
|
23808
|
+
"site": "so",
|
|
23809
|
+
"name": "search",
|
|
23810
|
+
"description": "Search 360 Search",
|
|
23811
|
+
"access": "read",
|
|
23812
|
+
"domain": "so.com",
|
|
23813
|
+
"strategy": "public",
|
|
23814
|
+
"browser": true,
|
|
23815
|
+
"args": [
|
|
23816
|
+
{
|
|
23817
|
+
"name": "keyword",
|
|
23818
|
+
"type": "str",
|
|
23819
|
+
"required": true,
|
|
23820
|
+
"positional": true,
|
|
23821
|
+
"help": "Search query"
|
|
23822
|
+
},
|
|
23823
|
+
{
|
|
23824
|
+
"name": "limit",
|
|
23825
|
+
"type": "int",
|
|
23826
|
+
"default": 10,
|
|
23827
|
+
"required": false,
|
|
23828
|
+
"help": "Number of results (1-50)"
|
|
23829
|
+
},
|
|
23830
|
+
{
|
|
23831
|
+
"name": "page",
|
|
23832
|
+
"type": "int",
|
|
23833
|
+
"default": 1,
|
|
23834
|
+
"required": false,
|
|
23835
|
+
"help": "Result page number"
|
|
23836
|
+
},
|
|
23837
|
+
{
|
|
23838
|
+
"name": "type",
|
|
23839
|
+
"type": "str",
|
|
23840
|
+
"required": false,
|
|
23841
|
+
"help": "Result type: web, news, video, image"
|
|
23842
|
+
},
|
|
23843
|
+
{
|
|
23844
|
+
"name": "safe",
|
|
23845
|
+
"type": "str",
|
|
23846
|
+
"required": false,
|
|
23847
|
+
"help": "Safe search: off or on"
|
|
23848
|
+
}
|
|
23849
|
+
],
|
|
23850
|
+
"columns": [
|
|
23851
|
+
"rank",
|
|
23852
|
+
"title",
|
|
23853
|
+
"url",
|
|
23854
|
+
"snippet",
|
|
23855
|
+
"displayUrl",
|
|
23856
|
+
"source",
|
|
23857
|
+
"resultType",
|
|
23858
|
+
"author",
|
|
23859
|
+
"publishedAt",
|
|
23860
|
+
"score",
|
|
23861
|
+
"extra"
|
|
23862
|
+
],
|
|
23863
|
+
"type": "js",
|
|
23864
|
+
"modulePath": "so/search.js",
|
|
23865
|
+
"sourceFile": "so/search.js"
|
|
23866
|
+
},
|
|
23867
|
+
{
|
|
23868
|
+
"site": "sogou",
|
|
23869
|
+
"name": "search",
|
|
23870
|
+
"description": "Search Sogou",
|
|
23871
|
+
"access": "read",
|
|
23872
|
+
"domain": "sogou.com",
|
|
23873
|
+
"strategy": "public",
|
|
23874
|
+
"browser": true,
|
|
23875
|
+
"args": [
|
|
23876
|
+
{
|
|
23877
|
+
"name": "keyword",
|
|
23878
|
+
"type": "str",
|
|
23879
|
+
"required": true,
|
|
23880
|
+
"positional": true,
|
|
23881
|
+
"help": "Search query"
|
|
23882
|
+
},
|
|
23883
|
+
{
|
|
23884
|
+
"name": "limit",
|
|
23885
|
+
"type": "int",
|
|
23886
|
+
"default": 10,
|
|
23887
|
+
"required": false,
|
|
23888
|
+
"help": "Number of results (1-50)"
|
|
23889
|
+
},
|
|
23890
|
+
{
|
|
23891
|
+
"name": "page",
|
|
23892
|
+
"type": "int",
|
|
23893
|
+
"default": 1,
|
|
23894
|
+
"required": false,
|
|
23895
|
+
"help": "Result page number"
|
|
23896
|
+
},
|
|
23897
|
+
{
|
|
23898
|
+
"name": "type",
|
|
23899
|
+
"type": "str",
|
|
23900
|
+
"required": false,
|
|
23901
|
+
"help": "Result type: web, news, video, image"
|
|
23902
|
+
},
|
|
23903
|
+
{
|
|
23904
|
+
"name": "time",
|
|
23905
|
+
"type": "str",
|
|
23906
|
+
"required": false,
|
|
23907
|
+
"help": "Time range: day, week, month, year"
|
|
23908
|
+
},
|
|
23909
|
+
{
|
|
23910
|
+
"name": "sort",
|
|
23911
|
+
"type": "str",
|
|
23912
|
+
"required": false,
|
|
23913
|
+
"help": "Sort order: relevance or date"
|
|
23914
|
+
}
|
|
23915
|
+
],
|
|
23916
|
+
"columns": [
|
|
23917
|
+
"rank",
|
|
23918
|
+
"title",
|
|
23919
|
+
"url",
|
|
23920
|
+
"snippet",
|
|
23921
|
+
"displayUrl",
|
|
23922
|
+
"source",
|
|
23923
|
+
"resultType",
|
|
23924
|
+
"author",
|
|
23925
|
+
"publishedAt",
|
|
23926
|
+
"score",
|
|
23927
|
+
"extra"
|
|
23928
|
+
],
|
|
23929
|
+
"type": "js",
|
|
23930
|
+
"modulePath": "sogou/search.js",
|
|
23931
|
+
"sourceFile": "sogou/search.js"
|
|
23932
|
+
},
|
|
23471
23933
|
{
|
|
23472
23934
|
"site": "spotify",
|
|
23473
23935
|
"name": "auth",
|
|
@@ -24718,6 +25180,72 @@
|
|
|
24718
25180
|
"sourceFile": "tdx/hot-rank.js",
|
|
24719
25181
|
"navigateBefore": true
|
|
24720
25182
|
},
|
|
25183
|
+
{
|
|
25184
|
+
"site": "threads",
|
|
25185
|
+
"name": "search",
|
|
25186
|
+
"description": "Search Threads",
|
|
25187
|
+
"access": "read",
|
|
25188
|
+
"domain": "www.threads.com",
|
|
25189
|
+
"strategy": "public",
|
|
25190
|
+
"browser": true,
|
|
25191
|
+
"args": [
|
|
25192
|
+
{
|
|
25193
|
+
"name": "keyword",
|
|
25194
|
+
"type": "str",
|
|
25195
|
+
"required": true,
|
|
25196
|
+
"positional": true,
|
|
25197
|
+
"help": "Search query"
|
|
25198
|
+
},
|
|
25199
|
+
{
|
|
25200
|
+
"name": "limit",
|
|
25201
|
+
"type": "int",
|
|
25202
|
+
"default": 10,
|
|
25203
|
+
"required": false,
|
|
25204
|
+
"help": "Number of posts (1-50)"
|
|
25205
|
+
},
|
|
25206
|
+
{
|
|
25207
|
+
"name": "page",
|
|
25208
|
+
"type": "int",
|
|
25209
|
+
"default": 1,
|
|
25210
|
+
"required": false,
|
|
25211
|
+
"help": "Result page number"
|
|
25212
|
+
},
|
|
25213
|
+
{
|
|
25214
|
+
"name": "author",
|
|
25215
|
+
"type": "str",
|
|
25216
|
+
"required": false,
|
|
25217
|
+
"help": "Filter by author handle"
|
|
25218
|
+
},
|
|
25219
|
+
{
|
|
25220
|
+
"name": "since",
|
|
25221
|
+
"type": "str",
|
|
25222
|
+
"required": false,
|
|
25223
|
+
"help": "Only posts on or after YYYY-MM-DD"
|
|
25224
|
+
},
|
|
25225
|
+
{
|
|
25226
|
+
"name": "until",
|
|
25227
|
+
"type": "str",
|
|
25228
|
+
"required": false,
|
|
25229
|
+
"help": "Only posts on or before YYYY-MM-DD"
|
|
25230
|
+
}
|
|
25231
|
+
],
|
|
25232
|
+
"columns": [
|
|
25233
|
+
"rank",
|
|
25234
|
+
"title",
|
|
25235
|
+
"url",
|
|
25236
|
+
"snippet",
|
|
25237
|
+
"displayUrl",
|
|
25238
|
+
"source",
|
|
25239
|
+
"resultType",
|
|
25240
|
+
"author",
|
|
25241
|
+
"publishedAt",
|
|
25242
|
+
"score",
|
|
25243
|
+
"extra"
|
|
25244
|
+
],
|
|
25245
|
+
"type": "js",
|
|
25246
|
+
"modulePath": "threads/search.js",
|
|
25247
|
+
"sourceFile": "threads/search.js"
|
|
25248
|
+
},
|
|
24721
25249
|
{
|
|
24722
25250
|
"site": "ths",
|
|
24723
25251
|
"name": "hot-rank",
|
|
@@ -25493,6 +26021,54 @@
|
|
|
25493
26021
|
"modulePath": "toutiao/hot.js",
|
|
25494
26022
|
"sourceFile": "toutiao/hot.js"
|
|
25495
26023
|
},
|
|
26024
|
+
{
|
|
26025
|
+
"site": "toutiao",
|
|
26026
|
+
"name": "search",
|
|
26027
|
+
"description": "搜索今日头条公开站内内容",
|
|
26028
|
+
"access": "read",
|
|
26029
|
+
"domain": "www.toutiao.com",
|
|
26030
|
+
"strategy": "public",
|
|
26031
|
+
"browser": false,
|
|
26032
|
+
"args": [
|
|
26033
|
+
{
|
|
26034
|
+
"name": "query",
|
|
26035
|
+
"type": "string",
|
|
26036
|
+
"required": false,
|
|
26037
|
+
"positional": true,
|
|
26038
|
+
"help": "搜索关键词"
|
|
26039
|
+
},
|
|
26040
|
+
{
|
|
26041
|
+
"name": "type",
|
|
26042
|
+
"type": "string",
|
|
26043
|
+
"default": "synthesis",
|
|
26044
|
+
"required": false,
|
|
26045
|
+
"help": "搜索类型 (synthesis/information/video/atlas/user/xiaoshipin/weitoutiao/music)"
|
|
26046
|
+
},
|
|
26047
|
+
{
|
|
26048
|
+
"name": "limit",
|
|
26049
|
+
"type": "int",
|
|
26050
|
+
"default": 20,
|
|
26051
|
+
"required": false,
|
|
26052
|
+
"help": "返回条数 (1-50)"
|
|
26053
|
+
}
|
|
26054
|
+
],
|
|
26055
|
+
"columns": [
|
|
26056
|
+
"rank",
|
|
26057
|
+
"title",
|
|
26058
|
+
"url",
|
|
26059
|
+
"source",
|
|
26060
|
+
"publish_time",
|
|
26061
|
+
"summary",
|
|
26062
|
+
"image_url",
|
|
26063
|
+
"like_count",
|
|
26064
|
+
"comment_count",
|
|
26065
|
+
"share_count",
|
|
26066
|
+
"read_count"
|
|
26067
|
+
],
|
|
26068
|
+
"type": "js",
|
|
26069
|
+
"modulePath": "toutiao/search.js",
|
|
26070
|
+
"sourceFile": "toutiao/search.js"
|
|
26071
|
+
},
|
|
25496
26072
|
{
|
|
25497
26073
|
"site": "tvmaze",
|
|
25498
26074
|
"name": "search",
|
|
@@ -31395,6 +31971,72 @@
|
|
|
31395
31971
|
"sourceFile": "yahoo-finance/quote.js",
|
|
31396
31972
|
"navigateBefore": "https://finance.yahoo.com"
|
|
31397
31973
|
},
|
|
31974
|
+
{
|
|
31975
|
+
"site": "yandex",
|
|
31976
|
+
"name": "search",
|
|
31977
|
+
"description": "Search Yandex",
|
|
31978
|
+
"access": "read",
|
|
31979
|
+
"domain": "yandex.com",
|
|
31980
|
+
"strategy": "public",
|
|
31981
|
+
"browser": true,
|
|
31982
|
+
"args": [
|
|
31983
|
+
{
|
|
31984
|
+
"name": "keyword",
|
|
31985
|
+
"type": "str",
|
|
31986
|
+
"required": true,
|
|
31987
|
+
"positional": true,
|
|
31988
|
+
"help": "Search query"
|
|
31989
|
+
},
|
|
31990
|
+
{
|
|
31991
|
+
"name": "limit",
|
|
31992
|
+
"type": "int",
|
|
31993
|
+
"default": 10,
|
|
31994
|
+
"required": false,
|
|
31995
|
+
"help": "Number of results (1-50)"
|
|
31996
|
+
},
|
|
31997
|
+
{
|
|
31998
|
+
"name": "page",
|
|
31999
|
+
"type": "int",
|
|
32000
|
+
"default": 1,
|
|
32001
|
+
"required": false,
|
|
32002
|
+
"help": "Result page number"
|
|
32003
|
+
},
|
|
32004
|
+
{
|
|
32005
|
+
"name": "lr",
|
|
32006
|
+
"type": "str",
|
|
32007
|
+
"required": false,
|
|
32008
|
+
"help": "Yandex region code"
|
|
32009
|
+
},
|
|
32010
|
+
{
|
|
32011
|
+
"name": "lang",
|
|
32012
|
+
"type": "str",
|
|
32013
|
+
"required": false,
|
|
32014
|
+
"help": "Language code"
|
|
32015
|
+
},
|
|
32016
|
+
{
|
|
32017
|
+
"name": "sort",
|
|
32018
|
+
"type": "str",
|
|
32019
|
+
"required": false,
|
|
32020
|
+
"help": "Sort order: relevance or date"
|
|
32021
|
+
}
|
|
32022
|
+
],
|
|
32023
|
+
"columns": [
|
|
32024
|
+
"rank",
|
|
32025
|
+
"title",
|
|
32026
|
+
"url",
|
|
32027
|
+
"snippet",
|
|
32028
|
+
"displayUrl",
|
|
32029
|
+
"source",
|
|
32030
|
+
"resultType",
|
|
32031
|
+
"author",
|
|
32032
|
+
"publishedAt",
|
|
32033
|
+
"score",
|
|
32034
|
+
"extra"
|
|
32035
|
+
],
|
|
32036
|
+
"type": "js",
|
|
32037
|
+
"modulePath": "yandex/search.js",
|
|
32038
|
+
"sourceFile": "yandex/search.js"
|
|
32039
|
+
},
|
|
31398
32040
|
{
|
|
31399
32041
|
"site": "yollomi",
|
|
31400
32042
|
"name": "background",
|