{"id":20433956,"url":"https://github.com/cable8mm/sentence-to-keywords","last_synced_at":"2026-05-10T15:41:09.176Z","repository":{"id":182780941,"uuid":"669087932","full_name":"cable8mm/sentence-to-keywords","owner":"cable8mm","description":"Use a search engine(naver.com) to extract important keywords from sentences and correct typos.","archived":false,"fork":false,"pushed_at":"2024-03-03T06:25:52.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-15T19:22:32.593Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cable8mm.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":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-07-21T10:04:22.000Z","updated_at":"2024-03-11T04:08:52.000Z","dependencies_parsed_at":"2024-03-03T07:27:22.111Z","dependency_job_id":null,"html_url":"https://github.com/cable8mm/sentence-to-keywords","commit_stats":null,"previous_names":["cable8mm/sentence-to-keywords"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cable8mm%2Fsentence-to-keywords","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cable8mm%2Fsentence-to-keywords/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cable8mm%2Fsentence-to-keywords/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cable8mm%2Fsentence-to-keywords/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cable8mm","download_url":"https://codeload.github.com/cable8mm/sentence-to-keywords/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241976589,"owners_count":20051671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-15T08:22:55.088Z","updated_at":"2026-05-10T15:41:04.138Z","avatar_url":"https://github.com/cable8mm.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sentence To Keywords\n\n[![CS Fixer](https://github.com/cable8mm/sentence-to-keywords/actions/workflows/php-coding-style-fixer.yml/badge.svg)](https://github.com/cable8mm/sentence-to-keywords/actions/workflows/php-coding-style-fixer.yml)\n[![Test](https://github.com/cable8mm/sentence-to-keywords/actions/workflows/php-test.yml/badge.svg)](https://github.com/cable8mm/sentence-to-keywords/actions/workflows/php-test.yml)\n![GitHub Release](https://img.shields.io/github/v/release/cable8mm/sentence-to-keywords?logo=packagist\u0026color=F28D1A)\n![Packagist Downloads](https://img.shields.io/packagist/dt/cable8mm/sentence-to-keywords?logo=packagist\u0026color=F28D1A)\n![minimum PHP version](https://img.shields.io/badge/php-%3E%3D_8.0-8892BF.svg?logo=php)\n![GitHub License](https://img.shields.io/github/license/cable8mm/sentence-to-keywords)\n\n사용자가 검색창에 검색어를 넣을 경우, 오타 혹은 문장을 단어로 변환하여 검색을 해야 합니다. 자연어 처리 보다 간단하게 국내 검색엔진의 결과를 파싱한 후 중요 단어를 얻을 수 있습니다.\n\nUse a search engine(naver.com) to extract important keywords from sentences and correct typos.\n\n## Features\n\n- [x] 오타도 높은 확률로 수정\n- [x] 긴 문장에서도 중요 키워드를 얻을 수 있음\n- [x] 데이터베이스 사용 없음\n- [x] 인증키 없음\n\n## Installation\n\n```sh\ncomposer require cable8mm/sentence-to-keywords\n```\n\n## Usage\n\n```php\nprint_r(new ToWords('사칙연산 잘 하는 법));\n```\n\n    Array\n    (\n        [0] =\u003e 사칙연산\n        [1] =\u003e 하는\n        [2] =\u003e 연산\n        [3] =\u003e 잘\n        [4] =\u003e 하는법\n        [5] =\u003e 사칙연산잘하는법\n        [6] =\u003e 법\n        [7] =\u003e 사칙 연산\n    )\n\n```php\nprint_r(new ToWords('키우기 좋은 견종));\n```\n\n    Array\n    (\n        [0] =\u003e 견종\n        [1] =\u003e 키우기 좋은 견종\n        [2] =\u003e 키우기\n        [3] =\u003e 좋은\n        [4] =\u003e 키우기좋은견종\n        [5] =\u003e 키우기 좋은\n        [6] =\u003e 기르기\n        [7] =\u003e 좋은 견종\n    )\n\n```php\nprint_r(new ToWords('오스트렐리아 영어 스픽킹));\n```\n\n    Array\n    (\n        [0] =\u003e 영어\n        [1] =\u003e 스피킹\n        [2] =\u003e 오스트레일리아\n    )\n\n## Fix coding style\n\n```sh\ncomposer lint\n```\n\n## Test\n\n```sh\ncomposer test\n```\n\n## License\n\nThe Sentence To Keywords is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcable8mm%2Fsentence-to-keywords","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcable8mm%2Fsentence-to-keywords","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcable8mm%2Fsentence-to-keywords/lists"}