Socket
Book a DemoSign in
Socket

iploop-sdk

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iploop-sdk - pypi Package Compare versions

Comparing version
1.7.1
to
1.7.2
+1
-1
iploop_sdk.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: iploop-sdk
Version: 1.7.1
Version: 1.7.2
Summary: Residential proxy SDK with full scraping capabilities — render JS, bypass protection, extract data

@@ -5,0 +5,0 @@ Home-page: https://iploop.io

"""IPLoop — Residential proxy SDK with full scraping capabilities."""
__version__ = "1.7.1"
__version__ = "1.7.2"

@@ -5,0 +5,0 @@ from .client import IPLoop, StickySession

@@ -43,6 +43,10 @@ """Support API client."""

try:
resp = requests.get(f"{self.customer_api}/proxy/countries",
headers=self._headers, timeout=15, verify=True)
resp = requests.get(f"{self.customer_api}/proxy/locations",
timeout=15, verify=True)
if resp.status_code == 200:
return resp.json()
data = resp.json()
# Extract country codes from locations response
if isinstance(data, list):
return [{"code": c.get("code"), "name": c.get("name"), "cities": len(c.get("cities", [])), "nodes": c.get("totalNodes", 0)} for c in data]
return data
except Exception:

@@ -49,0 +53,0 @@ pass

Metadata-Version: 2.4
Name: iploop-sdk
Version: 1.7.1
Version: 1.7.2
Summary: Residential proxy SDK with full scraping capabilities — render JS, bypass protection, extract data

@@ -5,0 +5,0 @@ Home-page: https://iploop.io

@@ -7,3 +7,3 @@ [build-system]

name = "iploop-sdk"
version = "1.7.1"
version = "1.7.2"
description = "Residential proxy SDK with full scraping capabilities — render JS, bypass protection, extract data"

@@ -10,0 +10,0 @@ readme = "README.md"

@@ -5,3 +5,3 @@ from setuptools import setup, find_packages

name="iploop-sdk",
version="1.7.1",
version="1.7.2",
packages=find_packages(exclude=['dist-obf', 'dist-obf.*']),

@@ -8,0 +8,0 @@ install_requires=["requests>=2.28"],