File converter for the most commonly used formats, including DOCX, PDF, CAD, and many more.
Project description
File Signature Python API
Product Page | Docs | Demos | API Reference | Blog | Search | Free Support | Temporary License
GroupDocs.Signature for Python via .NET is a robust on-premise library designed for adding electronic signatures to documents. This powerful API allows developers to easily integrate digital signatures into their applications without the need for any third-party tools. It supports multiple signature types, such as text, image, barcode, and QR code, providing flexibility across different file formats like PDF, Word, Excel, and more.
Without having to install any 3rd party component, you can use GroupDocs.Signature to build different types applications. For example, GroupDocs, using its own APIs, developed a free web application that allows people to sign their PDF documents online.
GroupDocs.Signature for Python requires you to use python programming language. For Node.js, Java and .NET languages, we recommend you get GroupDocs.Signature for Node.js, GroupDocs.Signature for Java and GroupDocs.Signature for .NET, respectively.
View API Features
GroupDocs.Signature for Python via .NET provides these popular features:
- Create and add signatures to documents of various file formats.
- Specify visual attributes of signatures, such as color, font, margins, etc.
- Search and fetch a list of signatures from a document.
- Determine if the document contains signatures meeting specified criteria.
- Extract basic information about the document.
- Generate image representation of document pages for preview.
- Distinguish created signatures from the actual document.
- Put encrypted text into the QR-code signature or embed custom data objects.
Supported File Formats
With GroupDocs.Signature for Python via .NET, developers and applications can view files of the following categories:
- Microsoft Word® formats: DOC, DOCM, DOCX, DOT, DOTM, DOTX
- Microsoft Excel® formats: XLS, XLSB, XLSM, XLSX, XLTX, XLTM
- Microsoft PowerPoint® formats: PPT, PPTM, PPTX, PPS, PPSM, PPSX, POTX, POTM
- OpenOffice® formats: ODT, OTT, ODS, OTS, ODP, OTP
- Image formats: BMP, DJVU, GIF, JPG, JPEG, PNG, SVG, TIF, TIFF, WEBP
- CorelDraw® formats: CDR, CMX
- Photoshop® formats: PSD
- Metafile formats: WMF
- Portable formats: PDF
Platform Independence
GroupDocs.Signature for Python via .NET does not require any external software or third-party tools and supports any 32-bit or 64-bit operating system with .NET Framework, .NET Core, or .NET installed. The supported operating systems and platforms are listed below:
Get Started
Ready to try GroupDocs.Signature for Python via .NET?
Fetch the package and install GroupDocs.Signature. Run this command: pip install groupdocs.signature
If you already have GroupDocs.Signature installed and want to get the latest version,
you have to run pip install --upgrade groupdocs.signature
instead.
Check out GroupDocs.Signature for Python for .NET documentation).
Sign with text the PDF file
import groupdocs.signature as gs
import groupdocs.signature.options as gso
# Open the document
with gs.Signature(sample_pdf) as signature:
# Set up text signature options
options = gso.TextSignOptions("John Smith")
options.left = 50
options.top = 200
options.width = 100
options.height = 30
# Sign document and save
result = signature.sign(output_file_path, options)
Sign with QRcode the PDF file
import groupdocs.signature as gs
import groupdocs.signature.options as gso
import groupdocs.signature.domain as gsd
# Open the document
with gs.Signature(sample_pdf) as signature:
# Set up text signature options
options = gso.QrCodeSignOptions("John Smith")
options.encode_type = gsd.QrCodeTypes.QR
options.left = 50
options.top = 200
options.width = 100
options.height = 30
# Sign document and save
result = signature.sign(output_file_path, options)
Sign with digital signature the PNG file
import groupdocs.signature as gv
import groupdocs.signature.options as gvo
with gs.Signature(sample_pdf) as signature:
options = gso.DigitalSignOptions(certificate_pfx)
options.image_file_path = image_handwrite
options.left = 50
options.top = 50
options.page_number = 1
options.password = "1234567890"
Product Page | Docs | Demos | API Reference | Blog | Search | Free Support | Temporary License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file groupdocs-signature-net-24.11.0.tar.gz
.
File metadata
- Download URL: groupdocs-signature-net-24.11.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecf1b1bafff1be02fed15786f5ae26bf72aa1e9512152584a6a788a0ba10f885 |
|
MD5 | e01b802e01797ac37c0ef2ef6eecbaaf |
|
BLAKE2b-256 | 72a89f3842759d2d454d5062b96fd12324411b86caa7543ceafca4ee99d7b332 |
File details
Details for the file groupdocs_signature_net-24.11.0-py3-none-any.whl
.
File metadata
- Download URL: groupdocs_signature_net-24.11.0-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbe3a8a63fe9300179cd041caacfed1b01c85dc668c56454fd46b7b0d37aeff4 |
|
MD5 | 7037ed8a6d8637c596d7168a6a234b1b |
|
BLAKE2b-256 | a24e41ab0ef190613757f12a05d93f686dcd9ebe34b26ff2904c3ddefd308c39 |