|
|
@@ -11,6 +11,11 @@ import re
|
|
|
import urllib
|
|
|
import uuid
|
|
|
|
|
|
+# It was not possible to enter the entire captcha response on MacOS.
|
|
|
+# Importing readline changes the implementation of input() and solves the issue.
|
|
|
+# See https://stackoverflow.com/q/65735885 and https://stackoverflow.com/q/7357007.
|
|
|
+import readline
|
|
|
+
|
|
|
class KoboException( Exception ):
|
|
|
pass
|
|
|
|