We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 58cc956Copy full SHA for 58cc956
README.md
@@ -0,0 +1,35 @@
1
+## qencode-api-python-client
2
+
3
+####Installation
4
5
+**install sdk libraries from github**
6
7
+````
8
+cd your-workspace-folder
9
+git clone https://github.com/qencode-dev/qencode-api-python3-client
10
+cd qencode-api-python3-client
11
+pip install -r requirements.txt
12
+python setup.py install
13
14
+**install from pip**
15
16
17
+sudo pip install qencode
18
19
20
+##Usage
21
22
23
+import qencode
24
25
+client = qencode.client(API_KEY)
26
+client.create()
27
28
+task = client.create_task()
29
+task.start(TRANSCODING_PROFILEID, VIDO_URL)
30
31
32
33
+####Documentation
34
35
+Documentation is available at <https://docs.qencode.com>
0 commit comments