zyte-client 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f630a5f4d853e6754b2c95d2c196a53f3b44b7632bfacdfd64aab0c3b69fa17
4
- data.tar.gz: a602c13529fc89e2fc6dd09a210264c27794e84d2e5ae042a0bf7693eb244d55
3
+ metadata.gz: bffa19880c23434b27835026c2a7c517582c1307f7fde465262ea6f205c68658
4
+ data.tar.gz: 11e38f8ed341f9737d8815ec741b21f4de47fce821d19121c4b94eb4fdfc9f75
5
5
  SHA512:
6
- metadata.gz: 20d49f1fbb79a627f785524d51112103df7d83089f6082d5bf5e4ff08887d16e8e091b68c84b66caab7c99780632ca8d75ee655578d86ec9c7bd2a145c609db3
7
- data.tar.gz: d0906d565585aac927ff2518be4568fa6b11b90c0c391ff610f3c49c42af16b2c2d01387765b8f16c02c8af42d6c95465341201fe609d195e431e929779b7937
6
+ metadata.gz: 39e31548820edf9cdadcdf8d878009995ff2ff25d1a8b2618f303e0c122de36d0386d25da11beb0936553b260ca4980d9ce63579d4183ae77613f140ad173719
7
+ data.tar.gz: 2c05076f43fdc285c65aeee49364a81891c682a4a81b47f79d15b7b97244b4d7a6c6eacabd37640f0673c7ab22a9e7dd8fa29f4a116add51ef7af4e8e7b8336c
data/lib/zyte-client.rb CHANGED
@@ -18,19 +18,19 @@ class ZyteClient
18
18
  # options: additonal Zyte API's options to the default request. Default request is: {"url": url}.
19
19
  # json_parsing: if true, the response is parsed as JSON using jq command, and return the value of the `httpResponseBody` key. Default is true.
20
20
  #
21
- def extract(url:, json_parsing: true, options:{})
21
+ def extract(url:, json_parsing: true, options:{}, data_filename: 'zyte.data.json')
22
22
  data = {
23
23
  "url": url,
24
24
  }.merge(options)
25
-
26
- File.open('zyte.data.json', 'w') { |file| file.write(data.to_json) }
25
+
26
+ File.open(data_filename, 'w') { |file| file.write(data.to_json) }
27
27
 
28
28
  if json_parsing
29
29
  cmd = "curl \
30
30
  --silent \
31
31
  --user #{self.key}: \
32
32
  --header 'Content-Type: application/json' \
33
- --data @zyte.data.json \
33
+ --data @#{data_filename} \
34
34
  --compressed \
35
35
  https://api.zyte.com/v1/extract \
36
36
  | jq --raw-output .httpResponseBody \
@@ -41,7 +41,7 @@ class ZyteClient
41
41
  --silent \
42
42
  --user #{self.key}: \
43
43
  --header 'Content-Type: application/json' \
44
- --data @zyte.data.json \
44
+ --data @#{data_filename} \
45
45
  --compressed \
46
46
  https://api.zyte.com/v1/extract
47
47
  "
data/zyte-client.gemspec CHANGED
@@ -1,16 +1,16 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'zyte-client'
3
- s.version = '1.0.5'
4
- s.date = '2024-04-22'
3
+ s.version = '1.0.6'
4
+ s.date = '2024-07-23'
5
5
  s.summary = "Ruby library for operating Zyte API."
6
6
  s.description = "Ruby library for operating Zyte API."
7
7
  s.authors = ["Leandro Daniel Sardi"]
8
- s.email = 'leandro@connectionsphere.com'
8
+ s.email = 'leandro@massprospecting.com'
9
9
  s.files = [
10
10
  'lib/zyte-client.rb',
11
11
  'zyte-client.gemspec'
12
12
  ]
13
- s.homepage = 'https://github.com/leandrosardi/zyte-client'
13
+ s.homepage = 'https://github.com/massprospecting/zyte-client'
14
14
  s.license = 'MIT'
15
15
  s.add_runtime_dependency 'uri', '~> 0.11.2', '>= 0.11.2'
16
16
  s.add_runtime_dependency 'net-http', '~> 0.2.0', '>= 0.2.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zyte-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leandro Daniel Sardi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-22 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: uri
@@ -151,14 +151,14 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: 1.2.2
153
153
  description: Ruby library for operating Zyte API.
154
- email: leandro@connectionsphere.com
154
+ email: leandro@massprospecting.com
155
155
  executables: []
156
156
  extensions: []
157
157
  extra_rdoc_files: []
158
158
  files:
159
159
  - lib/zyte-client.rb
160
160
  - zyte-client.gemspec
161
- homepage: https://github.com/leandrosardi/zyte-client
161
+ homepage: https://github.com/massprospecting/zyte-client
162
162
  licenses:
163
163
  - MIT
164
164
  metadata: {}