Paul Eipper

Results 28 issues of Paul Eipper

There are many games not downloadable from HumbleBundle but only offer a key to redeem from services like Steam or Origin, it would be nice to have a way to...

bug
confirmed

This adds the ability to create docker images for this project. You probably want to change the maintainer names in the `Makefile` and the `build/Dockerfile` to your dockerhub user. Use...

Implements the option to `eval` any string in the json as code by just calling it: ``` python TEST_FILE='''{ "code": "lambda x: x + 1" }''' >>> from jsonsempai import...

In my production server I keep needing to do: ``` python def crud_handler(): request = __import__('user_posted_json') eval(request.method)(db_connection, request.args) ``` Please consider allowing this syntax so my code looks cleaner: ```...

When sending the `Signal.NEWNYM` to the controller, the command never timeouts and can get stuck forever. Also, probably would be safer to check [`is_newnym_available`](https://stem.torproject.org/api/control.html#stem.control.Controller.is_newnym_available) before sending the signal, and just...

enhancement

Avoid redefinition of HTTP response codes since stdlib already defines them more completely.

Ordered dictionary with case insensitive lookup that preserves original case when listing.

Use module-level loggers so that implementers can configure the logging in more granular ways. The logging module when used directly defaults to the `root` logger, which while easy to use,...

Changed this so there are no made assumptions about how the client code will handle empty form fields. Also, moved all calls from cgi to urlparse since its the new...