Python wrapper for Mojang's Yggdrasil authentication service.
Project description
yggdrasil-py
Open-source Python 3.6+ wrapper by Sam Carson for the Mojang Yggdrasil authentication service. Please reference the documentation for extra information.
Install via PyPI using the following command: pip install yggdrasil-py
This wrapper is supported only for Python 3.6 and above because of the use of f-strings when an Exception
is raised. You could easily modify the code to use %s
formatting or the .format()
function, but they are not as efficient.
Minecraft 1.6 introduced a new authentication scheme called Yggdrasil which completely replaces the previous authentication system. Mojang's other game, Scrolls, uses this method of authentication as well.
Since a recent pull request, support has been added for custom authentication servers. As far as I am aware, the only instance of this is ely.by.
Authenticate
Authenticates a user using their password.
def authenticate(username:str, password:str, agentName:str = 'Minecraft', clientToken:str = None, requestUser:str = False, authServer:str = url):
Arguments:
- String (required) Username of agent/Mojang email (if migrated)
- String (required) Password for the account used
- String (optional)
Agent, defaults to
Minecraft
, can also beScrolls
- String (optional) Client identifier, must be random and identical per request
- Boolean (optional)
If set to
True
request for user object too (default isFalse
) - String (optional)
Custom authentication server. Defaults to
https://authserver.mojang.com
Response:
- Check the Authenticate section of the documentation for details.
Example:
from yggdrasil import authenticate
import random
randomClientToken = random.randint(10000,99999)
mc = authenticate('test@example.com','p455w0rd', 'Minecraft', randomClientToken, False)
print(mc['accessToken'])
Refresh
Refreshes a valid accessToken. It can be used to keep a user logged in between gaming sessions and is preferred over storing the user's password in a file.
def refresh(accessToken:str, clientToken:str, requestUser:bool = False, authServer:str = url):
Arguments:
- String (required)
Valid
accessToken
, gained fromauthenticate()
- String (required)
Identical to the
clientToken
used to get theaccessToken
in the first place - Boolean (optional)
If set to
True
request for user object too (default isFalse
) - String (optional)
Custom authentication server. Defaults to
https://authserver.mojang.com
Response:
- Check the Refresh section of the documentation for details.
Example:
from yggdrasil import refresh
print(refresh(mc['accessToken'], randomClientToken))
# Note: invalidates inputted accessToken
Validate
Checks if an accessToken is usable for authentication with a Minecraft server.
def validate(accessToken:str, clientToken:str = None, authServer:str = url):
Arguments:
- String (required)
Valid
accessToken
, gained fromauthenticate()
- String (optional)
Identical to the
clientToken
used to get theaccessToken
in the first place - String (optional)
Custom authentication server. Defaults to
https://authserver.mojang.com
Response:
- Returns Boolean for whether
accessToken
is valid (andclientToken
match, if defined)
Example:
from yggdrasil import validate
print(validate(mc['accessToken'], randomClientToken))
Signout
Invalidates accessTokens using an account's username and password.
def signout(username:str, password:str, authServer:str = url):
Arguments:
- String (required) Username of agent/Mojang email (if migrated)
- String (required) Password for the account used
- String (optional)
Custom authentication server. Defaults to
https://authserver.mojang.com
Response:
- Returns
True
unless error thrown
Example:
from yggdrasil import signout
print(signout('test@example.com','p455w0rd'))
Invalidate
Invalidates accessTokens using a client/access token pair.
def invalidate(accessToken:str, clientToken:str, authServer:str = url):
Arguments:
- String (required)
Valid
accessToken
, gained fromauthenticate()
- String (required)
Identical to the
clientToken
used to get theaccessToken
in the first place - String (optional)
Custom authentication server. Defaults to
https://authserver.mojang.com
Response:
- Returns
True
unless error thrown
Example:
from yggdrasil import invalidate
print(signout(mc['accessToken'], randomClientToken))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file yggdrasil-py-1.1.0.tar.gz
.
File metadata
- Download URL: yggdrasil-py-1.1.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa898260acece495805e729836fe8c45e3962cea3278d3e49cd5e749d3e7cc83 |
|
MD5 | db9597be0908dde2821bb06e3c842fb6 |
|
BLAKE2b-256 | 30d1de0d7e913fa7b483752e0954eba51669792e075ba19007efc39055de3925 |
File details
Details for the file yggdrasil_py-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: yggdrasil_py-1.1.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5da031fe31eecc3aac3c67d99142cd42cfdab9feb547b73ead77f733d9d85e11 |
|
MD5 | 56898ddf07fc6c4ea1dbcb52f0ce5afa |
|
BLAKE2b-256 | 2991e4690dba53d1f8016abfb0a2467feb6d07c059c699a31fe3b74e2f97737f |