{"id":37186711,"url":"https://github.com/robtec/ppr-go","last_synced_at":"2026-01-14T21:39:43.704Z","repository":{"id":57709704,"uuid":"266586520","full_name":"robtec/ppr-go","owner":"robtec","description":"CLI to fetch sales from Property Price Register IE https://www.propertypriceregister.ie","archived":false,"fork":false,"pushed_at":"2022-07-02T16:30:30.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-21T03:13:24.065Z","etag":null,"topics":["cli","go","gocolly"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robtec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-24T17:02:29.000Z","updated_at":"2022-07-02T16:23:19.000Z","dependencies_parsed_at":"2022-09-26T21:21:15.825Z","dependency_job_id":null,"html_url":"https://github.com/robtec/ppr-go","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/robtec/ppr-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robtec%2Fppr-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robtec%2Fppr-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robtec%2Fppr-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robtec%2Fppr-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robtec","download_url":"https://codeload.github.com/robtec/ppr-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robtec%2Fppr-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28436073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T21:32:52.117Z","status":"ssl_error","status_checked_at":"2026-01-14T21:32:33.442Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["cli","go","gocolly"],"created_at":"2026-01-14T21:39:43.153Z","updated_at":"2026-01-14T21:39:43.698Z","avatar_url":"https://github.com/robtec.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Property Price Register CLI (unoffical)\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/robtec/ppr-go)](https://goreportcard.com/report/github.com/robtec/ppr-go)\n![ci](https://github.com/robtec/ppr-go/workflows/ci/badge.svg)\n\nThis cli allows you to query the sales listed on `https://www.propertypriceregister.ie`\n\n## Installation\n\nUsing go\n\n```\n$ go get github.com/robtec/ppr-go/cmd/...\n```\n\nor head over to [Releases](https://github.com/robtec/ppr-go/releases)\n\n## Usage\n\nUse the following syntax to run `ppr` commands from your terminal window\n\n`$ ppr [options] address`\n\navailable `options`\n\n* `-c` - county to search, default Galway\n* `-yf` - year from to search, default `2010`\n* `-yt` - year to search to, default next year `now.Year() + 1`\n* `-o` - change output, options are `json`, default `table`\n\n### Example\n\n```\n$ ppr -c mayo -yf 2019 castlebar\n\n+------------+--------------------------------+----------------+\n|    DATE    |            ADDRESS             |     PRICE      |\n+------------+--------------------------------+----------------+\n| 20/12/2019 | DUMMY, CASTLEBAR, MAYO         | €45,500.00     |\n+------------+--------------------------------+----------------+\n| 19/12/2019 | LANE, CASTLEBAR, MAYO          | €321,000.00    |\n+------------+--------------------------------+----------------+\n| 17/12/2019 | SPRINGFIELD, CASTLEBAR,        | €543,000.00    |\n|            | MAYO                           |                |\n+------------+--------------------------------+----------------+\n| 17/12/2019 | MICKY MOUSE DRIVE, CASTLEBAR   | €99,000.00     |\n+------------+--------------------------------+----------------+\n| 13/12/2019 | 123 FAKE ROAD, CASTLEBAR, CO   | €75,000.00     |\n|            | MAYO                           |                |\n+------------+--------------------------------+----------------+\n# real addresses/prices omitted for privacy\n...\n```\n\nJSON output\n\n```\n$ ppr -o json -c mayo -yf 2019 castlebar\n\n{\n    \"sales\": [\n        {\n            \"date\": \"20/12/2019\",\n            \"price\": \"€45,500.00\",\n            \"address\": \"DUMMY, CASTLEBAR, MAYO \"\n        },\n        {\n            \"date\": \"19/12/2019\",\n            \"price\": \"€321,000.00\",\n            \"address\": \"LANE, CASTLEBAR, MAYO\"\n        },\n        {\n            \"date\": \"17/12/2019\",\n            \"price\": \"€543,000.00\",\n            \"address\": \"SPRINGFIELD, CASTLEBAR, MAYO\"\n        },\n        {\n            \"date\": \"17/12/2019\",\n            \"price\": \"€99,000.00\",\n            \"address\": \"MICKY MOUSE DRIVE, CASTLEBAR\"\n        },\n        {\n            \"date\": \"13/12/2019\",\n            \"price\": \"€75,000.00\",\n            \"address\": \"123 FAKE ROAD, CASTLEBAR, CO MAYO\"\n        }]\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobtec%2Fppr-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobtec%2Fppr-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobtec%2Fppr-go/lists"}