


Export Your Minecraft Worlds with XPORT
XPORT is a command-line tool that allows you to export your Minecraft worlds in a variety of formats, including JSON, CSV, and more. It is a useful tool for developers who want to use their Minecraft worlds in other applications or for players who want to back up their worlds.
Here are some examples of what you can do with XPORT:
1. Export your world as a JSON file:
```
xport -o world.json
```
This will export your current world as a JSON file called "world.json".
2. Export your world as a CSV file:
```
xport -o world.csv
```
This will export your current world as a CSV file called "world.csv".
3. Export only the blocks in your world:
```
xport -b
```
This will export only the block data for your current world, without any other information.
4. Export only the entities in your world:
```
xport -e
```
This will export only the entity data for your current world, without any other information.
5. Export your world to a Minecraft-compatible format:
```
xport -m
```
This will export your current world as a Minecraft-compatible file, which can be used to import the world into another Minecraft game or server.
These are just a few examples of what you can do with XPORT. The tool has many other options and features that you can use to customize your exports and get the data you need.



