orefinder-estimate (PyPI)
A tiny, fast, pure-Python (no dependencies) Minecraft ore estimator. Feed it a seed label, version, and player position; get back likely ore coordinates and the best mining Y for Java or Bedrock.
Fast, offline estimates of the best mining Y and where an ore is likely to concentrate. For pinpoint, seed-exact coordinates (Java & Bedrock), pair it with https://orefinder.io.
Install
pip install orefinder-estimate
Usage (library)
from orefinder_estimate import estimate
result = estimate({
"seed": "42",
"version": "java_1_21",
"ore": "diamond",
"x": 0, "y": 64, "z": 0,
"biome": "plains",
"searchRadius": 220,
})
print(result["metadata"]["miningPeakY"]) # suggested Y
best = result["bestCluster"][0]
print(best["x"], best["y"], best["z"], best["probabilityPct"])
Usage (CLI)
orefinder-estimate --seed 42 --version java_1_21 --ore diamond -x 0 -y 64 -z 0
orefinder-estimate --ore ancient_debris --version java_1_21 --biome crimson_forest --json
orefinder-estimate --ores # list supported ores
Supported ores
diamond, iron, gold, coal, copper, emerald, redstone, lapis, ancient_debris (with netherite aliases), nether_gold, nether_quartz, gilded_blackstone, blackstone.
Notes
- Pure statistics over published Y-distribution ranges; deterministic for a given input, and identical to the sibling packages in other languages.
- No world-gen simulation, no structures, and no network calls.
- Seed-accurate placement and structure finding live at orefinder.io.
MIT licensed. (c) Ore Finder.
Release files for orefinder-estimate 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| orefinder_estimate-1.0.0.tar.gz | 13.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| orefinder_estimate-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 27.8 kB
Release files / orefinder_estimate-1.0.0.tar.gz
| Download URL | orefinder_estimate-1.0.0.tar.gz |
|---|---|
| Size | 13.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
99749c52e2fcd06059388ea141c5f80e72dfd28720ee33c470285d20460a7fb2
|
|
BLAKE2b-256 checksum How to use checksums |
1c1cd1299d2d1148a1c78fa59ecb1246cbd12213145c9e24e3122e28dfa80be4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.2
|
Release files / orefinder_estimate-1.0.0-py3-none-any.whl
| Download URL | orefinder_estimate-1.0.0-py3-none-any.whl |
|---|---|
| Size | 14.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
54e0d9b8b66fc27dc582e6a39ba85ba0ecf9ce16a937904d49d717c0a8d1c35a
|
|
BLAKE2b-256 checksum How to use checksums |
f8707344e925d8af54cec0520633007799607349a40921747984b1f46f7764bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.2
|