Lucas Bourneuf

Results 58 comments of Lucas Bourneuf

> Any thoughts? Flattr is a wonderful idea (but centralized, unfortunately). Integration with Peertube should be studied along the one with patreon, tipeee and liberapay, ASAP and KISS. Filecoin is...

Sorry, i hit the enter key too much by mistake. I have written the intended question.

The problem may have appeared in 3.8, which have [a lot more consequent changelog](https://docs.python.org/3.8/whatsnew/3.8.html), notably [some changes in xml and xmlrpc modules](https://docs.python.org/3.8/whatsnew/3.8.html#xml) that involve [auth-related details](https://bugs.python.org/issue35153).

I can reproduce the same problem with the following code: from urllib.parse import urlencode import xmlrpc.client as xmlrpclib URL = 'wiki.example.net' USER = 'user' PASSWD = 'password' USER_AGENT = 'DokuWikiXMLRPC...

Hi ! No, i didn't had time for this. I remember starting quickly a XML RPC server with python, and reaching it with another piece of code found in the...

I ended up with the following python code: import sys from xmlrpc import server, client from urllib.parse import urlencode PORT = 23456 USER, PASSWD = 'user', 'password' TARGET = '127.0.0.1:'...

Annnnd… That's a success ! Following code is implementing a webserver with Flask or a XMLRPC client: import sys from xmlrpc import server, client from urllib.parse import urlencode from flask...

Note that the two outputs differs in two ways: 127.0.0.1 - - [27/Mar/2021 18:31:13] "POST /?u=user&p=password HTTP/1.1" 404 - 127.0.0.1 - - [27/Mar/2021 18:35:45] "POST /RPC2 HTTP/1.1" 200 - The...

I will post that on the python mailing list. Thanks for giving me a push forward :)

Well done ! Thank you for reporting it.