Arjan Keeman
Arjan Keeman
Hi @garak, My project requires me to occasionally clone an entity that contains a file. I use the delete_on_update and delete_on_remove functionality, and so simply cloning the image references clearly...
Simple implementation for the currently missing functionality to load configuration from certain files: - [x] pyproject.toml - [x] setup.cfg (closes #68) to do: - [x] pytests
The default value of `Client`'s `verify` argument is `None`, which currently resolves to `True` when stuff is load from an rc-file, and to `False` otherwise. Let's be more straight forward...
I suggest verifying the validity of a generated bash completion script using [shellcheck](https://www.shellcheck.net/). It would catch errors like mentioned in https://github.com/python-poetry/cleo/pull/260: ``` $ shellcheck
### Checklist - [X] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar feature requests. - [X] I added a descriptive title and summary to this issue. ### Summary Reading an...
## Describe your changes Adding `query_params` argument to `st.page_link`, so that internal links can have query params attached too. Useful for creating drill down page links. ```python st.page_link("pages/foo.py", query_params={"input_value": "1337"})...
Split url on `"."`, instead of the other way round.
The library is able to help with downloading data to a local file. Sometimes the target is not local, however. It would be great to allow not only writing to...
The use of `numpy.matrix` is discuraged since numpy 1.15 From the docs([1.15](https://docs.scipy.org/doc/numpy-1.15/reference/generated/numpy.matrix.html#numpy.matrix) / [stable](https://numpy.org/doc/stable/reference/generated/numpy.matrix.html)): > Note > It is no longer recommended to use this class, even for linear algebra....