roy

Results 17 comments of roy

Hey @stavrospapadopoulos I would love that, i'll check first with my colleagues on what data I can share.

Hey again @stavrospapadopoulos We work with many formats, but mainly with .h5ad. We have datasets with up to 30,000 genes and up to millions of cell_barcodes. Our data is usually...

@nguyenv @stavrospapadopoulos Thank you both. I got more questions to ask, what is the best place for that ?

> For version 1.12.0: > > ``` > streamlit.runtime.scriptrunner import get_script_run_ctx > ``` Also you can do ```python import streamlit as st from threading import Thread from streamlit.runtime.scriptrunner import add_script_run_ctx...

Downloading the Gauava .jre from here: https://mvnrepository.com/artifact/com.google.guava/guava/33.0.0-jre And placing it in run/extra resolved the issue.

Having the same issue I've created a lambda. In the lambda code I use the `aws_lambda_powertools` package. I am using an APIGatewayRestResolver from the same package. I am returning a...

Ok my issue was that I returned ```python from aws_lambda_powertools.event_handler import APIGatewayRestResolver, Response, content_types default_response = Response( status_code=200, content_type="application/octet-stream", # was octet-stream and not application/octet-stream body=pa.ipc.serialize_pandas(df).to_pybytes() ) ```