New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

convertapi

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convertapi - pypi Package Compare versions

Comparing version
1.3.0
to
1.4.0
+1
-1
convertapi.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: convertapi
Version: 1.3.0
Version: 1.4.0
Summary: Convert API Python Client

@@ -5,0 +5,0 @@ Home-page: https://github.com/ConvertAPI/convertapi-python

@@ -1,2 +0,2 @@

__version__ = '1.3.0'
__version__ = '1.4.0'

@@ -14,8 +14,8 @@ from .exceptions import *

timeout = 60
conversion_timeout = 180
conversion_timeout = None
conversion_timeout_delta = 10
upload_timeout = 600
download_timeout = 600
upload_timeout = 1800
download_timeout = 1800
max_parallel_uploads = 10
client = Client()

@@ -23,3 +23,3 @@ import convertapi

from_format = self.from_format or self.__detect_format()
timeout = self.timeout + convertapi.conversion_timeout_delta
timeout = self.timeout + convertapi.conversion_timeout_delta if self.timeout else None
path = "convert/%s/to/%s" % (from_format, self.to_format)

@@ -26,0 +26,0 @@

Metadata-Version: 1.1
Name: convertapi
Version: 1.3.0
Version: 1.4.0
Summary: Convert API Python Client

@@ -5,0 +5,0 @@ Home-page: https://github.com/ConvertAPI/convertapi-python

@@ -8,3 +8,3 @@ # ConvertAPI Python Client

The ConvertAPI helps converting various file formats. Creating PDF and Images from various sources like Word, Excel, Powerpoint, images, web pages or raw HTML codes. Merge, Encrypt, Split, Repair and Decrypt PDF files. And many others files manipulations. In just few minutes you can integrate it into your application and use it easily.
ConvertAPI helps to convert various file formats. Creating PDF and Images from various sources like Word, Excel, Powerpoint, images, web pages or raw HTML codes. Merge, Encrypt, Split, Repair and Decrypt PDF files and many other manipulations. You can integrate it into your application in just a few minutes and use it easily.

@@ -39,3 +39,3 @@ ## Installation

If you need to use proxy, you specify it using `HTTPS_PROXY` environment variable when running your script.
If you need to use a proxy, you can specify it using `HTTPS_PROXY` environment variable when running your script.

@@ -50,3 +50,3 @@ Example:

Example to convert file to PDF. All supported formats and options can be found
Convert a file to PDF example. All supported file formats and options can be found
[here](https://www.convertapi.com).

@@ -89,3 +89,3 @@

ConvertAPI accepts extra conversion parameters depending on converted formats. All conversion
ConvertAPI accepts additional conversion parameters depending on selected formats. All conversion
parameters and explanations can be found [here](https://www.convertapi.com).

@@ -106,3 +106,3 @@

You can always check remaining seconds amount by fetching [user information](https://www.convertapi.com/doc/user).
You can always check your remaining seconds amount programatically by fetching [user information](https://www.convertapi.com/doc/user).

@@ -117,3 +117,3 @@ ```python

You can find more advanced examples in the [/examples](https://github.com/ConvertAPI/convertapi-python/tree/master/examples) folder.
Find more advanced examples in the [/examples](https://github.com/ConvertAPI/convertapi-python/tree/master/examples) folder.

@@ -120,0 +120,0 @@ ## Development