-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1_Home.py
19 lines (15 loc) · 1007 Bytes
/
1_Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import cmath
from jupyter_client import run_kernel
import numpy as np
import pandas as pd
import streamlit as st
import requests
from datetime import date
st.set_page_config(
layout="centered", # Can be "centered" or "wide". In the future also "dashboard", etc.
initial_sidebar_state="auto", # Can be "auto", "expanded", "collapsed"
page_title="USDA Data Explorer", # String or None. Strings get appended with "• Streamlit".
page_icon="./assets/img/earthrise_logo.png", # String, anything supported by st.image, or None.
)
st.title("USDA Data Exploration Tool")
st.write("USDA’s Foreign Agricultural Service data API portal provides users the ability to obtain programmatic access to publicly available agricultural commodity data from the Export Sales Report (ESR), Global Agricultural Trade System (GATS), and Production, Supply & Distribution (PSD) databases. This app is intended to allow users to browse data from the API on demand. Check out the sections on the left to get started.")