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
Copy file name to clipboardExpand all lines: README.md
+56-18Lines changed: 56 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# GroupDocs.Conversion Cloud Python SDK
2
-
Python package for communicating with the GroupDocs.Conversion Cloud API
2
+
3
+
This repository contains GroupDocs.Conversion Cloud SDK for Python source code. This SDK has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
3
4
4
5
## Requirements
5
6
@@ -18,32 +19,69 @@ Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/
18
19
python setup.py install
19
20
```
20
21
21
-
## Getting Started
22
+
### Create an account
23
+
Creating an account is very simple. Go to Dashboard to create a free account.
24
+
We’re using Single Sign On across our websites, therefore, if you already have an account with our services, you can use it to also access the [Dashboard](https://dashboard.groupdocs.cloud).
25
+
26
+
### Create an API client app
27
+
Before you can make any requests to GroupDocs Cloud API you need to get a Client Id and a Client Secret. This will be used to invoke GroupDocs Cloud API. You can get it by creating a new [Application](https://dashboard.groupdocs.cloud/applications).
28
+
29
+
## Convert document
22
30
23
31
Please follow the [installation procedure](#installation) and then run following:
24
32
25
33
```python
26
34
# Import module
27
35
import groupdocs_conversion_cloud
28
36
29
-
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
30
-
app_sid="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
31
-
app_key="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
37
+
# Get your clientId and clientSecret at https://dashboard.groupdocs.cloud (free registration is required).
38
+
client_id="XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
39
+
client_secret="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
32
40
33
41
# Create instance of the API
34
-
api = groupdocs_conversion_cloud.InfoApi.from_keys(app_sid, app_key)
0 commit comments