A .NET library to interact with the Houston Metro arrivals api
dotnet add package Syncromatics.Clients.HoustonMetro.Api
Then use it to do a thing:
ClientSettings settings = new ClientSettings
{
// Sign up at https://developer-portal.ridemetro.org/products to get an API key
ApiKey = ""
};
HoustonMetroClient client = new HoustonMetroClient(settings);
Stop stop = await client.GetArrivalsAsync(661);
foreach (Arrival arrival in stop.ResultSet.Arrivals) {}
dotnet build
dotnet test tests/Syncromatics.Clients.HoustonMetro.Api.Tests
We are committed to fostering an open and welcoming environment. Please read our code of conduct before participating in or contributing to this project.
We welcome contributions and collaboration on this project. Please read our contributor's guide to understand how best to work with us.
This software is made available by GMV Syncromatics Engineering under the MIT license.