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.
1 parent 20fab66 commit 8ee68b6Copy full SHA for 8ee68b6
examples/language_identification_example.py
@@ -17,9 +17,9 @@
17
from rev_ai import language_identification_client
18
19
20
-# String containing your access token
21
from rev_ai.models.customer_url_data import CustomerUrlData
22
+# String containing your access token
23
access_token = "<your_access_token>"
24
25
# Create your api client
@@ -35,7 +35,7 @@
35
source_config=source_config,
36
notification_config=None)
37
38
-print("Submitted Job")
+print("Submitted Job: {}".format(job.id))
39
40
while True:
41
# Obtains details of a job in json format
@@ -79,5 +79,7 @@
79
# if you're sure you want to delete the job.
80
#
81
# client.delete_job(job.id)
82
+#
83
+# print("Deleted Job: {}".format(job.id))
84
85
print("Job Submission and Collection Finished.")
0 commit comments