Skip to content

Installation

Install pyfamilysafety from PyPI:

pip install pyfamilysafety

Development install

Clone the repository and install with development dependencies:

git clone https://github.com/pantherale0/pyfamilysafety.git
cd pyfamilysafety
python3 -m venv venv
source venv/bin/activate
pip install -e ".[dev]"

Dependencies

Runtime dependencies:

Package Purpose
aiohttp Async HTTP client for Microsoft APIs
python-dateutil Timezone handling for API timestamps

Python 3.8+ is required.

Verify installation

import pyfamilysafety
print(pyfamilysafety.__version__)

Next: Authentication