Jay Qi
Jay Qi
In certain situations, a subsequence can align perfectly with word boundaries so we get results like: - `One ExaMPlE"` - `"one ExaMPlE"` We should check for this case and resample...
_Originally posted by @jayqi in https://github.com/drivendata/cookiecutter-data-science/issues/333#issuecomment-2040922265_ > I just saw that there's a package for Make on conda-forge, and it seems to include Windows builds. Has any tried this? https://anaconda.org/conda-forge/make/...
One of the options when generating a project is to include some source code scaffolding in the form of a Python package. We don't really document what is contained in...
The refreshed Python module boilerplate (#354) adds a `{module_name}.config` module that contains `pathlib.Path` instances to various project directories. These paths depend on the project module being installed as editable in...
My motivation is that I have a project that will be accepting and displaying arbitrary user-uploaded Jupyter notebooks in HTML. I've generally struggled to find information on what best practices...
The mapillary package is something that I would like to use as a library in my project, i.e., I install it as a dependency and import functionality from mapillary modules....
[`typing.TypeVar`](https://docs.python.org/3/library/typing.html#typing.TypeVar) are used for annotating generics, and they can take constraints or bounds. It probably makes sense to consider those to be an edge. `TypeVar` annotations are currently not considered...
Python 3.12 introduced a new syntax ["type statements"](https://docs.python.org/3/library/typing.html#type-aliases) for declaring type aliases. erdantic currently handles the old simple assignment syntax for type aliases, but not type statements. ## Works ```python...
It may be useful to have a page in our docs with common troubleshooting solutions: - Run `nbautoexport install`. Restart Jupyter. - Check for runtime errors in the Jupyter config...
From @cccntu, originally mentioned [here](https://github.com/drivendataorg/nbautoexport/issues/65#issuecomment-757590575) > I also tried the `export` command, but found they always exports every files. Maybe we can check the modified time and only export the...