All Projects → summer → mojang

summer / mojang

Licence: MIT license
A wrapper for the Mojang API and Minecraft website

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to mojang

Vestaboard
An API Wrapper for Vestaboards written in Python
Stars: ✭ 23 (+21.05%)
Mutual labels:  pypi, api-wrapper
MojangSharp
A C# wrapper library for Mojang API (no longer actively maintained)
Stars: ✭ 38 (+100%)
Mutual labels:  mojang, mojang-api
buckshot
A fast and capable Minecraft name sniper.
Stars: ✭ 21 (+10.53%)
Mutual labels:  mojang, mojang-api
Python Datamuse
Python 3 wrapper for the Datamuse API
Stars: ✭ 47 (+147.37%)
Mutual labels:  pypi, api-wrapper
feupy
The sigarra scraping library no one asked for
Stars: ✭ 13 (-31.58%)
Mutual labels:  pypi
pip-download
A wrapper for pip download in offline scenario.
Stars: ✭ 22 (+15.79%)
Mutual labels:  pypi
PowerSchool-API
A Node.js library for interacting with the PowerSchool SIS API.
Stars: ✭ 21 (+10.53%)
Mutual labels:  api-wrapper
pystyle
The source of my Python library, pystyle.
Stars: ✭ 158 (+731.58%)
Mutual labels:  pypi
mixin bot
A simple API wrapper for Mixin Network in Ruby
Stars: ✭ 12 (-36.84%)
Mutual labels:  api-wrapper
Pyaiodl
A python Asynchronous Downloader - Pyaiodl
Stars: ✭ 40 (+110.53%)
Mutual labels:  pypi
pagespeedParseR
pagespeedParseR is an R wrapper for Google Pagespeed Insights API, that also enables convenient parsing
Stars: ✭ 20 (+5.26%)
Mutual labels:  api-wrapper
autopilot-api
A third-party JavaScript wrapper for Autopilot's REST API.
Stars: ✭ 14 (-26.32%)
Mutual labels:  api-wrapper
cryptox
Common API wrapper for multiple crypto currency exchanges
Stars: ✭ 50 (+163.16%)
Mutual labels:  api-wrapper
pipx
Install and Run Python Applications in Isolated Environments
Stars: ✭ 5,698 (+29889.47%)
Mutual labels:  pypi
aiotinydb
asyncio compatibility shim for tinydb
Stars: ✭ 42 (+121.05%)
Mutual labels:  pypi
pinboard.net
Fully featured API wrapper for pinboard.in
Stars: ✭ 21 (+10.53%)
Mutual labels:  api-wrapper
psm
Pypi Source Manager: fast switch between different Pypi Source: Pypi, double, aliyun
Stars: ✭ 31 (+63.16%)
Mutual labels:  pypi
covidtrackerapiwrapper
CovidSharp is a crossplatform C# API wrapper for the Coronavirus tracking API (https://github.com/ExpDev07/coronavirus-tracker-api)
Stars: ✭ 11 (-42.11%)
Mutual labels:  api-wrapper
open route service
An encapsulation made around openrouteservice API for Dart and Flutter projects. Made for easy generation of Routes and Directions on Maps, Isochrones, Time-Distance Matrix, Pelias Geocoding, POIs, Elevation and routing Optimizations using their amazing API.
Stars: ✭ 20 (+5.26%)
Mutual labels:  api-wrapper
harvesting
Ruby wrapper for the Harvest API v2
Stars: ✭ 24 (+26.32%)
Mutual labels:  api-wrapper

Mojang

PyPI version PyPI - Python Version

Read the Docs MIT License PyPI - Downloads

Documentation

Mojang is a Python package for accessing Mojang's services. It serves as a simple wrapper around Mojang's API and can be used to convert UUIDs, get profile information, and much more.

The library does not currently support authentication or login features.

Installation

Python 3.6 or higher is required.

To install the library, you can just run the following console command:

python -m pip install mojang

Quickstart

from mojang import MojangAPI

uuid = MojangAPI.get_uuid("Notch")

if not uuid:
    print("Notch is not a taken username.")
else:
    print(f"Notch's UUID is {uuid}")

    profile = MojangAPI.get_profile(uuid)
    print(f"Notch's skin URL is {profile.skin_url}")
    print(f"Notch's skin model is {profile.skin_model}")
    print(f"Notch's cape URL is {profile.cape_url}")

To see a complete list of methods, read the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].