Initial commit (clean, ignores in place)
This commit is contained in:
18
mileage_logger/ingest/__init__.py
Normal file
18
mileage_logger/ingest/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""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",
|
||||
]
|
Reference in New Issue
Block a user