BART (Bay Area Rapid Transit) provides train service throughout the San Francisco Bay Area.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
With the BART API, you can access real-time arrival information for BART trains, as well as schedule information. This makes it possible to build applications that can help people plan their trips on BART, or track the status of a train in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bart: {
type: "app",
app: "bart",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bart.gov/api/version.aspx?key=${this.bart.$auth.api_key}&json=y`,
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}