Metadata-Version: 2.1
Name: pymcworld
Version: 1.0.1
Summary: Simple Minecraft world editor
Home-page: https://github.com/gullyn/pymcworld
Author: gullyn
Author-email: gullyn.games@gmail.com
License: UNKNOWN
Description: # pymcworld
        `pymcworld` is a simple world creator for Minecraft. It currently supports 1.16.5. The library automatically takes care of level files, placing of blocks, gamerules, and more. It currently supports over 500 blocks.
        Example:
        
            from pymcworld.world import World
        
        	world = World()
        	world.set_block(0, 0, 0, world.blocks.ANDESITE)
        	world.save("testworld")
        
        This creates a world, with the block at (0, 0, 0) set to andesite, and saves the world to the `testworld` folder. This is the code to create a sphere:
        
            from pymcworld.world import World
        
        	world = World()
        	# this function takes 5 arguments: x, y, z, radius, and block type
        	world.shape.sphere(0, 20, 0, 15, world.blocks.ANDESITE)
        	world.save("testworld")
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
