├── .github └── CODEOWNERS ├── .gitignore ├── .vim └── coc-settings.json ├── LICENSE ├── NOTICES ├── Pipfile ├── Pipfile.lock ├── README.md ├── av_final_optimized.gif ├── instructions.md └── streamlit_app.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @streamlit/eng 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/.gitignore -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/.vim/coc-settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/NOTICES -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/README.md -------------------------------------------------------------------------------- /av_final_optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/av_final_optimized.gif -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/instructions.md -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlit/demo-self-driving/HEAD/streamlit_app.py --------------------------------------------------------------------------------