Foxit PDF SDK For Python3
Project description
Foxit PDF SDK v11.1 Release Date: 31 March 2026
==================================================================
## Breaking Changes
The following changes require code updates when upgrading from v11.0. Existing projects that use these APIs will not compile or may behave differently without modification.
### `ActionCallback` — Parameter change and new pure virtual methods
The `ActionCallback` class has **1 parameter change** and **7 new pure virtual methods**. Any subclass must be updated.
**Parameter change** — `GetPageWindowRect` now requires `document` and `page_index` parameters:
```cpp
// v11.0
virtual RectF GetPageWindowRect() = 0;
// v11.1
virtual RectF GetPageWindowRect(const foxit::pdf::PDFDoc document, int page_index) = 0;
```
**New pure virtual methods** — implement with empty bodies if the functionality is not needed:
```cpp
virtual void NotifyBeginDoJob(const pdf::PDFDoc document,
JavascriptModifyItemInfo::JavascriptEventType event_type) = 0;
virtual void NotifyAfterDataChange(const pdf::PDFDoc document,
JavascriptModifyItemInfo modify_item_info) = 0;
virtual void NotifyEndDoJob(const pdf::PDFDoc document,
JavascriptModifyItemInfo::JavascriptEventType event_type) = 0;
virtual bool InitModifyItem(const pdf::PDFDoc document,
ModifyItemType item_type, int page_index, const WString dict_name) = 0;
virtual void ResetModifyItem(const pdf::PDFDoc document) = 0;
virtual int GetVisiblePageCount(const pdf::PDFDoc document) = 0;
virtual int GetVisiblePage(const pdf::PDFDoc document, int index) = 0;
```
### `DocProviderCallback` — New pure virtual method (XFA)
A new pure virtual method is added. Subclasses of `DocProviderCallback` must implement it:
```cpp
virtual void NotifyWidgetChangeInfo(const XFADoc doc, XFAWidgetModifyInfo change_info) = 0;
```
This only affects projects that use the XFA module. Implement with an empty body if not needed.
### `IconProviderCallback::GetIcon` — Parameter change (silent)
The `GetIcon` method has changed. This is **not** a pure virtual, so compilation will succeed, but existing overrides will **silently stop being called**:
```cpp
// v11.0
virtual PDFPage GetIcon(Annot::Type annot_type, const char* icon_name, ARGB color);
// v11.1
virtual PDFPage GetIcon(Annot::Type annot_type, const char* icon_name, ARGB color,
foxit::pdf::objects::PDFDictionary* annot_dict);
```
**Action required:** Update the override to include the new `annot_dict` parameter. Enable `-Woverloaded-virtual` (GCC/Clang) or `/W4` (MSVC) to detect this at compile time.
### `OCRCallback` — New pure virtual method
A new pure virtual method `IsImageIgnored` is added to the existing `OCRCallback` class:
```cpp
// v11.0
class OCRCallback {
virtual bool NeedToCancelNow(const wchar_t* info) = 0;
};
// v11.1
class OCRCallback {
virtual bool NeedToCancelNow(const wchar_t* info) = 0;
virtual bool IsImageIgnored(foxit::pdf::graphics::ImageObject* image_object) = 0; // NEW
};
```
**Action required:** All subclasses of `OCRCallback` must implement `IsImageIgnored`. Return `false` to preserve previous behavior (no images ignored).
### `OCRConfig` constructor and `Set()` — Parameter change
The parameterized constructor and `Set()` method gained 3 new required parameters:
```cpp
// v11.0 (5 parameters)
OCRConfig(bool is_detect_pictures, bool is_remove_noise, bool is_correct_skew,
bool is_enable_text_extraction_mode, bool is_sequentially_process);
// v11.1 (8 parameters)
OCRConfig(bool is_detect_pictures, bool is_remove_noise, bool is_correct_skew,
bool is_enable_text_extraction_mode, bool is_sequentially_process,
bool is_auto_overwrite_resolution, int resolution_to_overwrite, int confidence);
```
**Action required:** Add the 3 new parameters. Use `true, 300, 0` for default-equivalent behavior. Alternatively, use the default constructor which initializes all fields with defaults.
### `OCR::OCRPDFPage` / `OCRPDFDocument` / `OCRConvertTo` / `OCRPDFDocuments` — New parameter
All OCR processing methods add an `OCRProgressCallback*` parameter:
```cpp
// v11.0
void OCRPDFPage(PDFPage pdf_page, bool is_editable);
void OCRPDFPage(PDFPage pdf_page, bool is_editable, const OCRConfig config);
// ... same pattern for OCRPDFDocument, OCRConvertTo, OCRPDFDocuments
// v11.1
void OCRPDFPage(PDFPage pdf_page, bool is_editable, OCRProgressCallback* callback = NULL);
void OCRPDFPage(PDFPage pdf_page, bool is_editable, const OCRConfig config, OCRProgressCallback* callback = NULL);
```
- **C++**: Has default value `NULL` — existing calls compile without changes.
- **C# / Python / Java / Node.js / Go**: Bindings do **not** inherit the C++ default value. Existing calls must add the new parameter explicitly (pass `null` / `None` / `nil` to preserve previous behavior).
### PDF to Office — API parameter changes
The following conversion APIs have breaking changes in this release. For detailed migration guidance with code examples, see the **Breaking Changes** section in the **Conversion SDK v3.1.0 Release Note** (included in the Conversion SDK package).
1. `PDF2WordSettingData` — Add required parameter `max_blank_paragraphs_per_page_bottom`; default value of `enable_generate_headers_and_footers` changed from `false` to `true`
2. `PDF2PowerPointSettingData` — Add required parameter `enable_adapt_to_largest_page`
3. `PDF2ExcelSettingData` — Add required parameters `enable_aggressive_table_repair` and `include_watermarks`
4. `PDF2OfficeSettingData` — Add required parameter `enable_matching_system_fonts`
5. PDF-to-Word now preserves internal document navigation links by default## New Features and Enhancements
### Platform
- Add Node.js v21 and v22 support (extends previous v18-20 range)
- Add Node.js macOS platform support
---
### Conversion
- Add WPS-powered Office-to-PDF conversion on Windows via `Convert::FromWord/Excel/PowerPoint(..., e_Office2PdfEngineWps)`
- Add system font precise matching toggle for PDF-to-Word: `PDF2OfficeSettingData::enable_matching_system_fonts`
- Update PDF-to-Word to preserve internal document navigation links by default
- Add page size adaptation for PDF-to-PPT: `PDF2PowerPointSettingData::enable_adapt_to_largest_page`
- Add PDF-to-Excel table repair and watermark output controls: `PDF2ExcelSettingData::enable_aggressive_table_repair` / `include_watermarks`
- Add font embedding toggle for Linux Office2PDF: `Office2PDFSettingData::is_embed_font`
- Add version query APIs: `Office2PDF::GetVersion()` / `PDF2Office::GetVersion()`
- Update `Office2PDF::ConvertFromWord` to support DOC (Word 97-2003) format
---
### OCR
- Add progress callback via `OCRProgressCallback` class with `ProgressNotify(int current_rate)`
- Add Arabic language support: `OCREngine::SetLanguages("Arabic")`
- Add configuration parameters: `OCRConfig::confidence` (confidence threshold) and `OCRConfig::resolution_to_overwrite` (resolution override)
- Add standalone command-line tool for multi-process parallel OCR: `ocr_win64.exe` / `ocr_linux64`
- Add image filtering callback: `OCRCallback::IsImageIgnored(ImageObject*)`
---
### Rendering
- Add overprint rendering support: `Renderer::SetOverprint(bool is_to_enable_overprint)`
---
### Security and Signature
- Add pre-sign self-modification tracking callbacks in `ActionCallback`: `InitModifyItem()`, `ResetModifyItem()`, `NotifyBeginDoJob()`, `NotifyAfterDataChange()`, `NotifyEndDoJob()`; add `DocProviderCallback::NotifyWidgetChangeInfo()` for XFA widget change tracking
- Add `CertChainResolverCallback` and `TrustedCertStoreCallback` for cross-CA LTV enablement in `LTVVerifier`
- Add `Redaction::EnableFileStream()` to reduce memory peaks in high-redaction-volume scenarios via file stream
---
### Forms and Annotation
- Add 29 XFA event types to `XFADoc::EventType` for granular event handling (Click, Change, Enter, Exit, PreSign, PostSign, PreSave, PostSave, etc.)
- Update `IconProviderCallback::GetIcon` with `annot_dict` parameter for annotation dictionary access
---
### Document and Page
- Update `ActionCallback::GetPageWindowRect` with `document` and `page_index` parameters for multi-page JS layer (OCG) control
- Add `ActionCallback::GetVisiblePageCount()` and `ActionCallback::GetVisiblePage()` for querying visible pages in multi-page view
- Add methods to remove PDF logical structure tags: `PDFDoc::RemoveStructTree()`, `PDFStructTree::RemoveChild()`, `StructElement::RemoveChild()`
- Add `Font::IsCharSupported(uint32 unicode, const PDFDoc document)` for character support detection
- Add `Library::AddExternalFontPath()` and `Library::MatchExternalFontsOnly()` for external font path management
---
### 3D
- Add `PDF3DContext::Add3DAnnot()` to insert 3D annotation on a specified page (file path and ReaderCallback modes)
- Add 3D preset view and model tree interaction: `PDF3DAnnotInstance::ApplyPresetView()`, `GetPresetViewList()`, `ModelNode` class with visibility control
---
### Optimization
- Add transparency optimization with configurable resolution modes (Low/Medium/High): `OptimizerSettings::SetTransparencyMode()`
---
## Bug Fixes
### Conversion
- Fix PDF-to-Word crop marks at page corners causing translation software failures
- Improve PDF-to-Word cross-application rendering consistency between MS Office and WPS Office
- Fix PDF-to-Excel cell text placed inside shapes instead of cells
- Fix PDF-to-Excel table borders rendered as bitmaps overlaid on the table
- Fix PDF-to-Excel excessive conversion time with cells appearing as images
- Fix PDF-to-PPT page dimension changes with content shrunk to upper-left
- Fix `Office2PDF::ConvertFromWord` crash on specific DOCX files
- Fix incorrect character spacing in Word-to-PDF causing wrong line breaks
- Fix bold text appearing excessively bold in Word-to-PDF output
- Fix missing text (last sentence lost) in Word-to-PDF output
- Fix shape rendering deviations and incorrect text line breaks in Word-to-PDF
### OCR
- [Linux] Fix `OCRConvertTo` failure (`ERR_FREN_NO_PAGES`) due to missing Chinese fonts
- Fix `OCRConvertTo` error (`ERR_IMAGE_LIBJPEG_LIBRARY_RAISED_ERROR`) on specific files
- Fix `OCRConvertTo` only outputting first page of a 44-page document
### Rendering
- Fix incorrect CMYK-to-ARGB color conversion in Bitmap DIBFormat
- [Performance] Fix progressive rendering slowdown (17s->24s->30s->40s) with multiple open documents
- Fix `OutputPreview::SetSimulationProfile()` not reflecting different ICC profiles
- Fix missing text in OutputPreview rendering of specific PDFs
- Fix rendering inconsistencies with Adobe on specific PDF pages
- Fix crash when saving `Bitmap` created with `e_DIBRgb` via `Image::SaveAs`
- Fix abnormal rendering when adding `PathObject` to specific document pages
- Fix memory leak in `Bitmap` constructed from buffer where `delete()` did not free memory
### Printing
- Fix color discrepancies and uneven dot patterns in PrintManager output
- Fix intermittent crash in multi-threaded PrintManager usage
- Fix `FXPM_AddPDFFromFileToJob` and `FXPM_SetJobDocumentName` not supporting CJK paths
- Fix `FXPM_SetJobDuplex(1)` not enabling duplex printing
- Fix mixed-orientation page content not rotating with page direction
- Fix `SetRotation()` causing landscape PDFs to print with portrait text orientation
- Fix PrintJob only printing first file when multiple files added via `AddPDFFromFile`
### Forms
- Fix XFA `ExportData`/`ImportData` cycle corrupting table headers and digital signatures
- Fix XFA TextField Widget proliferation causing progressive load time increase and crash
- Fix C# ViewDemo rendering blank pages for specific XFA documents
- Fix JavaScript layer (OCG) visibility control having no effect
- [Regression] Fix `ActionCallback` trigger regression in v11 where some callbacks did not fire after field modification
- Fix "Inherit Zoom" bookmark destination only working for the first bookmark
### Document and Page
- Fix crash when calling `SaveAs` with `e_SaveFlagLinearized` after `StartEmbedAllFonts`
- Fix `fxhtml2pdf` zombie process after `Html2PDF` timeout
- [Performance] Fix `StartSplitByFileSize` taking over 1 hour for 25,000-page PDFs
- Fix excessive Redaction memory peaks in high-redaction-volume continuous-processing scenarios
- [Windows] Fix `ComplianceEngine::SetTempFolderPath()` writing to executable directory instead of system temp
- Fix C# `TextPage.GetTextInRect` returning question marks for certain characters
- Fix `GetEditingTextCaretPosition` returning incorrect positions causing misplaced IME candidate window
### Other
- Fix visual artifacts from parallel multi-process Optimizer image compression
- Fix specific 3D PDF showing blank after clicking 3D annotation area
- Improve AutoTagging recognition of Figure-type images vs. Adobe Auto-Tag
- Fix incorrect content matching in Comparison for OCR documents
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-win_amd64.whl
- Upload date:
- Size: 36.8 MB
- Tags: CPython 3.11+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
466538a860fdccf3318d3c6bf128bbb5f336a1238d1c257eafa6371f2c55b694
|
|
| MD5 |
d72587e36390dcfb242441a4bae20d08
|
|
| BLAKE2b-256 |
77fa6147c8b811bb7c722eb043761659fdbee8c3e0344772e4777cbfff2d6cb7
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-win32.whl
- Upload date:
- Size: 32.3 MB
- Tags: CPython 3.11+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
897ff2fd20324161f4f808914df9312e38fe690cb3a468483ec8cac5a4ee767c
|
|
| MD5 |
779e8226a29292875791a3d421fbd985
|
|
| BLAKE2b-256 |
a99486073c960b9a04ac245fcb036e4d76a4a44c8294dc7d46222fb6a61ecc74
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 60.2 MB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c85baf750aec74483687be80a175a7e34b8bcbd71f961edb472deef5514bf68a
|
|
| MD5 |
8a11d6c6214b0bebfa82ae67ce15a74f
|
|
| BLAKE2b-256 |
0e5d2fcba77c84f8a787b04afaaac732eceeb01de351106852bc9b2650cd529d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 58.8 MB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b58514e2edc6feb1c30f7704478208550ff41988dd6b0bcd6efd962e0002324e
|
|
| MD5 |
cf524bb1fb29b7fc9a8e99384d3ba249
|
|
| BLAKE2b-256 |
0eda430f346b2b27ded890b19c1c0c12b813e714007f65b82b5d04e042ea3e4d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 56.4 MB
- Tags: CPython 3.11+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e073cac6597e02e5971f306c2caf56e850e074a0272d0f52efb12472adcf3c1
|
|
| MD5 |
bea1fb349d74f797a2c0649ae02d4bce
|
|
| BLAKE2b-256 |
eb6f634946d6c5a4a751d9215a81e62ec6031360766cf04dc56d3cd890a5e7a9
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 58.8 MB
- Tags: CPython 3.11+, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fd5639d0b5ce9e285fa33ffe9a211f091feeb0fd36801240c904c28f2326c10
|
|
| MD5 |
60dbad06caffa9b8097fdb6be9a6989c
|
|
| BLAKE2b-256 |
dbcc4accba60fd7cb1250fdd8f86895fc61bc94ddd8fe4598daf6e5b3e3f83b9
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 57.9 MB
- Tags: CPython 3.11+, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02716f5325eb35ce152039e357b3c6d044db1c99ceb839092e2159239e2c974e
|
|
| MD5 |
f60711d23318aa2a7b038f992c346d0f
|
|
| BLAKE2b-256 |
a492dc680f2b14834c38bf2212c8b8405bd7fce0e8c24be161ffeefcd830b4d2
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.11+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d5332c2826bfd8591af8ee31194f041b0ee8a6e970ea5056f07032eb3278968
|
|
| MD5 |
0ba9f6c8d743d8311a42d5e34063b518
|
|
| BLAKE2b-256 |
cd51823556dd5ed46105a9f62b93e11b5085ecd18978cc66f98b1c3806c8019b
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp311-abi3-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp311-abi3-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.11+, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08288e26419d657ddc79673a68a69e980679d124d08d196d6cbbaead376a377b
|
|
| MD5 |
28444ab912e4d59e2b9b791470f7c590
|
|
| BLAKE2b-256 |
f789a7310a8b538958f8ecc4ed927ecef5a80794afaeeddbcfe653574ab4a318
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 36.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18707820c7dd5a3292f3e530a43e6c415d4fc39dc7e662bca2e984586463e34a
|
|
| MD5 |
5f6a1b79a6498d1cf0c6e7a525e7cba5
|
|
| BLAKE2b-256 |
5fffc768f85220e42b24f660c8788e5e69256a106d326d4054d3df4d20d9bb0e
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 32.3 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
454d59e427bc3c5248281a8a9471660e812135ccf783ddaf2d003ce0673d4e15
|
|
| MD5 |
18aeff33ce76eb8a42b4b8bbe4451e07
|
|
| BLAKE2b-256 |
8a81ae56d3f45f8def20487ea3a3285d2da08f0954c2871f2a33372823cd762b
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
466d803a2e7505c792b3660db0296fcb8ba318899b77ed27760c000e72549f10
|
|
| MD5 |
1c09eee8d33abdfcc814fcbb7c268aa0
|
|
| BLAKE2b-256 |
81b4c43f9b7ccaeb4de1b60fd9c143f94efcf332d192cb81529c614cf5c1c6b2
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 57.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e20c0c6fa4635037385c46cfea84fd25709e94dda0aeb448b76ce27d2924c37
|
|
| MD5 |
be63c8b4a41299ef28c59c76432cd9bb
|
|
| BLAKE2b-256 |
8af3172fec83a7a3588f0edac59c66009b6b01587414975a0db64dfc6bfbe62b
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 54.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75783920fa22f78a6c2d7707e35ca921f8c3985212ba7c5e224e6547cfe0b488
|
|
| MD5 |
310b4eca6bc8d9fa305bf14d81091d75
|
|
| BLAKE2b-256 |
79452f503e254ac2b33f004d2fe8b1295fc4224808a4c439a782955e8bfff53f
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 57.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e58169b3d41b797febc0e7caaae3979ee6a23c3053edc538c1e28960f4f06f4b
|
|
| MD5 |
7150f2316cf49395ab5cba4a8f9d0fb5
|
|
| BLAKE2b-256 |
df871316ece0d597250a19639461b2de5d19c7f0ee2a9a160b81a3714bfa1351
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 56.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5eeb0b42b7601321945d5bf294c7f2fa86f0db551759e24d545bfa175f26109
|
|
| MD5 |
0424b20b7971d9ebd543553ce5c3e3eb
|
|
| BLAKE2b-256 |
3eb031d3f81ea8a0007189a9756efb77aea4ed574c87fd6567986acdd48f85c0
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf235be58dacc10aa8d87cb06521d2d330b1355ea045d62bec8b802c53fae00
|
|
| MD5 |
db2f352da1a4e8576c2cf86bb225bc43
|
|
| BLAKE2b-256 |
3cc348c13d551989ed1ea50f844bb36b5950398ad0999e474d3946a17919b392
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6965d4d472335b3795a9aaf825cf9116d6dbf386f35b0666ab04059c9ffd8d4
|
|
| MD5 |
da8f07cc9c656062f0285c3e97779597
|
|
| BLAKE2b-256 |
fa4ecb374433969a7ec09086017ce59c136d15d45ad5194b5194a301450ac562
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 36.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b668bee56a38a637789fb317a0f39d81d13638fbc38d94e6144be3034317b913
|
|
| MD5 |
9bc4887597bd255612a54f2327205d32
|
|
| BLAKE2b-256 |
03164e002cfcf432e585047a52da2585e3c6b3b4664a09df62a12f2a03703d67
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 32.3 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b204c6cc558b5b7885ef3c1fdceeb4531636add16dce325484b41bddb880ae99
|
|
| MD5 |
9f851b6663abf271c0a2737f6166e4ea
|
|
| BLAKE2b-256 |
5ee701bd6cac424322da69c88e53f49597b9220799a6821e6cc35c5da704f717
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
347196013e40b68fe6cfa7fea18734f6a655309de829a6f6304601ef546e2f11
|
|
| MD5 |
c927f732a3acae87e16b042eb51f46fc
|
|
| BLAKE2b-256 |
07af04f9bafcb7590241ffb4c6dfe2df2f802089a0cac6c159aa826e836594fe
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 57.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2cdc336eb5b1ea9d479eb672597a6d2885cddf6f48b80e41ff96b1d7ce1f427
|
|
| MD5 |
013127cd977025d386a9b832f8fc3ad7
|
|
| BLAKE2b-256 |
e1c735f94ff90dc07c22aee8787f7658936d9c27dd0d3ecec77fbd8b17a2d4ef
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 54.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3602659ecd4633dd46a7548658f0c7f7d140929f682d9c8bdc745e3c5958540
|
|
| MD5 |
e851874f0538bee8b78626b3101139e2
|
|
| BLAKE2b-256 |
dafcefd02c4618578325f474b872bd1122b7f8632715d0faf433056113e263bc
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 57.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f89c287cf765e62573f9a2dfb1f7af9d53dc8c457eb9b0f9084885b83c61cb5
|
|
| MD5 |
352e10e9a5ed1c6e54390c8df895d494
|
|
| BLAKE2b-256 |
a7c111eae9335ecb727a22463536bd4d7865a30cee9fd4ab08415c9a85a0b464
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 56.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82a5c5fc3407328114527825aef83d3face0f1a6895920a205ddc35e775ffa4e
|
|
| MD5 |
a9b77c4afb99d330dabab84e117cfee6
|
|
| BLAKE2b-256 |
0225626dba1a7835d965e37772604d4695d3e9418c65e01df246724c0519d59c
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cd1488e78de96b15ff828a383473d908a513318cb0b81d81c97c79f8671f7dc
|
|
| MD5 |
30f9d0103b9f58b1cd543d114f3778ac
|
|
| BLAKE2b-256 |
27b6e06d3baf041d7b179ba490e51d868e6ae58f99b420ac9591fa6bc036df12
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee062f33055de6da0f7096c7ed8d400311820c4a6d7c5e1ff94d70f87c73c70b
|
|
| MD5 |
cce8d5f13176297452a39906e9520e2d
|
|
| BLAKE2b-256 |
99b8cf4d94fe6d59348a1b60d192b1cbe385d3b267b7b5fa07dbda3810c7f2f1
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 36.7 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dd20bf25d2a23b06a5e81916e8c42a5338236155522015fe77b34b75e7c8f64
|
|
| MD5 |
96201396d806d98c620cb161e5ec9f24
|
|
| BLAKE2b-256 |
98fbff5f0175ad7f37e62cf9c54bc1e26d392cf35e0b63dacace2652a867f72d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 32.3 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bd90bb587409e627dd0092718475b2853ae60fcfb4ffc8fe632d42a415974f3
|
|
| MD5 |
ae107f237ebfe1405d9c9ac5b69e3ffd
|
|
| BLAKE2b-256 |
e315fb1f335b032c9c8530cce9714e3703e18140df95175b38fec9541ec310d1
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe280f66acba7a990d58fd1b90d062cb01c0f7e7dfae1e4d6aafb4ebdfcc4e00
|
|
| MD5 |
c5bc4776418057bc8c6b6e2f75e1a18a
|
|
| BLAKE2b-256 |
c2db82f2eb1efed5507ec3fac7aa046a8aa6b3d7609f0dbbee1aa9ddb7ffde19
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 56.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48232b04e17067b5936177e1c72eb3136bdb13d57b0d174a03e9396813b8557f
|
|
| MD5 |
2a7f76696591a883a3676539ba5b5f1a
|
|
| BLAKE2b-256 |
a08eba725db67fb21ae6c38bd859c23af86393bb041ece12bb713b945894cf3d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 54.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17d7364317646a7b7aa01d84c3398e22da35ed06364c61c0536297818b635982
|
|
| MD5 |
dae9f26c89641fec62e1d08676a4c8f5
|
|
| BLAKE2b-256 |
0b88dbc7f0866e8f929cd55617fcefaddcb2d19396bf5124536cd04684d0af5b
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 57.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a133c5329b2ad900c4baf474f4e99ed849701a57a447baef7a80548895a8e1a5
|
|
| MD5 |
447f2e2d1e576e5b40499e3663112398
|
|
| BLAKE2b-256 |
6baaada15a48f240842b0956aba4ac38970d2f21dd6e06f7cd8bb97ed7101a39
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 56.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a64cc32fce2e03adf86f5ea2b52f2755a95de63746cabb2dbeaeb7df0025747
|
|
| MD5 |
297bcf709d587aa5fe5026b1d904dffd
|
|
| BLAKE2b-256 |
e6879e94d48c51a2124ed355030cd22259b7f49903661168c18a3c7e4098c495
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
208adca7a32c6c7cfd2155048dcc4b8be85f04451977e27ee2eb52786289a48e
|
|
| MD5 |
2d48269e65946524a859b1a633979fc7
|
|
| BLAKE2b-256 |
c0b0cf065c9168d0cfaabfc1638f7a2a76ee6e594544eed6551183b3c537dbcf
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c74ad3f8fe8cef7e91aa43100d4656275c5439ed44f3711b8363620d79b85c64
|
|
| MD5 |
0ef2b5b3d155c784dc0b20c77601d3e3
|
|
| BLAKE2b-256 |
6a1727054c32a1d5c62603ec7d0b89156e51151b7e2d8957478862149737d9d3
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 36.7 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fd531a0b48dbf808051207cec84ecdfaaef19b05d629fd2ff08c6fff86545e0
|
|
| MD5 |
611c16ce26633ea6a70ea888439785cb
|
|
| BLAKE2b-256 |
1132ad82ad20f4dba09ea59947e0ee177972eb0f1fc7761ecc60d83964f94979
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 32.3 MB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0b68f9e557c17e151b7178fcecd62edb5d7d429ee0e8d88ddc8c36aae4dc4a2
|
|
| MD5 |
7376b87ea31855a2eacdb258ee0011ae
|
|
| BLAKE2b-256 |
4c46079c83041b0f6f9c96a3117677843e7dc7d3f428d215c6fdec4981a37c4a
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3f5dac3e5bbd76233740340866c2743376187e1f13bcff89dfbdb28db14d636
|
|
| MD5 |
dd1e2af0619e986d212ade6f9e0ab994
|
|
| BLAKE2b-256 |
4064fae8fd84221f2b9b0b3a3eb4913eb0b6b8d82989c9dcd4abecc9328f4948
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 56.9 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a4284cd417615135df1c2896ce70555e180f9987524daea5eb2187f4f10a8a4
|
|
| MD5 |
e128ecb612a3438fd238d21b091318c6
|
|
| BLAKE2b-256 |
d2ce701f290516d56bebd25f695572937358f77168a8026880badc075d3e594b
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 54.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74d33792e567fb56bf7e43b888a7a676b158facd77787b9e903c742330484c93
|
|
| MD5 |
d6b7a61f99bed610db25916a230d339b
|
|
| BLAKE2b-256 |
4a6f315f423be9f68293387f5a9ce5b2a22c10196207f701d834ad4f13227b8d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 57.5 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af8eaf57e44b994bdc86b75b7324666b82aa8140377b37e3a4f052f80fe88b16
|
|
| MD5 |
de4bbb03aeb46ac1528de72478e3e099
|
|
| BLAKE2b-256 |
92ebff66006ca249fb84c5247ad730f125bf9d14c0bb18d6cbc598309d72da97
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 56.7 MB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cb814b32eb24fc90e155492ed3d6cf9196ad10878f4d90af0d903b58c3b6740
|
|
| MD5 |
e03c5bbc73e76779cac09fb786d19cd9
|
|
| BLAKE2b-256 |
78f635358233cee79d0be4067323b3f733a495626da80d72abe9fc47b696921c
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b688b70fa6f9c71871b1c2baeffae98cc47b1cebf614e93e8f0fa76d8db807f
|
|
| MD5 |
218de4b663234afa4bdb3412d44961dd
|
|
| BLAKE2b-256 |
62b92d653462db99283aaa10c645e4d6ccbcf045b06cf47c7f4fdcaa41fa8522
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-win_amd64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 36.5 MB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e32ca2b1a7d7595c36e4759f858f1d7b8f1be638d9616134c3cd0c863cdb6033
|
|
| MD5 |
d7dd7847c256819105e7072c295fa7c2
|
|
| BLAKE2b-256 |
d71a970c131cd0db480d40cc4eed270f37aac249bb4f9ae99f5a82143c2ac5c9
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-win32.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-win32.whl
- Upload date:
- Size: 32.2 MB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65fccb7e01d4b47852512a3d867531f652106d81bb60a91396343747b83f9d6f
|
|
| MD5 |
5fa8977ec35c0ffda42345fefdcf5257
|
|
| BLAKE2b-256 |
d06cfce4d40c451a63514aac108ed927ef762ccf0176c9cae760a6b9237be7de
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.1 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
543b9d5a1d2db4a039db6cec45fc75624956399c9762756c47de93412e509372
|
|
| MD5 |
54616dd80c428de402b5a42986b216db
|
|
| BLAKE2b-256 |
9608576cb450808cf654ca9ed8548e9960e0336abb28340c821e1894555dab2d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 56.9 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f939794562df588a4536827de91485b7a329d696bbcc3087eccb6234bebeb48
|
|
| MD5 |
64cdce05554de540624a953830853646
|
|
| BLAKE2b-256 |
96921b26caa9e3d528b99dad249f8d518c5ff8d3735bcfd847c207495d8ac4bf
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 54.6 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8058dd0acd4029ddd3b7cf6e8329aebf6d65b054c7eac805fa32aa65250ee723
|
|
| MD5 |
a14e0cf67285d88340caa2a80d1db653
|
|
| BLAKE2b-256 |
c6989ed83e1398a203f27d07e9120a195b7ba1e5922842c9b64b48adf9063298
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
- Upload date:
- Size: 57.5 MB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00dfa57b006bd8def6dd3a9d70e5e207776c871648ac8cb04b80d1c0c776b489
|
|
| MD5 |
1bf1332466d737ce5e6e41a586599b8c
|
|
| BLAKE2b-256 |
153b9f5c313ea68523445cb9c8d1676bd578b9c2c15c73a04faa9b7a25bd9f4d
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 56.7 MB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe8b4941995e5ba23bbf8c48588a1a67bc2cfdedef5250fe0e6e33145fa95111
|
|
| MD5 |
258988db9bd3e02dabe178c617050e69
|
|
| BLAKE2b-256 |
1eba55cddbd771a41709e7e9004076d159ae2cd08415b166e195a33064960b2c
|
File details
Details for the file foxitpdfsdkpython3-11.1.0-cp36-cp36m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: foxitpdfsdkpython3-11.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 41.9 MB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e90f76e2c13904c1425d4d71000e4a75d5f6a65a0e0ac3229a51ff83159099c0
|
|
| MD5 |
a432579008d4e10a1789e370016d6a5c
|
|
| BLAKE2b-256 |
74f312116d124f1bdd089dea149d851f9d7b217bd876d546d6ce7256d0b2b36b
|