Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: codespell
exclude: ^locale/
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.13.0
rev: v0.13.2
hooks:
- id: ruff-check
args: [--fix]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## `2.1.1` - 2025-08-27
## `2.1.2` - 2025-09-29

#### πŸš€ New Features

Expand Down
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
[![PyPI version](https://badge.fury.io/py/magic-admin.svg)](https://badge.fury.io/py/magic-admin)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE.txt)

The Magic Admin Python SDK provides a simple and powerful way to integrate Magic's authentication system into your Python applications. Handle [DID Tokens](https://magic.link/docs/auth/introduction/decentralized-id) and interact with Magic API endpoints with ease.
The Magic Admin Python SDK provides a simple and powerful way to integrate Magic's authentication system into your Python applications. Handle [DID Tokens](https://docs.magic.link/embedded-wallets/authentication/features/decentralized-id#decentralized-id-did-tokens) and interact with Magic API endpoints with ease.

## πŸ“š Documentation

πŸ“– **Full Documentation**: [Magic Python SDK Docs](https://magic.link/docs/auth/api-reference/server-side-sdks/python)
πŸ“– **Full Documentation**: [Magic Python SDK Docs](https://docs.magic.link/embedded-wallets/sdk/server-side/python)

## πŸš€ Quick Start

Expand All @@ -18,8 +18,8 @@ The Magic Admin Python SDK provides a simple and powerful way to integrate Magic
# Using pip
pip install magic-admin

# Using conda
conda install magic-admin
# Using uv
uv add magic-admin
```

### Basic Usage
Expand Down Expand Up @@ -147,7 +147,7 @@ See [CHANGELOG.md](CHANGELOG.md) for a detailed history of changes.

## πŸ”— Links

- [Magic Documentation](https://magic.link/docs)
- [Magic Dashboard](https://dashboard.magic.link/)
- [Magic Python SDK Docs](https://magic.link/docs/auth/api-reference/server-side-sdks/python)
- [DID Token Documentation](https://magic.link/docs/auth/introduction/decentralized-id)
- [Magic Documentation](https://docs.magic.link)
- [Magic Dashboard](https://dashboard.magic.link)
- [Magic Python SDK Docs](https://docs.magic.link/embedded-wallets/sdk/server-side/python)
- [DID Token Documentation](https://docs.magic.link/embedded-wallets/authentication/features/decentralized-id#decentralized-id-did-tokens)
2 changes: 1 addition & 1 deletion magic_admin/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.1.1"
VERSION = "2.1.2"
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ build-backend = "setuptools.build_meta"

[project]
name = "magic-admin"
version = "2.1.1"
version = "2.1.2"
description = "Magic Python Library"
readme = "README.md"
authors = [
{name = "Magic", email = "support@magic.link"}
]
keywords = ["magic", "python", "sdk"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
Expand Down
Loading