Results 54 issues of Greg Werbin

Hello! I noticed that the type annotation for `toml.load` is `load(f: Union[str, list, IO[str]])`. Is there any reason that should not be `load(f: Union[os.PathLike, str, list, IO[str]])`, to support `pathlib.Path`...

type: task

Consider the use case of an established web application, which has a nontrivial logging setup involving correlation IDs, integration with some observability platform like Datadog, etc. Migrating such an application...

## Describe the issue This issue is a continuation from https://github.com/matplotlib/ipympl/issues/112. A very common use case involves a centrally-installed Jupyter instance running Jupyter kernels in various task-specific environments. Examples include...

It would be very useful to be able to use the Tree Sitter CLI `query` command on chunks of code provided on standard input. ~~It would also be useful to...

enhancement
cli

## Feature request Is it possible (or can it be easily made possible) to run the Tree Sitter CLI with *just* compiled parsers and not the associated `grammar.json`, etc. files...

enhancement

The Numba docs describe how to call Cython functions from Numba JIT-ed functions: https://numba.readthedocs.io/en/stable/extending/high-level.html#importing-cython-functions I was hoping to try using this with `h3._cy.geo_to_h3` in order to try to turn it...

**Describe the bug** The Web Scrobbler login state for LibreFM is out of sync with LibreFM itself. I am not logged in, but when I try to log in with...

bug

_I've expanded the scope of this PR since I created the branch, but I don't want to generate extra noise by closing it and renaming the branch to reflect its...

enhancement
backend: refc
admin: installation

Pipx supports the very useful "inject" feature, which allows you to easily `pip install` additional packages into the environment of a particular Python application, e.g.: ```bash pipx install jupyterlab pipx...

enhancement

Gensim is imported for the scikit-learn API: https://github.com/vlukiyanov/pt-avitm/blob/523c21953c7e6b66230a047c2c681ac3f938ba72/ptavitm/sklearn_api.py#L1-L3 Testing in a "clean" Python environment (using e.g. [Tox](https://tox.readthedocs.io/en/latest/)) would catch errors like this. It should be added to `install_requires` in `setup.py`...