Skip to main content

Soap client for Here Comes the Bus

Project description

hcb_soap_client

A Python async SOAP client for the "Here Comes the Bus" API, used to track school bus locations and schedules.

Installation

pip install hcb_soap_client

Or install from source:

git clone https://github.com/pcartwright81/hcb_soap_client.git
cd hcb_soap_client
pip install -e .

Usage

Basic Usage (Context Manager - Recommended)

Using the async context manager is the most efficient approach as it reuses the HTTP session across multiple requests:

import asyncio
from hcb_soap_client import HcbSoapClient

async def main():
    async with HcbSoapClient() as client:
        # Get school ID from school code
        school_id = await client.get_school_id("YOUR_SCHOOL_CODE")

        # Login and get parent/account info
        account = await client.get_parent_info(school_id, "username", "password")
        print(f"Account ID: {account.account_id}")
        print(f"Students: {[s.first_name for s in account.students]}")

        # Get bus stop info for a student
        for student in account.students:
            # Use AM_ID for morning routes, PM_ID for afternoon
            stops = await client.get_stop_info(
                school_id,
                account.account_id,
                student.student_id,
                HcbSoapClient.AM_ID  # or HcbSoapClient.PM_ID
            )

            if stops.vehicle_location:
                print(f"Bus location: {stops.vehicle_location.address}")
                print(f"Speed: {stops.vehicle_location.speed} mph")

asyncio.run(main())

Simple Usage (Without Context Manager)

For one-off requests, you can use the client without a context manager. Note that this creates a new HTTP session for each request:

async def simple_example():
    client = HcbSoapClient()
    school_id = await client.get_school_id("YOUR_SCHOOL_CODE")

Using a Custom Session

You can provide your own aiohttp.ClientSession for advanced use cases:

import aiohttp

async def custom_session_example():
    async with aiohttp.ClientSession() as session:
        client = HcbSoapClient(session=session)
        school_id = await client.get_school_id("YOUR_SCHOOL_CODE")

API Reference

HcbSoapClient

Constructor

HcbSoapClient(url: str | None = None, session: aiohttp.ClientSession | None = None)
  • url: Optional custom API endpoint (defaults to production URL)
  • session: Optional aiohttp session to reuse

Class Attributes

  • AM_ID: Time of day ID for morning routes
  • PM_ID: Time of day ID for afternoon routes

Methods

get_school_id(school_code: str) -> str

Look up the school ID from a school code.

get_parent_info(school_id: str, username: str, password: str) -> AccountResponse

Authenticate and retrieve account information including students and time of day options.

get_stop_info(school_id: str, parent_id: str, student_id: str, time_of_day_id: str) -> StopResponse

Get bus stop information and current vehicle location for a student.

Response Models

All response models are Pydantic BaseModel instances.

AccountResponse

  • account_id: str
  • students: list[Student]
  • times: list[TimeOfDay]

Student

  • student_id: str
  • first_name: str
  • last_name: str

StopResponse

  • vehicle_location: VehicleLocation | None
  • student_stops: list[StudentStop]

VehicleLocation

  • name: str - Vehicle/bus name
  • latitude: float
  • longitude: float
  • log_time: datetime
  • speed: int
  • heading: str
  • address: str
  • ignition: bool
  • display_on_map: bool

Development

Install development dependencies

pip install -e ".[dev,test]"

Run tests

pytest

Run linter

ruff check .

License

MIT License - see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hcb_soap_client-0.0.11.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hcb_soap_client-0.0.11-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file hcb_soap_client-0.0.11.tar.gz.

File metadata

  • Download URL: hcb_soap_client-0.0.11.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.11

File hashes

Hashes for hcb_soap_client-0.0.11.tar.gz
Algorithm Hash digest
SHA256 760d08b67b01af884ae6e89fc23fb0976b061a1e5bf0d8fbccf0dc0beb49cf16
MD5 a6a5ccc553112c6f85a4c96c97cdfc6d
BLAKE2b-256 0865175da01ab82bfeabe7cb2c2a30aed5e4f4f43982caa88cd816cbc8540ce0

See more details on using hashes here.

File details

Details for the file hcb_soap_client-0.0.11-py3-none-any.whl.

File metadata

File hashes

Hashes for hcb_soap_client-0.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 f342349a0a05403b3e6984e885ba9bdffcc94c356bda8681b2c55cd252e3c042
MD5 68d7bc8f36808367c0e056857a8fa29f
BLAKE2b-256 1d49fe5d937bb6bfcc2d3c2326f4cfeb64e18ff5c9d6bce34f362943f6564d49

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page