Skip to main content

Foxit PDF CONVERSION SDK For Python3

Project description

# Foxit Conversion SDK v3.1.0

Release Date: 31 March 2026

## Breaking Changes

### `PDF2WordSettingData` — Parameter change and default value change

Constructor and `Set()` method add a required `max_blank_paragraphs_per_page_bottom` parameter:

```cpp
// v3.0 (4 parameters)
PDF2WordSettingData(bool enable_retain_page_layout,
bool enable_generate_headers_and_footers,
bool enable_generate_footnotes_and_endnotes,
bool enable_generate_page_rendered_break);

// v3.1 (5 parameters)
PDF2WordSettingData(bool enable_retain_page_layout,
bool enable_generate_headers_and_footers,
bool enable_generate_footnotes_and_endnotes,
bool enable_generate_page_rendered_break,
int max_blank_paragraphs_per_page_bottom); // new
```

**Action required:** Add the new parameter when using the parameterized constructor or `Set()`. Pass `-1` for unlimited (matching previous behavior). Alternatively, use the default constructor with field assignment.

**Default value change** — `enable_generate_headers_and_footers` changed from `false` to `true`. Code using the default constructor will now generate headers and footers. Set `enable_generate_headers_and_footers = false` explicitly to preserve previous behavior.

### `PDF2PowerPointSettingData` — Parameter change

Constructor and `Set()` method add a required `enable_adapt_to_largest_page` parameter:

```cpp
// v3.0 (1 parameter)
PDF2PowerPointSettingData(bool enable_aggressively_split_sections);

// v3.1 (2 parameters)
PDF2PowerPointSettingData(bool enable_aggressively_split_sections,
bool enable_adapt_to_largest_page); // new
```

**Action required:** Add the new parameter. Pass `false` to preserve previous behavior.

### `PDF2ExcelSettingData` — Parameter change

Constructor and `Set()` method add 2 required parameters:

```cpp
// v3.0 (3 parameters)
PDF2ExcelSettingData(String decimal_symbol, String thousands_separator,
WorkbookSettings workbook_settings);

// v3.1 (5 parameters)
PDF2ExcelSettingData(String decimal_symbol, String thousands_separator,
WorkbookSettings workbook_settings,
bool enable_aggressive_table_repair, // new
bool include_watermarks); // new
```

**Action required:** Add 2 new parameters. Pass `true, false` to preserve previous behavior.

### `PDF2OfficeSettingData` — Parameter change

Constructor and `Set()` method add a required `enable_matching_system_fonts` parameter:

```cpp
// v3.0 (9 parameters)
PDF2OfficeSettingData(const wchar_t* metrics_data_folder_path,
bool enable_ml_recognition, const Range& page_range,
bool include_pdf_comments,
const PDF2WordSettingData& word_setting_data,
const PDF2PowerPointSettingData& power_point_setting_data,
const PDF2ExcelSettingData& excel_setting_data,
bool enable_trailing_space, bool include_images);

// v3.1 (10 parameters)
PDF2OfficeSettingData(/* same 9 parameters */,
bool enable_matching_system_fonts); // new
```

**Action required:** Add the new parameter. Pass `false` to preserve previous behavior.

### PDF-to-Word default behavior change

PDF-to-Word conversion now preserves document internal navigation links by default. If downstream workflows depend on link-free Word output, verify conversion results after upgrading.

## New Features and Enhancements

### PDF to Office

- Add `enable_matching_system_fonts` parameter to `PDF2OfficeSettingData` for system font matching in PDF-to-Word conversion
- Add `enable_adapt_to_largest_page` parameter to `PDF2PowerPointSettingData` to unify slide size by scaling smaller pages to the largest page dimension
- Add `enable_aggressive_table_repair` and `include_watermarks` parameters to `PDF2ExcelSettingData` to strengthen table structure repair and control whether watermark content is retained in Excel output
- Improve PDF-to-Word conversion to preserve document internal navigation links (TOC, cross-references) by default
- Improve PDF-to-Word conversion performance and reduce memory usage for complex documents
- Improve PDF-to-Word heading recognition accuracy for better Word heading style mapping
- Improve PDF-to-Word paragraph recognition, page break handling, and cross-page table continuity

### Office to PDF

- Add Linux platform support for `Office2PDFSettingData::is_embed_font` font embedding
- Add DOC (Word 97-2003) format support to `Office2PDF::ConvertFromWord`
- Add `e_ErrNotMatchFont` error code for font-missing scenarios in Office-to-PDF conversion

### Platform

- Add Linux ARM64 .NET Core platform support

## Bug Fixes

### PDF to Word

- Fix crash when converting specific PDF files to Word on Linux .NET platform
- Fix conversion failure producing no output file for specific documents
- Fix exception (`0x77574080 ntdll.dll`) in MFC-based projects during PDF-to-Word conversion in Debug x86 mode
- [Linux] Fix incorrect font substitution where Song typeface renders as Hei in converted Word output
- Improve font selection to avoid Segoe UI Light for better cross-application compatibility with WPS Office
- Fix font style loss (e.g., bold) in converted Word documents
- Fix incorrect font size in conversion output causing layout disruption
- Fix extra spaces between characters in paragraph text of converted Word output
- Fix title character overlap in converted Word documents
- Improve layout stability for translation round-trip workflows where longer translated text caused subsequent page disruption
- Fix crop marks at page corners interfering with third-party translation software
- Fix table of contents misalignment in converted Word documents
- Fix layout misalignment in converted Word output for specific files
- Fix PDF headers and footers incorrectly converted as body text instead of Word header/footer sections
- Fix extra line breaks at end of text lines causing layout disruption during translation write-back
- Fix Arabic content loss during PDF-to-Word conversion
- Improve conversion quality for large documents: reduce layout issues, output file size bloat, and excess page count
- Improve cross-application rendering consistency between Microsoft Office and WPS Office
- Fix faded text, abnormal table rendering, content loss, and text overlap for specific files
- Fix table of contents loss or corruption with headings not recognized in converted output
- Fix `enable_generate_headers_and_footers = true` not taking effect in `PDF2WordSettingData`

### PDF to Excel

- Fix cell text placed inside drawing shapes instead of editable cells
- Fix excessive conversion time and incorrect table structure with cells appearing as images
- Fix content loss when converting built-in test documents

### Word to PDF

- Fix crash in `Office2PDF::ConvertFromWord` when converting specific DOCX files
- Fix hang with memory spike to 4 GB when converting specific Word files
- Fix table content loss in specific regions during conversion
- Improve character spacing and paragraph layout fidelity on Windows
- Fix `is_embed_font = true` not taking effect on Windows in `Office2PDFSettingData`
- [Linux] Fix blank PDF output on Red Hat systems missing Calibri font
- Fix incorrect character spacing causing line break differences from original Word document
- Fix bold text appearing excessively thick in converted PDF output
- Fix missing last sentence in converted PDF for specific documents
- Fix graphical shape rendering deviations and incorrect text line breaks

---

# Foxit Conversion SDK v3.0.0

Release Date: 31 July 2025

## Breaking Changes

- Linux GCC minimum supported version changed from 4.9.4 to 5.4
- Node.js library drops support for Node.js v8 and v9

## New Features and Enhancements

### PDF to Office

- Add Go language support for Linux 32/64-bit platforms
- Add Python ABI3 compatibility for broader Python version support
- Improve text paragraph recognition to reduce text box output
- Improve conversion stability and output standardization
- Improve border table recognition
- Improve nested table output appearance in PDF-to-Word conversion
- Improve header/footer recognition in PDF-to-Word conversion
- Improve heading recognition in PDF-to-Word conversion
- Improve table output quality in PDF-to-Excel conversion

### Office to PDF

- Add Linux platform support for Office-to-PDF conversion
- Improve font loading performance for faster conversion
- Add multi-level nesting support for Drawing and Paragraph elements in Word-to-PDF conversion
- Add vertical paragraph alignment in Drawing objects for Word-to-PDF conversion
- Add PowerPoint page-level navigation support in PPT-to-PDF conversion

## Bug Fixes

### PDF to Word

- Fix converted Word document content being non-editable
- Fix crash during PDF-to-Word conversion stress testing with GSDK 10.0 Java Linux version
- Fix PDF-to-Word conversion getting stuck without producing output

### PDF to PowerPoint

- Fix extra gray background block in PDF-to-PPT conversion output

### Word to PDF

- Fix incorrect conversion of complex Word layouts with nested Drawing and Paragraph elements
- Fix Drawing objects with vertical paragraph alignment not rendering correctly
- Fix multi-layer Drawing objects displaying incorrectly
- Fix PowerPoint page-level navigation not being supported

---

# Foxit Conversion SDK v2.1.0

Release Date: 16 December 2024

## New Features and Enhancements

### PDF to Office

- Add page break insertion option via `PDF2WordSettingData` `enable_generate_page_rendered_break` parameter
- Add trailing space removal and image inclusion options via `PDF2OfficeSettingData`
- Add Excel workbook settings via `PDF2ExcelSettingData`
- Add restricted PDF file conversion support
- Add `ConvertCheckCallback` class and `SetConvertCheckCallback()` for conversion validation
- Update `PDF2Office::Initialize()` to accept `fx_binary_program_path` for improved conversion flexibility
- Improve table, formula, and highlighted text recognition in PDF-to-Word conversion
- Improve cell border and background recognition in PDF-to-Excel conversion
- Improve content integrity for converted text and paths in PDF-to-PPT conversion
- Improve processing efficiency for files with complex path structures
- Improve overall program stability to prevent memory leaks

### Office to PDF

- Add outline conversion support in Word-to-PDF via `Word2PDFConfig`
- Add workbook conversion options in Excel-to-PDF via `Excel2PDFConfig`
- Improve support for complex layouts including vertical text
- Improve preservation of gradients, multi-column alignment, and 3D elements
- Improve large file conversion stability and efficiency through memory optimization

---

# Foxit Conversion SDK v2.0.0

Release Date: 18 March 2024

## New Features and Enhancements

### Office to PDF

- Add Office-to-PDF conversion support for Windows (Word, Excel, PowerPoint) — beta

### PDF to Office

- Add footnote and endnote generation in PDF-to-Word conversion via `enable_generate_footnotes_and_endnotes` parameter
- Add header and footer generation in PDF-to-Word conversion via `enable_generate_headers_and_footers` parameter
- Add `PDF2ExcelSettingData` class for decimal symbol and thousands separator configuration
- Improve text block recognition accuracy in PDF-to-PowerPoint conversion

### Platform

- Add AnyCPU configuration support for Dotnet/DotNetCore

## Bug Fixes

- Fix conversion failure or slowdown due to high memory usage
- Fix crash when converting specific pages containing borderless tables in PDF-to-PPT conversion
- Fix text conversion anomalies including inconsistent fonts, text rendered as images, missing text, position offset, and overlap
- Fix incorrect underline recognition and extra spaces/line breaks in PDF-to-Word output
- Fix text content misidentified as tables in PDF-to-PPT conversion
- Fix multiple lines of text placed in same cell in PDF-to-Excel conversion
- Fix inconsistent page numbers and pages split into multiple pages in PDF-to-Word output

---

# Foxit Conversion SDK v1.5.0

Release Date: 07 November 2023

## New Features and Enhancements

### PDF to Office

- Add page range, PDF comment inclusion, and page layout retention settings via `PDF2OfficeSettingData`
- Improve KaiTi font support
- Improve chart recognition and output display
- Improve WPS Office compatibility for consistent formatting and font colors

## Bug Fixes

### PDF to Word

- Fix incorrect text styling including missing bold formatting and inconsistent font sizes
- Fix text overlap after conversion
- Fix page-level outline recognition and output issues
- Fix list recognition failures for specific files
- Fix highlight style and annotation display issues
- Fix inconsistent watermark layout between Word and PDF after conversion
- Fix missing title and author information in document properties
- Fix increased page count in output for specific files
- Fix text objects incorrectly recognized as shape objects for dual-layout content
- Fix extra empty paragraphs generated in output

### PDF to Excel

- Fix extended processing time and freezing for specific files
- Fix incomplete number display in cells after conversion
- Fix reduced text size within cells after conversion
- Fix shifted content within cells after conversion
- Fix cell content wrapping after conversion
- Fix missing cell backgrounds after conversion

---

# Foxit Conversion SDK v1.4.0

Release Date: 22 August 2023

## New Features and Enhancements

### PDF to Office

- Add heading conversion support from PDF to Word

### Platform

- Add Linux C library support
- Update Node.js compatibility to the latest version

## Bug Fixes

- Update OpenSSL to version 1.1.1 to address known vulnerability
- Fix numeric bullet point changes in PDF-to-Word output
- Fix bullet point misalignment in PDF-to-Word output
- Fix inconsistent content display in PDF-to-Excel output when opened in WPS Office
- Fix inconsistent display of converted files across different office editors
- Fix missing fonts and inconsistent font appearance in PDF-to-Word conversion for specific files
- Fix Calibri font changing to another font in PDF-to-Word output
- Fix table column width reduction causing data misalignment in PDF-to-Excel output
- Fix solid color cell backgrounds not properly recognized in PDF-to-Excel conversion
- Fix text becoming invisible after zooming in on PDF-to-Excel output in specific office editors

---

# Foxit Conversion SDK v1.3.0

Release Date: 09 June 2023

## New Features and Enhancements

### PDF to Office

- Add clip-path text recognition and conversion
- Add PDF pop-up comment and reply conversion to Word review comments in PDF-to-Word

### Platform

- Add Linux platform support
- Add multi-threading and thread safety

## Bug Fixes

- Fix missing spaces in converted output for specific files
- Fix incorrect recognition and conversion of underlined text
- Fix text being converted into images in specific files
- Fix crash and memory leak issues in Office conversions
- Fix misaligned paragraph formatting after converting text with highlighted StyleSpan

---

# Foxit Conversion SDK v1.2.0

Release Date: 04 April 2023

## New Features and Enhancements

### Platform

- Add Node.js conversion library hosted on GitHub
- Add Visual Studio 2019 and 2022 demo projects

---

# Foxit Conversion SDK v1.1.0

Release Date: 03 March 2023

## New Features and Enhancements

### PDF to Office

- Add AI-powered borderless table recognition via machine learning HTTP Restful API (`enable_ml_recognition` option)

---

# Foxit Conversion SDK v1.0.0

Release Date: 17 January 2023

## New Features and Enhancements

- Initial release supporting PDF-to-Word, PDF-to-Excel, and PDF-to-PowerPoint conversion on Windows
- Supported languages: C/C++, C# (DotNet, DotNetCore), Java, Node.js, Python

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win_amd64.whl (47.7 MB view details)

Uploaded CPython 3.11+Windows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win32.whl (45.8 MB view details)

Uploaded CPython 3.11+Windows x86

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.4 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.12+ i686

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win_amd64.whl (47.7 MB view details)

Uploaded CPython 3.10Windows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win32.whl (45.8 MB view details)

Uploaded CPython 3.10Windows x86

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win_amd64.whl (47.7 MB view details)

Uploaded CPython 3.9Windows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win32.whl (45.8 MB view details)

Uploaded CPython 3.9Windows x86

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win_amd64.whl (47.7 MB view details)

Uploaded CPython 3.8Windows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win32.whl (45.8 MB view details)

Uploaded CPython 3.8Windows x86

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win_amd64.whl (47.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win32.whl (45.8 MB view details)

Uploaded CPython 3.7mWindows x86

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win_amd64.whl (47.5 MB view details)

Uploaded CPython 3.6mWindows x86-64

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win32.whl (45.6 MB view details)

Uploaded CPython 3.6mWindows x86

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (55.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (55.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (55.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 078facb7702c829271354881dfafa8ee627b2c7808fa2480adc03374b5d24630
MD5 6aed533e9eabda215eaf7e57797252fc
BLAKE2b-256 80556790f82c5f4a47e25974fed09b7df95d98108f0038ef868e7568e39dff15

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 8e0c8f443f8cae99a6cfee343c408746a7eea686119adb0d99eb64899ccf95b3
MD5 e186067aaf6df762a7e000bd15d0f66d
BLAKE2b-256 b7480527d9f5c64aa3645a0258116b1300b96569b5a3b64ee7ac10a7a34e9071

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 659f52ed2b754ab3cd41e8277f78a22bb6ff953ebde448bd2bae1833bc7625b9
MD5 ee87c15cd08aeb6759e244617bc50497
BLAKE2b-256 2f2d045882d4b1321eb7b06745b08eaa121b5b57520adaf094ebbaa3889df043

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7aa660c88a6bf59e155f13804c39e7d34e5f2a57259b1a299e8e6a479b17f931
MD5 a83ee056d775b7e5b3ca85a3d6d5c98c
BLAKE2b-256 f20fd2d4856dafe00a8b05a8373a0567fce5207d2d128f8d90a0ea8696e36e84

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b3b78b0cf522c27179166f6f918026e3de9f0161bb4ab9fb4a72747c2bcf8e09
MD5 1b24f323a4263bf32c9523efeb11829d
BLAKE2b-256 51df60f3c1989745f510f0cb7593fccaa6fc9bb944f0bc2904ccb32d65bf5263

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp311-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b6f445fdad23c74a23646730a0b9ed50fbd19acfc6be1214741408badd18c57
MD5 ea89266432505ce753d7979cd6a7e001
BLAKE2b-256 e01c3baf323a82ab2ddd40c0ce79983c0e023818fdbed8d91e277be0c43ebd0f

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5fe8105ceeb778496a4d07dc5bbb867e3d34fcc2049ab7ae91119c19157202c
MD5 d78627f4e8b03ac669e994dc88e10e87
BLAKE2b-256 c2c793c3762f4a0e220852469b70dc4ee01e7d39354d4788f3ad056de52a8081

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e022fda9118dabe6f4e8a2c4cb21320df4f5b7a6dddd741a6dcd05780f905e2
MD5 be361904bb4166e3886c9ab6e0672a4d
BLAKE2b-256 88a4b876b3a4b401ed837d601c9d65e82605d8c0b80184c7c21b6c58918ef97a

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00092f69717fa6dcc9828d78243a0c007c1bbcba4c99deb6006c21c3d8895dd8
MD5 1c2deee638b0ea24dedc4faa8b38693c
BLAKE2b-256 d95a03572b39f59acbc26b5054e2257b1ecd087a25a720424ef0ebe9eb09088f

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d5b230318031dd4d7800640b6de6a422dd17bf5db0df673a2f5702574d093f1
MD5 2285091eb7a84fa369f0a4fca74ecf76
BLAKE2b-256 69bf5eea2b8a54bd19e913e0f96fdb27c0370c904bb518e78b1df78596813429

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a77db040a7a9f3446d54a558314d69d081ab66d940bc74fe84c6733373e9d7c2
MD5 226ceb9637648573f51e7b8c6d4d2b78
BLAKE2b-256 ea006dfca8fe1f2046f7496f74466b7eb9e084212854456e1f064590cd0fb2e1

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36bac09ebcd1eeaaedde9672056e2d8c7bbf24aef2b16c63b80fd8eed29d35c3
MD5 133035fda08390a085ddae0b33a93b2d
BLAKE2b-256 ba5d3eb914d60cc8a79108830d353da30bac6d4ccd97705ed76f91248d48ad28

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58c2137e593269144033d32a051e0f119afe795f4095082ca3a461199631405a
MD5 2226f543eceba3bbb1e0e75301a05d84
BLAKE2b-256 58b2e4c4ba842398a9deae9beda309ff0fd5439ebc603ac0513e59a996107a3a

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 af4b2353c392b3a751074b4c783cc1a20d7f38cc5755a37dc9490dc7a20c35b5
MD5 7d6024329927a5711b9e72a5b030af2e
BLAKE2b-256 76314c1d8840276c5e6e889101c155e2451455f80c9ad4fbccdb8ba63eee3ace

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d19a3c1eb82ad29c1a1ea2fc7def5397b50a2e807840348e495d0891dd91f8c
MD5 bb8b5fbce059ee3a0dcca6134919d426
BLAKE2b-256 5ae3c9e5061d08cf21e5fff8266bf720874962c88d3b60893e9c10efe2a0f3bf

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 891b427bfd158d3b8ba8de7a90120010a78c55d3743768370aaeb9d76ace6847
MD5 4ba6a3b6dab7ae0377acd5fb91208d4b
BLAKE2b-256 12ea13124309cfd3b154b518fdaf35364e913ed11be48458fba13db936d3befb

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 23441a0eb762c498ed9e4c1e0be8e669713c8560d296fe912131d45b27bfc566
MD5 56f40353e6b7729e47c3cb0f42c329ae
BLAKE2b-256 c114ce4cbfe91de997bec18139001e7137f6a54df92e857fe225cb1f7242c0f2

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d8c9e53c098457bcae1e03b8c991ac8fa7d8bb4b723def1a462af7188f90417c
MD5 b39259ef6a8d5162b42051dac7e2c244
BLAKE2b-256 154ae51a992c55403227103a3309700a211633b9249a22f2a97c3e13b2ed2f34

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f999124ce3461b42952acab57f80bbfbe5020ad54c774a026abf5ef6a82c32c1
MD5 d1a8699a6f1e04e2a2611850a106924c
BLAKE2b-256 fad05eacf5fe7e10749c2c08cb11bd85accadfca892f92a969f9def24677450c

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a0de49dde7cc5572346b1ef18a154cd1e033d18e4c2d813c52840e0521f9ba95
MD5 1b340b79eda81befd3d295098b9c1467
BLAKE2b-256 ac9e6050e20dbc97cbe054445cb1db5ad43a3f51653b1d9b318da3442ec65e3e

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89d4868e6521c7d0adbbc4c9c84ef1c0ddd4530f5a26f7850b1ea7d2d79be715
MD5 ac1956bb2e2a048a38cc0114b9a62238
BLAKE2b-256 3eaa73e4298224de574a0aa77f5710bb6d36ff9e046b5a5d0c88d8b754bb2e3b

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6aa6e842cf08ca0d98e0aab366518cd41b4c39206c63ea3bef9e16bbf5bef1f6
MD5 90adbaadbd57d4c0c0cab529e8526e25
BLAKE2b-256 486cf5c3dc464b23746aed1d8c48c356593b5fa519313ffbfb91f4044c3a1eb1

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 26b956c4cf208be6ed07f2e5a50a774d0f69bd67924b82bc66ef9f4f30d81e2d
MD5 32c99323d7ae3b894771094f2b3a2173
BLAKE2b-256 9251fd74f356c8656ed69dd01c0541ec60b17959b0673d7262ca91a7c8f5fab7

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f95f72f9474b218e7a4e3fd81c93ead2c2443046dc47a0732bd466f54fb7df0f
MD5 8f97fdedf6c44ea79dc4a94a6c16c3b6
BLAKE2b-256 73ae48374d6c22330a4f0b1d988ab50326c4d93a6a37be7be66e591ee9e97fb1

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf484986091fd567816dcdd7169bb134e32889a74512b46020de94e7f49030cf
MD5 f89414e1653e4263b9ef52602d48394f
BLAKE2b-256 e0f4a910af4719644aaf7da0eb5b00be82bf87f06a9439bdc4a2edf5d10328a1

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9b63eb76a3b1a513c3350f054dabde6a116bceabc198847226b9eccf7ff5c0ea
MD5 c379dbb7fdbd691024994a169726fd24
BLAKE2b-256 15c1bbc3217b2065038c74f2935dc4c4ee38427b2299de90ebd6a8c4e7445980

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cef145d7bc10b9ac0bcfb21c0b8c7ef230431833ee573fb37a0bbcd47e3ed22
MD5 47f851f4269df0d055c9ba0c281e85d8
BLAKE2b-256 7f55dd6e6c1c9e9965492d07c5aead2de71f772b97b1e61c0a01d1e55bd69ea6

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 583bea5af26e4ca15a9401aefff030e41a43652f6174d0606e0fa9fcf3290f05
MD5 9a68e6e5104611f3389b59fad26456c7
BLAKE2b-256 c471b5215b57d97972fd1ac2ac228de4194ca41a17394993375acd08efd47965

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b8e8fe49b29b069e5db01e6ac134cbc5bcfdbfcaf54c855795391318a083a4a
MD5 b567045653a157421e80159ca12f4c28
BLAKE2b-256 dbc0dbddff569c94452bb1726ce7360925af0a005c4651fb290f90d955301a3b

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc6178d5246ffadcf8d188aeb38492cf8fe50a949a8624441e99cbbbafa58bf7
MD5 bf982baebab2939519d11af33be67b5c
BLAKE2b-256 320dcc6cd74d27512880555f4d25fc88cd49dd42f62cdf7b1014c85834cd1f6a

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ec0f5a0d4ac82b81470890daab717d0f30fef4e00627c2d15b6f4eb18f15ec4e
MD5 a9a3de4d7e54600dce3b8576de4215fe
BLAKE2b-256 f40f3f4b9349f5db375d7d042f22a8b64e60eb415e3911dbd734a11d26275067

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bad06342b16d045b30153ed224883a1b464b5f10261809c1b630d1cdfe261831
MD5 f3c10181f4177dc0e15f1734c2c85105
BLAKE2b-256 1df91eddb1204ac1b3bb220792c9b6c03e24394c714e8622b413872a7b304ca3

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc3d55ef7d6d5644f0473d8ad9ffb31ebb33bc764d67413568f2bce004fb4218
MD5 c0edb6ca0d41a8d66562335d7bc3181d
BLAKE2b-256 3089a06634bca099085cb10b14b5a452eafb6cbc0d3a58299b558634bb4e3eba

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 507ccf7f0b05a52453459d0b2b6aafefde034c6379edaafc42af912f7d7a3c75
MD5 a2d9c6afa792eb507788ca7450b22a5f
BLAKE2b-256 2ef7f5725c8a0c9c1c8c01c6066073b8f3209405dd46537f98719dfc87f1b09a

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 13eb51619e0e6fcd21d9c6f6fe448e5e91ead23f9c4f476fb4480bef82cb6d9a
MD5 ff83d386265076c7d26aa4703d11d522
BLAKE2b-256 8afe664391685b92c2da275797149c8cd3b483c14346f2b4c575fd700953e092

See more details on using hashes here.

File details

Details for the file foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for foxitpdfconversionsdkpython3-3.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a4ed4a638db28dbbff0e469a336e03d2c6625f1217ab295d4faf20e23bf30c3
MD5 711bc67d83c5ac56f64eb858ffc02296
BLAKE2b-256 1ac8e2bed699c1ab050ce934ef0cd266fd32b97e6bb8967eb6c49259af8fdbdc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page