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.
Install with pip:
pip install --upgrade convertapi
Install from source with:
python setup.py install
- Python 3.3+
You can get your API credentials at https://www.convertapi.com/a
import convertapi
convertapi.api_credentials = 'your-api-secret-or-token'
If you need to use a proxy, you can specify it using HTTPS_PROXY
environment variable when running your script.
Example:
CONVERT_API_SECRET=secret HTTPS_PROXY=https://user:[email protected]:9000/ python convert_word_to_pdf_and_png.py
Convert a file to PDF example. All supported file formats and options can be found here.
result = convertapi.convert('pdf', { 'File': '/path/to/my_file.docx' })
# save to file
result.file.save('/path/to/save/file.pdf')
Other result operations:
# save all result files to folder
result.save_files('/path/to/save/files')
# get conversion cost
conversion_cost = result.conversion_cost
result = convertapi.convert('pdf', { 'File': 'https://website/my_file.docx' })
result = convertapi.convert(
'pdf',
{ 'File': '/path/to/my_file' },
from_format = 'docx'
)
ConvertAPI accepts additional conversion parameters depending on selected formats. All conversion parameters and explanations can be found here.
result = convertapi.convert(
'pdf',
{
'File': '/path/to/my_file.docx',
'PageRange': '1-10',
'PdfResolution': '150',
}
)
You can always check your usage by fetching user information.
user_info = convertapi.user()
print(user_info['ConversionsTotal'])
print(user_info['ConversionsConsumed'])
Set base_uri
parameter to use other service domains. Dedicated to the region domain list.
convertapi.base_uri = 'https://eu-v2.convertapi.com/'
Find more advanced examples in the /examples folder.
Execute CONVERT_API_SECRET=your_secret nosetests --nocapture
to run the tests.
Bug reports and pull requests are welcome on GitHub at https://github.com/ConvertAPI/convertapi-library-python. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.