Leif Walsh
Leif Walsh
This is going to be a poorly specified issue, apologies in advance. I'm not really sure how to diagnose it. I have an application I'm accessing over py4j. Most of...
I'm trying to use `ip2unix` to make JetBrains Projector listen on a unix socket instead of an ip socket, as described in https://youtrack.jetbrains.com/issue/PRJ-278. I can put Projector behind an Envoy...
pandas's df.assign(...) copies the entire dataframe, while using df[col] = ... syntax avoids copying everything. This reduces memory overhead significantly in calls to TimeSeriesDataFrame.toPandas().
Publishing wheels is convenient but it's good to also publish the source distribution (for consumers who can't use wheels due to either toolchain or policy). Is there a specific reason...
## Description of new feature, or changes Adds a spinner that looks like two characters flipping a table back and forth ## Checklist - [x] Your branch is up-to-date with...
reduces complexity and provides nice things like latency histograms and windowed average throughput
I'm trying to use pip-tools in an environment where we have access to a caching proxy (Artifactory) of pypi.org but no direct access to pypi.org. In most situations, I'm able...
At https://github.com/pgjones/hypercorn/blob/8ae17ca68204d9718389fb3649ca0ed6ba851906/src/hypercorn/logging.py#L36 hypercorn overrides any application-defined logging handlers that may have already been set up - not even adding to them, just overwriting them. This means that if you're trying...
### Problem trying to solve At work we configure lots of python libraries to do authentication with our internal SSO system, and to do so we've got our own subclasses...