boldsign


Nameboldsign JSON
Version 1.0.0b3 PyPI version JSON
download
home_pagehttps://github.com/boldsign/api-csharp-sdk
SummaryBoldSign API
upload_time2024-10-30 05:23:04
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/32/b0/565cad3e4fc1292a69e5cc6dd7621daf60f698b5ea5c0718589ff8a87a11/boldsign-1.0.0b3.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\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.0b3",
    "project_urls": {
        "Homepage": "https://github.com/boldsign/api-csharp-sdk"
    },
    "split_keywords": [
        "boldsign",
        " api",
        " sdk",
        " boldsign api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ddcd5b6dce52877cb5254417bf3d0d7c6a85ecbd8df518d238b6f22f1544d19",
                "md5": "a1d2e10be41bee22f61e953486849651",
                "sha256": "c1e8c4391001886c1ad0c5b35d292f3d33364aa32ef9b3dabdceb645364a68e9"
            },
            "downloads": -1,
            "filename": "boldsign-1.0.0b3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a1d2e10be41bee22f61e953486849651",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 315333,
            "upload_time": "2024-10-30T05:23:02",
            "upload_time_iso_8601": "2024-10-30T05:23:02.749544Z",
            "url": "https://files.pythonhosted.org/packages/1d/dc/d5b6dce52877cb5254417bf3d0d7c6a85ecbd8df518d238b6f22f1544d19/boldsign-1.0.0b3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32b0565cad3e4fc1292a69e5cc6dd7621daf60f698b5ea5c0718589ff8a87a11",
                "md5": "a3553b4e28eb76d3e09c5df414c46414",
                "sha256": "6eb2a9c081a164b31561d6f5e94233459df625e7d75b382679defb79ac358ca6"
            },
            "downloads": -1,
            "filename": "boldsign-1.0.0b3.tar.gz",
            "has_sig": false,
            "md5_digest": "a3553b4e28eb76d3e09c5df414c46414",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 115458,
            "upload_time": "2024-10-30T05:23:04",
            "upload_time_iso_8601": "2024-10-30T05:23:04.987010Z",
            "url": "https://files.pythonhosted.org/packages/32/b0/565cad3e4fc1292a69e5cc6dd7621daf60f698b5ea5c0718589ff8a87a11/boldsign-1.0.0b3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-30 05:23:04",
    "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.56364s