solvebio-python
solvebio-python copied to clipboard
SolveBio Python bindings
Bumps [streamlit](https://github.com/streamlit/streamlit) from 1.1.0 to 1.37.0. Release notes Sourced from streamlit's releases. 1.37.0 What's Changed New Features 🎉 Stacking options - st.bar_chart by @mayagbarnes in streamlit/streamlit#8945 Support graphviz.sources.Source object for...
Newer Python versions deprecated distutils & several other formats have been deprecated (also it would be nice to have poetry set up). `pip install -e ~/path/to/solvebio` ``` Preparing metadata (setup.py)...
- Added a class that handles finding credentials. This is only used for unit tests, but my intention for the future is to use it for solvebio cli, solvebio.__main__.py, and...
To run in lambda, you need to do the following: - Set SOLVEBIO_LOGFILE environment variable to "" (to avoid creating a log file in the read-only FS) - Remove any...
Search from within the folders/files/dataset shortcuts in the same way as `Object.search`, but scope it to the shortcut in both location and object type The following searches can be replaced...
The client currently supports the Vault resource but does not allow easy maintenance of permissions. The API has the following resources: * VaultUser (/v2/vaults//users) * VaultGroup (/v2/vaults//users) * VaultCollaborator (/v2/vaults//collaborators)...
## Bug description and steps to reproduce I have exported recipes using the `solvebio-recipes export` command, changed the expression, and tried to sync that recipe, without changing the version using...
Return a DataFrame from a dataset query. It should use the query parameters if possible, such as `fields` (to `columns`), `limit`, etc... ``` dataset.query().to_dataframe() pandas.DataFrame.from_records(list(query), columns=fields) ```