# badgekit-api-python-client **Repository Path**: mirrors_mozilla/badgekit-api-python-client ## Basic Information - **Project Name**: badgekit-api-python-client - **Description**: INACTIVE - http://mzl.la/ghe-archive - A client for the BadgeKit API, in Python - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-22 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python BadgeKit API Client A client for the BadgeKit API, in Python ## Usage ```python from badgekitapiclient import init endpoint = 'http://api.example.org' auth = {'key': 'auth key', 'secret': 'auth secret'} client = init(endpoint, auth) badges = client.get_badges(system='system-slug') for badge in badges: print badge['name'] ``` ## Testing ``` python test ```