How should I base64 encode a PDF file for transport over XML-RPC in Python?
|
1
|
|||||
|
|
|
NOTE: this is a community-wiki owned copy of Pat Notz's answer. This answer can be selected as the chosen answer. Edit freely to improve. Pat Notz says:Actually, after some more digging, it looks like the
Here's an example from the Trac XML-RPC documentation
|
||||
|
|
|
You can do it with the base64 library, legacy interface. |
||
|
|
|
|
Actually, after some more digging, it looks like the
binary_obj = xmlrpclib.Binary( open('foo.pdf').read() )
Here's an example from the Trac XML-RPC documentation
|
|||
|
|
|
|
Looks like you might be able to use the binascii module
|
||
|
|
|
|
If you don't want to use the xmlrpclib's Binary class, you can just use the .encode() method of strings:
|
||
|
|
