1
Fork 0
mirror of https://github.com/Steffo99/lihzahrd.git synced 2024-10-16 06:27:29 +00:00
Terraria world parser in Python
Find a file
Kattusite 3e1ce48a7b Add fish 39 and 40 to anglerquestfish.py
The AnglerFishQuest tag can take a new value (40).

Currently, lihazahrd.World() crashes when trying to load a world with this value.

I verified ingame that a value of 40 corresponds to the Scorpio Fish.
This commit adds a value to the AnglerQuestFish enum for this new option.
It also adds a label for fish 39 (the Scarab Fish), which was previously unknown.

For backwards compatibility, I left the old name (UNKNOWN1) as-is.
2023-10-17 19:26:31 +02:00
.github Configure dependabot 2023-03-06 02:41:39 +01:00
docs Update docs 2023-03-06 02:48:53 +01:00
docs_source 🧹 Run Black on all files 2022-02-11 18:05:29 +01:00
lihzahrd Add fish 39 and 40 to anglerquestfish.py 2023-10-17 19:26:31 +02:00
.gitattributes Update git data 2019-08-07 14:08:25 +02:00
.gitignore 🧹 Remove __main__.py 2021-06-07 10:16:32 +02:00
LICENSE.txt Create LICENSE.txt 2019-08-13 17:06:24 +02:00
poetry.lock ⬆️ (deps-dev): Bump urllib3 from 1.26.14 to 1.26.17 2023-10-03 14:19:34 +02:00
publish.bat publish: 2.0.0a1 2020-06-10 19:54:56 +02:00
pyproject.toml Bump version to 3.0.1 and update deps 2023-03-07 01:26:26 +01:00
README.md Update README.md 2023-03-07 01:45:48 +01:00

lihzahrd Available on PyPI

A Terraria 1.4.4.9 world parser in Python.

You can use this package to get programmer-friendly data from a Terraria world!

Installation

Use your favourite Python package manager to install lihzahrd:

  • Venv + Pip

    $ source .venv/bin/activate
    $ pip install lihzahrd
    
  • Poetry

    $ poetry add lihzahrd
    
  • And more!

Usage

You can open a world file and get a World object by calling:

import lihzahrd
world = lihzahrd.World.create_from_file("filename.wld")

It will take a while to process: a small Terraria world contains more than 5 million tiles!

Once you have a World object, you can use all data present in the save file by accessing its attributes.

Warning

Loading maliciously designed Terraria worlds can drain system resources, crash the interpreter, or possibly do more evil things!

Make sure you trust the worlds you are parsing!

Documentation

The documentation is available here.

If you know something that is missing in the documentation, please let me know with an issue!

PyPy

lihzahrd is compatible with PyPy, an alternative implementation on Python!

If you think that parsing a world takes too much time, you can use PyPy to reduce the required time by a factor of ~3!

Benchmarks

Time to parse the same large world:

  • CPython took 11.45 s.
  • Pypy took 3.57 s!

Development

To contribute to lihzahrd, you need to have Poetry installed on your PC.

After you've installed Poetry, clone the git repo with the command:

$ git clone https://github.com/Steffo99/lihzahrd

Then enter the new directory:

$ cd lihzahrd

And finally install all dependencies and the package:

$ poetry install

This will create a new virtualenv for the development of the library; you can activate it by typing:

$ poetry shell

Please note that for compatibility with PyPy, the project needs to target Python 3.6.

Building docs

You can build the docs by entering the docs_source folder and running make html, then committing the whole docs folder.

References used

License

lihzahrd is licensed under the AGPL 3.0. That means you have to publish under the same license the source code of any program you create that uses lihzahrd.

See also