You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

pynzbgetapi

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pynzbgetapi - pypi Package Compare versions

Comparing version
0.2.0
to
0.3.0
+1
-1
PKG-INFO
Metadata-Version: 1.1
Name: pynzbgetapi
Version: 0.2.0
Version: 0.3.0
Summary: Basic Python NZBGet API client.

@@ -5,0 +5,0 @@ Home-page: https://github.com/holiestofhandgrenades/pynzbgetapi

Metadata-Version: 1.1
Name: pynzbgetapi
Version: 0.2.0
Version: 0.3.0
Summary: Basic Python NZBGet API client.

@@ -5,0 +5,0 @@ Home-page: https://github.com/holiestofhandgrenades/pynzbgetapi

@@ -16,2 +16,3 @@ """Basic Python wrapper for the NZBGet API"""

"""Top level module exception."""
pass

@@ -26,2 +27,3 @@

host,
urlbase="",
username=None,

@@ -38,7 +40,5 @@ password=None,

if username is not None and password is not None:
url = (
f"http{ssl}://{quote(username)}:{quote(password)}@{host}:{port}/xmlrpc"
)
url = f"http{ssl}://{host}:{port}/{quote(username)}:{quote(password)}{urlbase}/xmlrpc"
else:
url = f"http{ssl}://{host}:{port}/xmlrpc"
url = f"http{ssl}://{host}:{port}{urlbase}/xmlrpc"

@@ -45,0 +45,0 @@ if secure and not verify_certificate:

@@ -29,4 +29,4 @@ #!/usr/bin/env python

url='https://github.com/holiestofhandgrenades/pynzbgetapi',
version='0.2.0',
version='0.3.0',
zip_safe=True,
)