# The Official DocuSign Admin Python Client
[![PyPI version][pypi-image]][pypi-url]
<!--[![PyPI downloads][downloads-image]][downloads-url]-->
[![Build status][travis-image]][travis-url]
[PyPI module](https://pypi.python.org/pypi/docusign_admin) that wraps the <a href="https://developers.docusign.com/docs/admin-api/">DocuSign Admin</a> API
[Documentation about the DocuSign Admin API](https://developers.docusign.com/)
## Requirements
- Python 2.7 (3.7+ recommended)
- Free [Developer Sandbox](https://go.docusign.com/sandbox/productshot/?elqCampaignId=16531)
## Compatibility
- Python 2.7+
## Installation
### Path Setup:
1. Locate your Python installation, also referred to as a **site-packages** folder. This folder is usually labeled in a format of Python{VersionNumber}.
**Examples:**
- **Unix/Linux:** /usr/lib/python2.7
- **Mac:** /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7
- **Windows:** C:\Users\{username}\AppData\Local\Programs\Python\Python37
1. Add the path to your Python folder as an environment variable.
**Unix/Linux:**
- Type the following command into your console:
**export PYTHONPATH = "${PYTHONPATH}:.:/path/to/site-packages"**
- Optionally, you can add this command to your system profile, which will run the command each time Python is launched.
**Windows:**
<ol>
<li>Open the Windows <b>Control Panel.</b></li>
<li>Under the System and Security category, open the <b>System</b></li>
<li>Select <b>Advanced System Settings</b> to open the <b>System Properties</b> dialog box.</li>
<li>On the <b>Advanced</b> tab, select the <b>Environmental Variables</b> button at the lower-right corner.
<ol style="list-style-type: lower-alpha">
<li>Check if <b>PYTHONPATH</b> has been added as a <b>system variable.</b></li>
<li>If it has not, select <b>New</b> to add it. The variable you add is the path to the <b>site-packages</b></li>
</ol>
</li>
</ol>
**Note:** If you are still unable to reference python or pip via your command console,you can also add the path to the site-packages folder to the built-in environment variable labeled **Path** , which will take effect the next time you start your machine.
### Install via PIP:
1. In your command console, type:
pip install docusign-admin
Note: This may require the command console be elevated. You can accomplish this via sudoin Unix/Linux, or by running the command console as an administrator in Windows.
## Dependencies
This client has the following external dependencies:
- certifi v14.05.14+
- six v1.8.0+
- python\_dateutil v2.5.3+
- setuptools v21.0.0+
- urllib3 v1.15.1+
- jwcrypto v0.4.2+
- py-oauth2 v0.0.10+
## Support
Log issues against this client through GitHub. We also have an [active developer community on Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).
## License
The DocuSign Python Client is licensed under the [MIT License](https://github.com/docusign/docusign-python-client/blob/master/LICENSE).
[pypi-image]: https://img.shields.io/pypi/v/docusign_admin.svg?style=flat
[pypi-url]: https://pypi.python.org/pypi/docusign_admin
[downloads-image]: https://img.shields.io/pypi/dm/docusign_admin.svg?style=flat
[downloads-url]: https://pypi.python.org/pypi/docusign_admin
[travis-image]: https://img.shields.io/travis/docusign/docusign-admin-python-client.svg?style=flat
[travis-url]: https://travis-ci.org/docusign/docusign-admin-python-client
Raw data
{
"_id": null,
"home_page": null,
"name": "docusign-admin",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "Swagger, Docusign Admin API",
"author": null,
"author_email": "devcenter@docusign.com",
"download_url": "https://files.pythonhosted.org/packages/4d/c1/f6dc2bf2a7d215accfb10e1cbc4d1d2a2663ddd809fe5fafc046ba96fdc3/docusign-admin-2.0.0.tar.gz",
"platform": null,
"description": "# The Official DocuSign Admin Python Client\n\n[![PyPI version][pypi-image]][pypi-url]\n<!--[![PyPI downloads][downloads-image]][downloads-url]-->\n[![Build status][travis-image]][travis-url]\n\n[PyPI module](https://pypi.python.org/pypi/docusign_admin) that wraps the <a href=\"https://developers.docusign.com/docs/admin-api/\">DocuSign Admin</a> API\n\n[Documentation about the DocuSign Admin API](https://developers.docusign.com/)\n\n## Requirements\n\n- Python 2.7 (3.7+ recommended)\n- Free [Developer Sandbox](https://go.docusign.com/sandbox/productshot/?elqCampaignId=16531)\n\n## Compatibility\n\n- Python 2.7+\n\n## Installation\n\n### Path Setup:\n\n1. Locate your Python installation, also referred to as a **site-packages** folder. This folder is usually labeled in a format of Python{VersionNumber}.\n\n**Examples:**\n\n- **Unix/Linux:** /usr/lib/python2.7\n- **Mac:** /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7\n- **Windows:** C:\\Users\\{username}\\AppData\\Local\\Programs\\Python\\Python37\n\n1. Add the path to your Python folder as an environment variable.\n\n**Unix/Linux:**\n\n- Type the following command into your console: \n **export PYTHONPATH = \"${PYTHONPATH}:.:/path/to/site-packages\"**\n- Optionally, you can add this command to your system profile, which will run the command each time Python is launched.\n\n**Windows:**\n\n<ol>\n <li>Open the Windows <b>Control Panel.</b></li>\n <li>Under the System and Security category, open the <b>System</b></li>\n <li>Select <b>Advanced System Settings</b> to open the <b>System Properties</b> dialog box.</li>\n <li>On the <b>Advanced</b> tab, select the <b>Environmental Variables</b> button at the lower-right corner.\n <ol style=\"list-style-type: lower-alpha\">\n <li>Check if <b>PYTHONPATH</b> has been added as a <b>system variable.</b></li>\n <li>If it has not, select <b>New</b> to add it. The variable you add is the path to the <b>site-packages</b></li>\n </ol>\n </li>\n</ol>\n\n**Note:** If you are still unable to reference python or pip via your command console,you can also add the path to the site-packages folder to the built-in environment variable labeled **Path** , which will take effect the next time you start your machine.\n\n### Install via PIP:\n\n1. In your command console, type:\npip install docusign-admin\n\nNote: This may require the command console be elevated. You can accomplish this via sudoin Unix/Linux, or by running the command console as an administrator in Windows.\n\n## Dependencies\n\nThis client has the following external dependencies:\n\n- certifi v14.05.14+\n- six v1.8.0+\n- python\\_dateutil v2.5.3+\n- setuptools v21.0.0+\n- urllib3 v1.15.1+\n- jwcrypto v0.4.2+\n- py-oauth2 v0.0.10+\n\n\n## Support\n\nLog issues against this client through GitHub. We also have an [active developer community on Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).\n\n## License\n\nThe DocuSign Python Client is licensed under the [MIT License](https://github.com/docusign/docusign-python-client/blob/master/LICENSE).\n\n\n[pypi-image]: https://img.shields.io/pypi/v/docusign_admin.svg?style=flat\n[pypi-url]: https://pypi.python.org/pypi/docusign_admin\n[downloads-image]: https://img.shields.io/pypi/dm/docusign_admin.svg?style=flat\n[downloads-url]: https://pypi.python.org/pypi/docusign_admin\n[travis-image]: https://img.shields.io/travis/docusign/docusign-admin-python-client.svg?style=flat\n[travis-url]: https://travis-ci.org/docusign/docusign-admin-python-client\n",
"bugtrack_url": null,
"license": null,
"summary": "Docusign Admin API",
"version": "2.0.0",
"project_urls": null,
"split_keywords": [
"swagger",
" docusign admin api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3e9acca140ba84815cdb6594b359d3f61d059a4400f2f7115e619258eae1027f",
"md5": "7e7b1538322a7c70435a601478b67d2c",
"sha256": "8953b23cd52fdbfd11a7058d88920bc065398236251335451dfdb5a6f6200113"
},
"downloads": -1,
"filename": "docusign_admin-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7e7b1538322a7c70435a601478b67d2c",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 285082,
"upload_time": "2024-10-30T15:26:51",
"upload_time_iso_8601": "2024-10-30T15:26:51.609558Z",
"url": "https://files.pythonhosted.org/packages/3e/9a/cca140ba84815cdb6594b359d3f61d059a4400f2f7115e619258eae1027f/docusign_admin-2.0.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4dc1f6dc2bf2a7d215accfb10e1cbc4d1d2a2663ddd809fe5fafc046ba96fdc3",
"md5": "30bcd8434c967831ba110c12019a63b4",
"sha256": "bb8ce2a6ff1b7c7a7225d55c4cae32d880f874f454d2617584db348b31bbbf30"
},
"downloads": -1,
"filename": "docusign-admin-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "30bcd8434c967831ba110c12019a63b4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 96755,
"upload_time": "2024-10-30T15:26:53",
"upload_time_iso_8601": "2024-10-30T15:26:53.510839Z",
"url": "https://files.pythonhosted.org/packages/4d/c1/f6dc2bf2a7d215accfb10e1cbc4d1d2a2663ddd809fe5fafc046ba96fdc3/docusign-admin-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 15:26:53",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "docusign-admin"
}