├── .gitignore ├── Procfile ├── README.md ├── Untitled.ipynb ├── app.py ├── assets ├── logo.png ├── trex.jpeg └── trex.png ├── components └── navbar.py ├── data └── dash-logo copy.png ├── index.py ├── pages ├── __init__.py ├── dinosaurs.py ├── home.py └── page1.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:server --timeout 300 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/app.py -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/trex.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/assets/trex.jpeg -------------------------------------------------------------------------------- /assets/trex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/assets/trex.png -------------------------------------------------------------------------------- /components/navbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/components/navbar.py -------------------------------------------------------------------------------- /data/dash-logo copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/data/dash-logo copy.png -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/index.py -------------------------------------------------------------------------------- /pages/__init__.py: -------------------------------------------------------------------------------- 1 | # import home -------------------------------------------------------------------------------- /pages/dinosaurs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/pages/dinosaurs.py -------------------------------------------------------------------------------- /pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/pages/home.py -------------------------------------------------------------------------------- /pages/page1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/pages/page1.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plotly/dash-oil-and-gas-demo/HEAD/requirements.txt --------------------------------------------------------------------------------