{"id":37116137,"url":"https://github.com/vilsol/oshabi","last_synced_at":"2026-01-14T13:37:37.721Z","repository":{"id":39673890,"uuid":"494812751","full_name":"Vilsol/oshabi","owner":"Vilsol","description":"A scanner for Path of Exile harvest horticrafting stations and sacred grove.","archived":true,"fork":false,"pushed_at":"2022-07-02T10:48:40.000Z","size":59542,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-21T02:18:56.105Z","etag":null,"topics":["pathofexile"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Vilsol.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":"FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["Vilsol"]}},"created_at":"2022-05-21T14:53:34.000Z","updated_at":"2023-01-27T21:05:43.000Z","dependencies_parsed_at":"2022-09-16T12:52:12.312Z","dependency_job_id":null,"html_url":"https://github.com/Vilsol/oshabi","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/Vilsol/oshabi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vilsol%2Foshabi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vilsol%2Foshabi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vilsol%2Foshabi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vilsol%2Foshabi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Vilsol","download_url":"https://codeload.github.com/Vilsol/oshabi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Vilsol%2Foshabi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28421401,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pathofexile"],"created_at":"2026-01-14T13:37:37.007Z","updated_at":"2026-01-14T13:37:37.712Z","avatar_url":"https://github.com/Vilsol.png","language":"Go","funding_links":["https://github.com/sponsors/Vilsol"],"categories":[],"sub_categories":[],"readme":"# oshabi [![push](https://github.com/Vilsol/oshabi/actions/workflows/push.yml/badge.svg)](https://github.com/Vilsol/oshabi/actions/workflows/push.yaml) ![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/vilsol/oshabi) ![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/vilsol/oshabi) [![GitHub license](https://img.shields.io/github/license/Vilsol/oshabi)](https://github.com/Vilsol/oshabi/blob/master/LICENSE) ![GitHub all releases](https://img.shields.io/github/downloads/vilsol/oshabi/total)\n\n![screenshot of oshabi home view](.github/images/home.png)\n\nA scanner for Path of Exile harvest horticrafting stations and sacred grove.\n\n## Features\n\n* Fully automated scanning of currently open grove/horticrafting station.\n* OCR Support for all in-game languages (looking for translators for UI).\n* Works on both Windows and Linux.\n* Does not require AutoHotkey.\n* Automatic scaling detection.\n* Remembers custom pricing.\n\n## Installation\n\n### Windows\n\nDownload the latest installer from [here](https://github.com/Vilsol/oshabi/releases).\n\n### Linux\n\n#### Arch\n\n```shell\nyay -S oshabi-bin\n```\n\n#### Ubuntu (and derivatives)\n\nFirst install tesseract and leptonica (from a PPA because ubuntu \"latest\" is from 2019):\n\n```shell\nsudo add-apt-repository -y ppa:alex-p/tesseract-ocr-devel\nsudo apt install -y libtesseract5 liblept5\n```\n\nThen you need to clone and build OpenCV:\n\n```shell\nsudo apt install -y unzip wget build-essential cmake curl git libgtk2.0-dev libgtk-3-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libdc1394-dev libasound2-dev\nrm -rf /tmp/opencv \u0026\u0026 mkdir /tmp/opencv \u0026\u0026 cd /tmp/opencv\ncurl -Lo opencv.zip https://github.com/opencv/opencv/archive/4.6.0.zip\nunzip -q opencv.zip\ncurl -Lo opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/4.6.0.zip\nunzip -q opencv_contrib.zip\nrm opencv.zip opencv_contrib.zip\nmkdir /tmp/opencv/opencv-4.6.0/build \u0026\u0026 cd /tmp/opencv/opencv-4.6.0/build\ncmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D BUILD_SHARED_LIBS=ON -D OPENCV_EXTRA_MODULES_PATH=/tmp/opencv/opencv_contrib-4.6.0/modules -D BUILD_DOCS=OFF -D BUILD_EXAMPLES=OFF -D BUILD_TESTS=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_opencv_java=NO -D BUILD_opencv_python=NO -D BUILD_opencv_python2=NO -D BUILD_opencv_python3=NO -D WITH_JASPER=OFF -D WITH_TBB=ON -DOPENCV_GENERATE_PKGCONFIG=ON ..\nmake -j $(nproc --all)\nmake preinstall\nsudo make install\nsudo ldconfig\ncd ~/ \u0026\u0026 rm -rf /tmp/opencv\n```\n\n## Usage\n\nWhen calibrating, make sure that the bottom left and top right of your PoE window are not obstructed:\n\n![](.github/images/oshabi-calibration.jpg)\n\nHere is a video showcasing the tool:\n\n\u003ca href=\"https://youtu.be/xZBicEgSh58\" target=\"_blank\" rel=\"noopener\"\u003e![](.github/images/oshabi-youtube.jpg)\u003c/a\u003e\n\n## List of things that could be done\n\n* Manual screenshot support\n* Display current value of an Exalted Orb\n* Manually modifiable craft list\n* Configurable ignore-list of crafts\n* Configurable channel message\n* macOS Release\n* AppImage\n* deb package\n* rpm package\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvilsol%2Foshabi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvilsol%2Foshabi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvilsol%2Foshabi/lists"}