You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python package for communicating with the GroupDocs.Annotation Cloud API
4
4
5
-
[GroupDocs.Annotation Cloud SDK for Python](https://products.groupdocs.cloud/annotation/python) wraps GroupDocs.Annotation RESTful APIs so you may integrate Document Annotation features in your own apps with zero initial cost.
5
+
## Requirements
6
6
7
-
The solution helps in applying annotations, sticky notes, watermark overlays, redactions, text replacements and markups to documents, presentations, emails, spreadsheets, PDF, images, and other file formats.
7
+
Python 2.7 or 3.4+
8
8
9
-
## Annotate Documents & Images in the Cloud
9
+
## Installation
10
10
11
-
- Import document annotations.
12
-
- Add or remove annotations.
13
-
- Export annotated document back to its original format.
## Get Started with GroupDocs.Annotation Cloud SDK for Python
36
-
37
-
First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.cloud/) and get your application information. Next, follow the installation steps to get started.
38
-
39
-
### Installation
40
-
41
-
GroupDocs.Annotation Cloud SDK for Python is available at [PyPI](https://pypi.org/project/groupdocs-annotation-cloud/) so install it using [PIP](https://pypi.org/project/pip/) as follows.
11
+
Install `groupdocs-annotation-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:
42
12
43
13
```sh
44
14
pip install groupdocs-annotation-cloud
@@ -50,21 +20,20 @@ Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/
50
20
python setup.py install
51
21
```
52
22
53
-
## Get Supported File Formats for Annotation
23
+
## Getting Started
54
24
55
25
Please follow the [installation procedure](#installation) and then run following:
56
26
57
27
```python
58
28
# Import module
59
29
import groupdocs_annotation_cloud
60
30
61
-
# Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
62
-
my_client_id=""
63
-
my_client_secret=""
31
+
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
0 commit comments