{"id":47203580,"url":"https://github.com/ownerofglory/govvs","last_synced_at":"2026-03-13T13:38:43.989Z","repository":{"id":220525042,"uuid":"751579491","full_name":"ownerofglory/govvs","owner":"ownerofglory","description":"Simple Golang lib for VVS API (Verkehrsverbund Stuttgart)","archived":false,"fork":false,"pushed_at":"2024-11-21T20:25:11.000Z","size":576,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-21T21:25:32.199Z","etag":null,"topics":["go","golang","ssb","transport","transportation","vvs","vvs-api"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ownerofglory.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-01T22:11:34.000Z","updated_at":"2024-11-21T20:25:11.000Z","dependencies_parsed_at":"2024-02-02T15:28:18.749Z","dependency_job_id":"e7da7ae6-f8c8-466e-9ab3-d7041703cf13","html_url":"https://github.com/ownerofglory/govvs","commit_stats":{"total_commits":14,"total_committers":1,"mean_commits":14.0,"dds":0.0,"last_synced_commit":"7b814e15582e33675262a6b8af8cc452921459fc"},"previous_names":["ownerofglory/govvs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ownerofglory/govvs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ownerofglory%2Fgovvs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ownerofglory%2Fgovvs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ownerofglory%2Fgovvs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ownerofglory%2Fgovvs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ownerofglory","download_url":"https://codeload.github.com/ownerofglory/govvs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ownerofglory%2Fgovvs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30467803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","ssb","transport","transportation","vvs","vvs-api"],"created_at":"2026-03-13T13:38:43.140Z","updated_at":"2026-03-13T13:38:43.979Z","avatar_url":"https://github.com/ownerofglory.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go VVS - VVS (Verkehrsverbund Stuttgart) API library\nSimple Go library wrapping VVS API\n![Test Pipeline status](https://github.com/ownerofglory/govvs/actions/workflows/test-pipeline.yml/badge.svg)\n\n## Features\n- Journey search \n- Station finder\n- Departure information\n- Arrival information\n- Serving lines search\n- Geo information for lines\n\n## Prerequisites\n- Go version \u003e= 1.19\n\n## Usage\n### Example: station finder\n```go\npackage main\n\nimport (\n    \"github.com/ownerofglory/govvs\"\n    \"github.com/ownerofglory/govvs/station\"\n)\n\nfunc main() {\n\treq := govvs.StopFinderRequest{\n\t\tName: \"Augustinum\",\n\t\tType: \"any\",\n\t}\n\tres, err := govvs.GetStopFinder(req)\n\n\tif err != nil {\n\t\t// handle error ...\n\t}\n\n\t// process response\n\t// ...\n}\n```\n\n### Example: departure monitor\n```go\npackage main\n\nimport (\n    \"github.com/ownerofglory/govvs\"\n    \"github.com/ownerofglory/govvs/station\"\n)\n\nfunc main() {\n    stationName := station.HAUPTBAHNHOF_TIEF_STUTTGART\n\n    // convert station name to station id (de:XXXXX:YYYY)\n    stationId, _ := station.StationNameToGlobalId(stationName)\n\n    req := govvs.DepartureRequest{\n        StationId: stationId,\n    }\n    resp, err := govvs.GetDepartures(req)\n    if err != nil {\n        // handle error ...\n    }\n    // process response\n    // ...\n}\n```\n\n\n### Example: journey search\n```go\npackage main\n\nimport (\n    \"github.com/ownerofglory/govvs\"\n\t\"github.com/ownerofglory/govvs/station\"\n)\n\nfunc main() {\n    // convert station name to station id (de:XXXXX:YYYY)\n    origId, _ := station.StationNameToGlobalId(station.HAUPTBAHNHOF_TIEF_STUTTGART)\n    destId, _ := station.StationNameToGlobalId(station.FLUGHAFENMESSE_ECHTERDINGEN)\n\n    req := govvs.JourneyRequest{\n\t\tOrigId: origId,\n\t\tDstId:  destId,\n\t}\n\n\tresp, err := govvs.GetJourney(req)\n    if err != nil {\n        // handle error ...\n    }\n    // process response\n    // ...\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fownerofglory%2Fgovvs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fownerofglory%2Fgovvs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fownerofglory%2Fgovvs/lists"}