Mike DePalatis
Mike DePalatis
I have been unable to get localshop to work at all based on following the README directions. Here is a list of problems with the documentation: - The instructions for...
It would be nice if there were a Marshmallow field for (de)serializing `pathlib.Path` objects since these are often more convenient to work with than raw strings and `os.path` functions. I...
`UIModule.render` is [typed](https://github.com/tornadoweb/tornado/blob/master/tornado/web.py#L3198) to return a string whereas `UIModule.render_string` is [typed](https://github.com/tornadoweb/tornado/blob/master/tornado/web.py#L3240) to return `bytes`. The naming of `render_string` is probably a holdover from the Python 2 days and does in...
CSV is useful as a human-readable, easily-transportable file format and serves as a good default. Other formats (HDF5, SQL, numpy's format when using `np.save`, etc) also have their advantages and...
The latest release is raising the above error on invocation of `class_schema`. I'm working on putting together a minimal example to demonstrate this but in the meantime it's breaking CI...
It would be nice to be able to use a custom task runner instead of only having the choice between blocking the request thread or using Celery. This would be...
Following the instructions [here](https://docs.apistar.com/api-documentation/#programmatic-interface) I'm trying to create an endpoint in a Tornado app that shows the API documentation. I'm setting up a static file handler similar to this: ```python...
This notes that `open` can fail with empty objects and provide a hint that passing `strict=False` to `S3FS` may be a workaround. I also added a brief note to the...
`PUBHandler` by default will bind a socket to the given address while the builtin listener will connect to the address. This is fine insofar as usually `PUB` is bound and...
Following [PEP8](https://www.python.org/dev/peps/pep-0008/) would improve the readability of the code by making it more consistent with other Python applications.