We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to search subtitles by moviehash and moviebytesize:
ost.search_subtitles([{'sublanguageid':language, 'moviehash':movie_hash, 'moviebytesize':movie_bytesize}])
If parameter movie_bytesize > 2147483647 (int32) - then I get this error: OverflowError('int exceeds XML-RPC limits')
But if I run original opensubtitles.org API with same parameters - everything works fine.
I attached examples of request and response from http://api.opensubtitles.org/xml-rpc (token should be fresh). Request to http://api.opensubtitles.org/xml-rpc: xml-rpc-request.zip Response from http://api.opensubtitles.org/xml-rpc: xml-rpc-response.zip
I found similar question here: https://stackoverflow.com/questions/72336127/python-robot-remote-server-overflowerror-int-exceeds-xml-rpc-limits May be it will help.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to search subtitles by moviehash and moviebytesize:
ost.search_subtitles([{'sublanguageid':language, 'moviehash':movie_hash, 'moviebytesize':movie_bytesize}])
If parameter movie_bytesize > 2147483647 (int32) - then I get this error:
OverflowError('int exceeds XML-RPC limits')
But if I run original opensubtitles.org API with same parameters - everything works fine.
I attached examples of request and response from http://api.opensubtitles.org/xml-rpc (token should be fresh).
Request to http://api.opensubtitles.org/xml-rpc: xml-rpc-request.zip
Response from http://api.opensubtitles.org/xml-rpc: xml-rpc-response.zip
I found similar question here:
https://stackoverflow.com/questions/72336127/python-robot-remote-server-overflowerror-int-exceeds-xml-rpc-limits
May be it will help.
The text was updated successfully, but these errors were encountered: