Files
Mileage-Logger/mileage_logger/ingest/__init__.py

18 lines
613 B
Python

"""Subpackage for data ingestion.
The :mod:`mileage_logger.ingest` package contains utilities for reading
Google Semantic Location History JSON exports. The core entry point is
the :func:`load_place_visits` function which converts raw JSON into
structured :class:`PlaceVisit` objects. These objects expose
timezone-aware start and end timestamps as well as geographic
coordinates and the human readable name of the location.
"""
from .semantic_reader import Location, PlaceVisit, ActivitySegment, load_place_visits
__all__ = [
"Location",
"PlaceVisit",
"ActivitySegment",
"load_place_visits",
]