{"id":42108330,"url":"https://github.com/tonyjurg/morphkit","last_synced_at":"2026-01-26T13:24:11.077Z","repository":{"id":304841306,"uuid":"1020140324","full_name":"tonyjurg/morphkit","owner":"tonyjurg","description":"Python toolkit for interfacing with Morpheus morphological analyser","archived":false,"fork":false,"pushed_at":"2026-01-23T13:20:43.000Z","size":6194,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-24T05:22:06.752Z","etag":null,"topics":["morpheus","morphological-analyser"],"latest_commit_sha":null,"homepage":"https://tonyjurg.github.io/morphkit/","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tonyjurg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-15T11:59:08.000Z","updated_at":"2026-01-23T13:09:11.000Z","dependencies_parsed_at":"2025-07-16T12:01:01.195Z","dependency_job_id":null,"html_url":"https://github.com/tonyjurg/morphkit","commit_stats":null,"previous_names":["tonyjurg/morphkit"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/tonyjurg/morphkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fmorphkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fmorphkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fmorphkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fmorphkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tonyjurg","download_url":"https://codeload.github.com/tonyjurg/morphkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tonyjurg%2Fmorphkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28779338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T11:46:04.308Z","status":"ssl_error","status_checked_at":"2026-01-26T11:46:02.664Z","response_time":59,"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":["morpheus","morphological-analyser"],"created_at":"2026-01-26T13:24:10.423Z","updated_at":"2026-01-26T13:24:11.068Z","avatar_url":"https://github.com/tonyjurg.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)  [![Docs](https://img.shields.io/badge/docs-%F0%9F%93%96-success.svg)](https://tonyjurg.github.io/morphkit/) [![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/) [![DOI](images/zenodo.15920833.svg)](https://doi.org/10.5281/zenodo.15920833) [![SWH](https://archive.softwareheritage.org/badge/origin/https://github.com/tonyjurg/morphkit/)](https://archive.softwareheritage.org/browse/origin/?origin_url=https://github.com/tonyjurg/morphkit)\n\n\u003cimg src=\"docs/images/morphkit.png\" width=250 height=250\u003e\n\nMorphkit is a Python toolkit for Greek morphological analysis and tag similarity comparison. It uses the [`betacode`](https://github.com/perseids-tools/beta-code-py) library, the API of Morpheus (e.g., running in a [Docker virtualisation environment](https://hub.docker.com/r/perseidsproject/morpheus-api)) and a porting of the [Sandborg-Petersen morphological decoder](https://github.com/tonyjurg/Sandborg-Petersen-decoder).\n\n## Documentation\n\nFor documentation see [tonyjurg.github.io/morphkit](https://tonyjurg.github.io/morphkit/).\n\n## Package\n\nFor the actual code see [/morphkit](https://github.com/tonyjurg/morphkit/tree/main/morphkit).\n\n## Loading\n\nSince it is not a 'real' package (i.e., installable with `pip`), you need to load it locally. For example in a Jupyter Notebook:\n\n```Python\nimport sys\nsys.path.insert(0, \"..\")    # the relative path for the morphkit directory to your notebook dir\nimport morphkit\n```\n\n## Configuration\n\nMorphkit supports configurable HTTP timeouts and retry behavior for Morpheus API requests.\n\n**Default timeout:** 30 seconds\n\n**Per-request timeout:**\n```Python\nresponse = morphkit.get_word_blocks(\"tou=\", \"localhost:1315\", timeout=10)\n```\n\n**Global configuration:**\n```Python\nfrom morphkit.config import config\n\nconfig.timeout = 45\nconfig.retry_attempts = 3\nconfig.retry_delay = 2.0\n```\n\n**Environment variables:**\n```bash\nexport MORPHKIT_TIMEOUT=60\nexport MORPHKIT_RETRY_ATTEMPTS=2\nexport MORPHKIT_RETRY_DELAY=1.5\n```\n\n## Tools used\n\nThe standard set of tools ([Python documentation](https://www.python.org/doc/), tech sites like [stackoverflow](https://stackoverflow.com/), and Python syntax checkers like [Pythonium](https://pythonium.net/linter)) were used to create this package. Furthermore, for the creation of a subset of features, also the [Anaconda Assistant](https://www.anaconda.com/capability/anaconda-assistant) (using [OpenAI](https://openai.com/) as backend) and [GitHub Copilot](https://github.com/features/copilot) in Visual Studio were used to debug and/or optimize parts of the code. Where specified, [OpenAI Codex](https://chatgpt.com/codex) was used to create PRs.\n\n## License\n\nThe morphkit package is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://github.com/tonyjurg/morphkit/blob/main/LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonyjurg%2Fmorphkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftonyjurg%2Fmorphkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftonyjurg%2Fmorphkit/lists"}