معرفی شرکت ها


PyCraft-1503040


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

High quality Minecraft world editor
ویژگی مقدار
سیستم عامل OS Independent
نام فایل PyCraft-1503040
نام PyCraft
نسخه کتابخانه 1503040
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Guillaume Lemaître
ایمیل نویسنده guillaume.lemaitre@gmail.com
آدرس صفحه اصلی http://github.com/seventh/PyCraft
آدرس اینترنتی https://pypi.org/project/PyCraft/
مجوز CeCILL-C
.. image:: https://travis-ci.org/seventh/PyCraft.svg?branch=master :target: https://travis-ci.org/seventh/PyCraft PyCraft ======= PyCraft is a high-quality Python_ library for offline edition of Minecraft_ worlds. High-quality, because it respects the spirit of the Python programming language (i.e. it is *pythonic*), and because it also takes care of memory consumption, which can be a huge problem during Minecraft world edition. PyCraft complies with Python 3.3 specifications. .. _Minecraft: http://www.minecraft.net .. _Python: http://www.python.org PyCraft is governed by the CeCILL-C_ license under French law and abiding by the rules of distribution of free software. .. _CeCILL-C: http://www.cecill.info Quick and dirty: edit a NBT-formatted file ------------------------------------------ Here is an example of modifications that can be operated with PyCraft on a file stored with NBT_ encoding format. NBT encoding is widely used in Minecraft. .. _NBT: http://minecraft.gamepedia.com/NBT_format :: from pycraft import nbt # Load our favorite TAG_COMPOUND W = nbt.load("entry.nbt") # Add some meaningful information :) W[u"author"] = "Me, myself and I" W[u"date"] = "2014-02-26" # By default, ints are of kind TAG_LONG. Nobody likes show-offs W[u"nb_of_followers"] = 42 W.set_kind(u"nb_of_followers", con.TAG_BYTE) # Save it back nbt.save("entry.nbt", W) Nota: The Python 2 ``u""`` notation for unicode litteral constants, which had been removed by first releases of Python 3, had been added back by Python 3.3, in order to ease portability between the two Python flavours. Known limitations of using PyCraft with a Python 2.7 interpreter ---------------------------------------------------------------- The current section lists the packages of PyCraft that are known to be incompatible of a Python 2.7 interpretation: * Not a single one.


نحوه نصب


نصب پکیج whl PyCraft-1503040:

    pip install PyCraft-1503040.whl


نصب پکیج tar.gz PyCraft-1503040:

    pip install PyCraft-1503040.tar.gz