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.2
to
1.7.3
+1
-1
iploop_sdk.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: iploop-sdk
Version: 1.7.2
Version: 1.7.3
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.2"
__version__ = "1.7.3"

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

@@ -16,3 +16,4 @@ """Support API client."""

def _get(self, path):
resp = requests.get(f"{self.api_base}{path}", headers=self._headers, timeout=15, verify=True)
resp = requests.get(f"{self.api_base}{path}", headers=self._headers, timeout=15, verify=True,
proxies={"http": None, "https": None})
if resp.status_code == 401:

@@ -24,3 +25,4 @@ raise AuthError("Invalid API key")

def _post(self, path, json_data):
resp = requests.post(f"{self.api_base}{path}", headers=self._headers, json=json_data, timeout=15, verify=True)
resp = requests.post(f"{self.api_base}{path}", headers=self._headers, json=json_data, timeout=15, verify=True,
proxies={"http": None, "https": None})
if resp.status_code == 401:

@@ -46,3 +48,4 @@ raise AuthError("Invalid API key")

resp = requests.get(f"{self.customer_api}/proxy/locations",
timeout=15, verify=True)
timeout=15, verify=True,
proxies={"http": None, "https": None})
if resp.status_code == 200:

@@ -49,0 +52,0 @@ data = resp.json()

Metadata-Version: 2.4
Name: iploop-sdk
Version: 1.7.2
Version: 1.7.3
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.2"
version = "1.7.3"
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.2",
version="1.7.3",
packages=find_packages(exclude=['dist-obf', 'dist-obf.*']),

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