https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-python
Python module to communicate with the GroupDocs.Annotation REST API. Annotate documents & images in the Cloud with zero initial cost.
https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-python
annotation-cloud-api document document-annotation excel images pdf powerpoint pypi pypi-package python python-sdk tiff word
Last synced: 11 days ago
JSON representation
Python module to communicate with the GroupDocs.Annotation REST API. Annotate documents & images in the Cloud with zero initial cost.
- Host: GitHub
- URL: https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-python
- Owner: groupdocs-annotation-cloud
- License: mit
- Created: 2019-07-02T12:50:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-15T08:06:06.000Z (7 months ago)
- Last Synced: 2025-08-31T21:32:12.076Z (5 months ago)
- Topics: annotation-cloud-api, document, document-annotation, excel, images, pdf, powerpoint, pypi, pypi-package, python, python-sdk, tiff, word
- Language: Python
- Homepage: https://products.groupdocs.cloud/annotation/python
- Size: 5.7 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GroupDocs.Annotation Cloud Python SDK
Python package for communicating with the GroupDocs.Annotation Cloud API
## Requirements
Python 2.7 or 3.4+
## Installation
Install `groupdocs-annotation-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:
```sh
pip install groupdocs-annotation-cloud
```
Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/setuptools):
```sh
python setup.py install
```
## Getting Started
Please follow the [installation procedure](#installation) and then run following:
```python
# Import module
import groupdocs_annotation_cloud
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# Create instance of the API
api = groupdocs_annotation_cloud.InfoApi.from_keys(app_sid, app_key)
try:
# Retrieve supported file-formats
response = api.get_supported_file_formats()
# Print out supported file-formats
print("Supported file-formats:")
for format in response.formats:
print('{0} ({1})'.format(format.file_format, format.extension))
except groupdocs_annotation_cloud.ApiException as e:
print("Exception when calling get_supported_file_formats: {0}".format(e.message))
```
## Licensing
GroupDocs.Annotation Cloud Python SDK licensed under [MIT License](http://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-python/LICENSE).
## Resources
+[**Website**](https://www.groupdocs.cloud)
+[**Product Home**](https://products.groupdocs.cloud/annotation)
+[**Documentation**](https://docs.groupdocs.cloud/annotation/)
+[**Free Support Forum**](https://forum.groupdocs.cloud/c/annotation)
+[**Blog**](https://blog.groupdocs.cloud/category/annotation)
## Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/annotation).