We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3524c commit 581a1aeCopy full SHA for 581a1ae
1 file changed
examples/balance.py
@@ -0,0 +1,13 @@
1
+from os import environ
2
+from pprint import pprint
3
+from python_anticaptcha import AnticaptchaClient, ImageToTextTask
4
+from sys import argv
5
+api_key = environ["KEY"]
6
+
7
8
+def process():
9
+ client = AnticaptchaClient(api_key)
10
+ pprint(client.getBalance())
11
12
+if __name__ == "__main__":
13
+ pprint(process())
0 commit comments