scrapeunblocker 0.4.0 → 0.5.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +7 -0
- data/lib/scrapeunblocker/client.rb +12 -0
- data/lib/scrapeunblocker/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2668bf966d35f46fd8c65d4d78cdc0d93d989a54b9d3f257f57e7924cc4ad6f6
|
|
4
|
+
data.tar.gz: 7ec5e5166b99712828dd771597ba0db89a09f398a1c5c0988af3256f077139f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98330917b1ddce4f2d24f3938a97ce719ef84e31a712a3e774ac5d5821b1df164d8defd3984d4732d736f374f357701b59bae7b3a3154539b06543b92b8ecc5a
|
|
7
|
+
data.tar.gz: 0fb21ac2f6c04e979bb21415a9d393fd2853bdb1eb793e6ddf1d52cd9a38ab976d9ab403352f15bbe3b24ae64972c60df972942e231d85ff5e2ac805bf76bc34
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.0 (2026-09-17)
|
|
4
|
+
|
|
5
|
+
- Added `google_images(q, ...)` for the new Google Images plugin (`POST /images/google-search`). Given a keyword `q` it returns Google Images results as a Hash - each with the full-size `imageUrl` and its `sourceDomain`, plus the source page URL, title, source name, thumbnail URL, pixel dimensions and file size. Optional `gl` (ISO-2 lowercase market), `max_results` (1-100) and `proxy_country` (ISO-2) refine the search.
|
|
6
|
+
|
|
7
|
+
No breaking changes.
|
|
8
|
+
|
|
3
9
|
## 0.4.0 (2026-09-16)
|
|
4
10
|
|
|
5
11
|
- Added `southwest.flights(origin:, dest:, depart_date:, ...)` for the new Southwest Airlines plugin (`POST /flights/southwest-quotes`), reached through the new `su.southwest` namespace and mirroring `su.skyscanner`. `origin` and `dest` are IATA airport codes; `depart_date` and the optional `return_date` are `YYYY-MM-DD` (omit `return_date` for a one-way search). Optional `adults` (1-8, default 1), `fare_type` (`"dollars"` default or `"points"`), `proxy_country` (default `"US"`) and `max_attempts` (1-5, default 3). Returns the raw booking / shopping JSON as a Hash.
|
data/README.md
CHANGED
|
@@ -128,6 +128,13 @@ local = su.google_local("coffee shops in chicago", proxy_country: "US", gl: "us"
|
|
|
128
128
|
local["results"].each { |biz| puts "#{biz['name']} #{biz['rating']} #{biz['address']}" }
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
+
## Google Images
|
|
132
|
+
|
|
133
|
+
```ruby
|
|
134
|
+
images = su.google_images("golden retriever puppy", proxy_country: "US", gl: "us")
|
|
135
|
+
images["results"].each { |img| puts "#{img['imageUrl']} #{img['sourceDomain']} #{img['title']}" }
|
|
136
|
+
```
|
|
137
|
+
|
|
131
138
|
## Meta Ad Library
|
|
132
139
|
|
|
133
140
|
```ruby
|
|
@@ -106,6 +106,18 @@ module ScrapeUnblocker
|
|
|
106
106
|
keyword: keyword, proxy_country: proxy_country, hl: hl, gl: gl)
|
|
107
107
|
end
|
|
108
108
|
|
|
109
|
+
# Search Google Images and return the image results as a Hash.
|
|
110
|
+
#
|
|
111
|
+
# Returns image results, each with the full-size +imageUrl+ and its
|
|
112
|
+
# +sourceDomain+, plus the source page URL, title, source name, thumbnail
|
|
113
|
+
# URL, pixel dimensions and file size. +q+ is the search keyword. Set
|
|
114
|
+
# +proxy_country+ (and optionally +gl+) to target a market, and
|
|
115
|
+
# +max_results+ (1-100) to cap the count.
|
|
116
|
+
def google_images(q, proxy_country: nil, gl: nil, max_results: nil)
|
|
117
|
+
post_json("/images/google-search",
|
|
118
|
+
q: q, gl: gl, max_results: max_results, proxy_country: proxy_country)
|
|
119
|
+
end
|
|
120
|
+
|
|
109
121
|
# Fetch an advertiser's Meta (Facebook) Ad Library ads and return them as a Hash.
|
|
110
122
|
#
|
|
111
123
|
# +advertiser+ is the advertiser name or page to look up. Optional filters:
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scrapeunblocker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ScrapeUnblocker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: JS-rendered pages that bypass Cloudflare, DataDome, PerimeterX and Akamai,
|
|
14
14
|
plus Google SERP and Skyscanner flights/hotels/car-hire scraping as JSON.
|