Merlijn van Deen

Results 8 comments of Merlijn van Deen

python setup.py on itself seems to work, but `python setup.py --command-packages=stdeb.command sdist_dsc` breaks. Maybe that misinterprets the package_data, I'm not sure.

I've extended the documentation a bit, but I feel information on how to use the api (e.g. on edit tokens) belongs in the api documentation, and not here -- I...

I've added a few links to other projects, including one which queries and edits the wiki. I'll add those snippets to an 'examples' section later.

Hi rammanoj, Thank you for reporting this. The more I look at the error, the less I understand what is going on... The underlying cryptographic logic, JWS, should be largely...

I have never tried to get it to run on a local MW instance... As noted, I believe this to be a server configuration issue. The best options to debug...

I still think it would be better to have ``` if isinstance(v, str): v = v.decode('utf-8') ... (k, v.encode('utf-8'), ...) ``` as we tell the server the data will be...

http://flask.pocoo.org/docs/0.11/blueprints/#registering-blueprints suggests the following: ``` app.register_blueprint(simple_page, url_prefix='/pages') ``` and it might be possible to not hook up the blueprint at all, instead using something like ``` python @app.route('/logout') def logout(bla):...

> in addition to the point above, logout() is defined within the constructor of the MWOAuth() object (line 56), so it not available as a method. Ah. Yes, that is...