boldsign


Nameboldsign JSON
Version 1.0.0b5 PyPI version JSON
download
home_pagehttps://github.com/boldsign/api-csharp-sdk
SummaryBoldSign API
upload_time2024-12-27 07:42:24
maintainerNone
docs_urlNone
authorBoldSign
requires_pythonNone
licenseMIT
keywords boldsign api sdk boldsign api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BoldSign

Easily integrate BoldSign's e-signature features into your Python applications. This package simplifies sending documents for signature, embedding signing ceremonies, tracking document status, downloading signed documents, and managing e-signature workflows.

## Prerequisites

- Python 3.7+
- Free [developer account](https://boldsign.com/esignature-api/)

## Documentation

- [Official API documentation](https://developers.boldsign.com/)

## Installation & Usage

You can install this package by using the pip tool: 
```sh
pip install boldsign
```
(You may need to run pip with root permission: sudo pip install boldsign)

Then import the package:
```python
import boldsign
```

## Dependencies

This package requires the following dependencies to function properly. They will be installed automatically when you install the package:
 
- urllib3>=1.25.3 
- python-dateutil 
- pydantic>=2 
- typing-extensions>=4.7.1 

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import boldsign

configuration = boldsign.Configuration(
    api_key = "***your_api_key***"
)

# Enter a context with an instance of the API client
with boldsign.ApiClient(configuration) as api_client:
    # Create an instance of the DocumentApi class
    document_api = boldsign.DocumentApi(api_client)

    # Define the signature field to be added to the document
    signatureField = boldsign.FormField(
        fieldType="Signature",  # Field type is Signature
        pageNumber=1,  # Specify the page number
        bounds=boldsign.Rectangle(x=100, y=100, width=100, height=50),  # Position and size of the signature field
    )

    # Define the signer with a name and email address
    signer = boldsign.DocumentSigner(
        name="David",  # Name of the signer
        emailAddress="david@example.com",  # Signer's email address
        signerType="Signer",  # Specify the signer type
        formFields=[signatureField]  # Assign the signature field to the signer
    )

    # Prepare the request body for sending the document for signature
    send_for_sign = boldsign.SendForSign(
        title="Agreement",  # Title of the document
        signers=[signer],  # List of signers
        files=["/documents/agreement.pdf"]  # Path to the document file to be signed
    )
    
    # Send the document for signature and capture the response
    api_response = document_api.send_document(send_for_sign=send_for_sign)
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/boldsign/api-csharp-sdk",
    "name": "boldsign",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "boldsign, api, sdk, BoldSign API",
    "author": "BoldSign",
    "author_email": "support@boldsign.com",
    "download_url": "https://files.pythonhosted.org/packages/da/0b/204f71171052e14f4ee4b1ecc8c86a1d6141eb78a41244c989cd767b5cdd/boldsign-1.0.0b5.tar.gz",
    "platform": null,
    "description": "# BoldSign\r\n\r\nEasily integrate BoldSign's e-signature features into your Python applications. This package simplifies sending documents for signature, embedding signing ceremonies, tracking document status, downloading signed documents, and managing e-signature workflows.\r\n\r\n## Prerequisites\r\n\r\n- Python 3.7+\r\n- Free [developer account](https://boldsign.com/esignature-api/)\r\n\r\n## Documentation\r\n\r\n- [Official API documentation](https://developers.boldsign.com/)\r\n\r\n## Installation & Usage\r\n\r\nYou can install this package by using the pip tool: \r\n```sh\r\npip install boldsign\r\n```\r\n(You may need to run pip with root permission: sudo pip install boldsign)\r\n\r\nThen import the package:\r\n```python\r\nimport boldsign\r\n```\r\n\r\n## Dependencies\r\n\r\nThis package requires the following dependencies to function properly. They will be installed automatically when you install the package:\r\n \r\n- urllib3>=1.25.3 \r\n- python-dateutil \r\n- pydantic>=2 \r\n- typing-extensions>=4.7.1 \r\n\r\n## Getting Started\r\n\r\nPlease follow the [installation procedure](#installation--usage) and then run the following:\r\n\r\n```python\r\n\r\nimport boldsign\r\n\r\nconfiguration = boldsign.Configuration(\r\n    api_key = \"***your_api_key***\"\r\n)\r\n\r\n# Enter a context with an instance of the API client\r\nwith boldsign.ApiClient(configuration) as api_client:\r\n    # Create an instance of the DocumentApi class\r\n    document_api = boldsign.DocumentApi(api_client)\r\n\r\n    # Define the signature field to be added to the document\r\n    signatureField = boldsign.FormField(\r\n        fieldType=\"Signature\",  # Field type is Signature\r\n        pageNumber=1,  # Specify the page number\r\n        bounds=boldsign.Rectangle(x=100, y=100, width=100, height=50),  # Position and size of the signature field\r\n    )\r\n\r\n    # Define the signer with a name and email address\r\n    signer = boldsign.DocumentSigner(\r\n        name=\"David\",  # Name of the signer\r\n        emailAddress=\"david@example.com\",  # Signer's email address\r\n        signerType=\"Signer\",  # Specify the signer type\r\n        formFields=[signatureField]  # Assign the signature field to the signer\r\n    )\r\n\r\n    # Prepare the request body for sending the document for signature\r\n    send_for_sign = boldsign.SendForSign(\r\n        title=\"Agreement\",  # Title of the document\r\n        signers=[signer],  # List of signers\r\n        files=[\"/documents/agreement.pdf\"]  # Path to the document file to be signed\r\n    )\r\n    \r\n    # Send the document for signature and capture the response\r\n    api_response = document_api.send_document(send_for_sign=send_for_sign)\r\n```\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "BoldSign API",
    "version": "1.0.0b5",
    "project_urls": {
        "Homepage": "https://github.com/boldsign/api-csharp-sdk"
    },
    "split_keywords": [
        "boldsign",
        " api",
        " sdk",
        " boldsign api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12d9820319be19d70343e303819ed623eebff2242599c35b03d60c1dae06a1e7",
                "md5": "93af7c0ee7c11627af21696a855a0724",
                "sha256": "463dba5385b905972aa2fe065f55107079c0f88add30b1fe723cba47bc3a3c66"
            },
            "downloads": -1,
            "filename": "boldsign-1.0.0b5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "93af7c0ee7c11627af21696a855a0724",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 315137,
            "upload_time": "2024-12-27T07:42:21",
            "upload_time_iso_8601": "2024-12-27T07:42:21.373729Z",
            "url": "https://files.pythonhosted.org/packages/12/d9/820319be19d70343e303819ed623eebff2242599c35b03d60c1dae06a1e7/boldsign-1.0.0b5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da0b204f71171052e14f4ee4b1ecc8c86a1d6141eb78a41244c989cd767b5cdd",
                "md5": "09bf9f730bbf7bfa0454909157efef11",
                "sha256": "acf735e6a32349859fbdb036d7ee2f9ceb0bd7b046c1f27269cae44c1fb5ae4e"
            },
            "downloads": -1,
            "filename": "boldsign-1.0.0b5.tar.gz",
            "has_sig": false,
            "md5_digest": "09bf9f730bbf7bfa0454909157efef11",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 115752,
            "upload_time": "2024-12-27T07:42:24",
            "upload_time_iso_8601": "2024-12-27T07:42:24.728131Z",
            "url": "https://files.pythonhosted.org/packages/da/0b/204f71171052e14f4ee4b1ecc8c86a1d6141eb78a41244c989cd767b5cdd/boldsign-1.0.0b5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-27 07:42:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "boldsign",
    "github_project": "api-csharp-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "boldsign"
}
        
Elapsed time: 0.46939s