2015-04-01 17:38:14 +02:00
|
|
|
"""
|
|
|
|
A modern, Python3-compatible, well-documented library for communicating
|
|
|
|
with a MineCraft server.
|
|
|
|
"""
|
2016-03-05 08:28:14 +01:00
|
|
|
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
|
2016-03-07 03:40:25 +01:00
|
|
|
SUPPORTED_MINECRAFT_VERSIONS = {
|
|
|
|
'1.8': 47,
|
|
|
|
'1.8.1': 47,
|
|
|
|
'1.8.2': 47,
|
|
|
|
'1.8.3': 47,
|
|
|
|
'1.8.4': 47,
|
|
|
|
'1.8.5': 47,
|
|
|
|
'1.8.6': 47,
|
|
|
|
'1.8.7': 47,
|
|
|
|
'1.8.8': 47,
|
2016-03-07 07:22:42 +01:00
|
|
|
'1.9': 107,
|
2016-04-28 05:01:24 +02:00
|
|
|
'1.9.1': 108,
|
|
|
|
'1.9.2': 109,
|
2016-06-17 02:06:15 +02:00
|
|
|
'1.9.3': 110,
|
|
|
|
'1.9.4': 110,
|
|
|
|
'1.10': 210,
|
2016-03-07 03:40:25 +01:00
|
|
|
}
|
2016-06-17 02:06:15 +02:00
|
|
|
|
|
|
|
SUPPORTED_PROTOCOL_VERSIONS = sorted(SUPPORTED_MINECRAFT_VERSIONS.values())
|