Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

groupdocs-python

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

groupdocs-python - pypi Package Compare versions

Comparing version
1.2.3
to
1.2.4
+10
-15
groupdocs/ApiClient.py

@@ -98,15 +98,13 @@ #!/usr/bin/env python

if method == 'GET':
if queryParams:
# Need to remove None values, these should not be sent
sentQueryParams = {}
for param, value in queryParams.items():
if value != None:
sentQueryParams[param] = value
if sentQueryParams:
url = url + '?' + urllib.urlencode(sentQueryParams)
if queryParams:
# Need to remove None values, these should not be sent
sentQueryParams = {}
for param, value in queryParams.items():
if value != None:
sentQueryParams[param] = value
if sentQueryParams:
url = url + '?' + urllib.urlencode(sentQueryParams)
if method in ['POST', 'PUT', 'DELETE']:
elif method in ['POST', 'PUT', 'DELETE']:
if isFileUpload:

@@ -121,5 +119,2 @@ data = postData.inputStream

else:
raise Exception('Method ' + method + ' is not recognized.')
if self.__debug:

@@ -319,2 +314,2 @@ handler = urllib2.HTTPSHandler(debuglevel=1) if url.lower().startswith('https') else urllib2.HTTPHandler(debuglevel=1)

super(Exception, self).__init__((code, ) + args)
self.code = code
self.code = code
+1
-1
__pkgname__ = "groupdocs-python"
__version__ = "1.2.3"
__version__ = "1.2.4"
Metadata-Version: 1.1
Name: groupdocs-python
Version: 1.2.3
Version: 1.2.4
Summary: A Python interface to the GroupDocs API

@@ -5,0 +5,0 @@ Home-page: http://groupdocs.com/