Após colocar o st.dataframe e rodar o streamlit, tenho o seguinte erro:
requests.exceptions.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
File "C:\dashboard_streamlit\venv\Lib\site-packages\streamlit\runtime\scriptrunner\exec_code.py", line 128, in exec_func_with_error_handling
result = func()
File "C:\dashboard_streamlit\venv\Lib\site-packages\streamlit\runtime\scriptrunner\script_runner.py", line 669, in code_to_exec
exec(code, module.dict) # noqa: S102
~~~~^^^^^^^^^^^^^^^^^^^^^^^
File "C:\dashboard_streamlit\Dashboard.py", line 10, in
dados = pd.DataFrame.from_dict(response.json())
~~~~~~~~~~~~~^^
File "C:\dashboard_streamlit\venv\Lib\site-packages\requests\models.py", line 980, in json
raise RequestsJSONDecodeError(e.msg, e.doc, e.pos)
