{"id":25389978,"url":"https://github.com/edutap-eu/edutap.wallet_google","last_synced_at":"2025-10-30T16:30:53.003Z","repository":{"id":201052185,"uuid":"687524363","full_name":"edutap-eu/edutap.wallet_google","owner":"edutap-eu","description":"Python API to interact with Google Wallet API","archived":false,"fork":false,"pushed_at":"2025-02-14T10:43:30.000Z","size":412,"stargazers_count":7,"open_issues_count":8,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-14T11:30:19.181Z","etag":null,"topics":["digital-identity","google","google-api","pass","wallet","wallet-api"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/edutap.wallet-google/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"eupl-1.2","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edutap-eu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-05T14:29:12.000Z","updated_at":"2025-02-13T15:05:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"3cb24e96-446e-4cf6-85c8-7e4255e0e682","html_url":"https://github.com/edutap-eu/edutap.wallet_google","commit_stats":null,"previous_names":["edutap-eu/edutap.wallet_google"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edutap-eu%2Fedutap.wallet_google","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edutap-eu%2Fedutap.wallet_google/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edutap-eu%2Fedutap.wallet_google/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edutap-eu%2Fedutap.wallet_google/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edutap-eu","download_url":"https://codeload.github.com/edutap-eu/edutap.wallet_google/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239002615,"owners_count":19566161,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["digital-identity","google","google-api","pass","wallet","wallet-api"],"created_at":"2025-02-15T14:23:40.966Z","updated_at":"2025-10-30T16:30:52.988Z","avatar_url":"https://github.com/edutap-eu.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# edutap.wallet_google\n\n[![PyPI - Version](https://img.shields.io/pypi/v/edutap.wallet_google?logo=python)](https://pypi.org/project/edutap.wallet-google/)\n[![CI Tests](https://github.com/edutap-eu/edutap.wallet_google/actions/workflows/tests.yaml/badge.svg)](https://github.com/edutap-eu/edutap.wallet_google/actions/workflows/tests.yaml)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/edutap-eu/edutap.wallet_google/main.svg)](https://results.pre-commit.ci/latest/github/edutap-eu/edutap.wallet_google/main)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n**Python library for creating and managing digital passes in Google Wallet.**\n\nDigital passes are mobile tickets, membership cards, event tickets, loyalty cards, or coupons that users store in their smartphone's Google Wallet app—like a digital version of the cards in your physical wallet.\n\n## What This Library Does\n\nThis package lets you:\n\n- **Create** digital passes (event tickets, membership cards, loyalty cards, etc.)\n- **Update** passes already in users' wallets\n- **Send** notifications to pass holders\n- **List** and manage your issued passes\n- **Handle** callbacks when users save or delete passes\n\n**Both sync and async APIs** are supported out of the box.\n\n## Quick Start\n\n```bash\npip install edutap.wallet_google\n```\n\n```python\nfrom edutap.wallet_google import api\n\n# Create a pass class (template)\nmy_class = api.new(\"GenericClass\", {\n    \"id\": \"your-issuer-id.your-class-name\",\n    \"classTemplateInfo\": {\"cardTemplateOverride\": {\"cardRowTemplateInfos\": [...]}}\n})\napi.create(my_class)\n\n# Create a pass object (the actual pass)\nmy_pass = api.new(\"GenericObject\", {\n    \"id\": \"your-issuer-id.unique-pass-id\",\n    \"classId\": \"your-issuer-id.your-class-name\",\n    \"state\": \"ACTIVE\"\n})\napi.create(my_pass)\n\n# Generate \"Add to Google Wallet\" link\nlink = api.save_link([my_pass])\n```\n\n## Documentation\n\n**[Complete Documentation](https://docs.edutap.eu/packages/edutap_wallet_google/index.html)**\n\n## Features\n\n- **Complete Google Wallet API coverage** - All pass types supported\n- **Type-safe** - Full Pydantic models matching Google's schema\n- **Sync + Async** - Use the API style that fits your application\n- **FastAPI integration** - Ready-made endpoints for callbacks and images\n- **Signature verification** - Cryptographic validation of Google's callbacks\n- **Modern Python** - Built with httpx, Pydantic v2, and Python 3.10+\n\n## Requirements\n\n- Python 3.10 or later (3.13 recommended)\n- Google Cloud Project with Google Wallet API enabled\n- Service account credentials (see [documentation](https://docs.edutap.eu/packages/edutap_wallet_google/installation.html))\n\n## License\n\n[EUPL 1.2](https://opensource.org/license/eupl-1-2/) (European Union Public Licence)\n\n## Credits\n\nDeveloped by the **eduTAP - EUGLOH Working Package - Campus Life** team:\n\n- **Alexander Loechel** (LMU München) - Vision \u0026 consulting\n- **Philipp Auersperg-Castell** (BlueDynamics Alliance) - Core implementation\n- **Jens Klein** (BlueDynamics Alliance) - API design \u0026 testing\n- **Robert Niederreiter** (BlueDynamics Alliance) - Plugin architecture\n- **Simon Lund** (LMU München) - Maintenance\n\nInitial financing: [LMU München](https://www.lmu.de)\n\nParts of the refactoring and code modernization were assisted by AI with Claude Code.\n\n**Contributing?** We welcome issues and pull requests at [github.com/edutap-eu/edutap.wallet_google](https://github.com/edutap-eu/edutap.wallet_google)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedutap-eu%2Fedutap.wallet_google","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedutap-eu%2Fedutap.wallet_google","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedutap-eu%2Fedutap.wallet_google/lists"}