@@ -154,6 +154,7 @@ def get(
154154 date_start : SequenceNotStr [Union [str , datetime ]] | Omit = omit ,
155155 device_type : List [Literal ["DESKTOP" , "MOBILE" , "OTHER" ]] | Omit = omit ,
156156 format : Literal ["JSON" , "CSV" ] | Omit = omit ,
157+ geo_id : SequenceNotStr [str ] | Omit = omit ,
157158 http_protocol : List [Literal ["HTTP" , "HTTPS" ]] | Omit = omit ,
158159 http_version : List [Literal ["HTTPv1" , "HTTPv2" , "HTTPv3" ]] | Omit = omit ,
159160 ip_version : List [Literal ["IPv4" , "IPv6" ]] | Omit = omit ,
@@ -199,6 +200,11 @@ def get(
199200
200201 format: Format in which results will be returned.
201202
203+ geo_id: Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs.
204+ Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689`
205+ excludes results from the 2267056 (Lisbon), but includes results from 5128638
206+ (New York).
207+
202208 http_protocol: Filters results by HTTP protocol (HTTP vs. HTTPS).
203209
204210 http_version: Filters results by HTTP version.
@@ -243,6 +249,7 @@ def get(
243249 "date_start" : date_start ,
244250 "device_type" : device_type ,
245251 "format" : format ,
252+ "geo_id" : geo_id ,
246253 "http_protocol" : http_protocol ,
247254 "http_version" : http_version ,
248255 "ip_version" : ip_version ,
@@ -324,6 +331,7 @@ async def get(
324331 date_start : SequenceNotStr [Union [str , datetime ]] | Omit = omit ,
325332 device_type : List [Literal ["DESKTOP" , "MOBILE" , "OTHER" ]] | Omit = omit ,
326333 format : Literal ["JSON" , "CSV" ] | Omit = omit ,
334+ geo_id : SequenceNotStr [str ] | Omit = omit ,
327335 http_protocol : List [Literal ["HTTP" , "HTTPS" ]] | Omit = omit ,
328336 http_version : List [Literal ["HTTPv1" , "HTTPv2" , "HTTPv3" ]] | Omit = omit ,
329337 ip_version : List [Literal ["IPv4" , "IPv6" ]] | Omit = omit ,
@@ -369,6 +377,11 @@ async def get(
369377
370378 format: Format in which results will be returned.
371379
380+ geo_id: Filters results by Geolocation. Specify a comma-separated list of GeoNames IDs.
381+ Prefix with `-` to exclude geoIds from results. For example, `-2267056,360689`
382+ excludes results from the 2267056 (Lisbon), but includes results from 5128638
383+ (New York).
384+
372385 http_protocol: Filters results by HTTP protocol (HTTP vs. HTTPS).
373386
374387 http_version: Filters results by HTTP version.
@@ -413,6 +426,7 @@ async def get(
413426 "date_start" : date_start ,
414427 "device_type" : device_type ,
415428 "format" : format ,
429+ "geo_id" : geo_id ,
416430 "http_protocol" : http_protocol ,
417431 "http_version" : http_version ,
418432 "ip_version" : ip_version ,
0 commit comments