{"id":13413989,"url":"https://github.com/zoomio/tagify","last_synced_at":"2026-01-30T03:31:34.785Z","repository":{"id":39121579,"uuid":"126000626","full_name":"zoomio/tagify","owner":"zoomio","description":"Tagify produces a set of tags from a given source. Source can be either an HTML page, a Markdown document or a plain text. Supports English, Russian, Chinese, Hindi, Spanish, Arabic, Japanese, German, Hebrew, French and Korean languages.","archived":false,"fork":false,"pushed_at":"2024-07-18T05:48:48.000Z","size":380,"stargazers_count":36,"open_issues_count":2,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-07-31T20:53:13.769Z","etag":null,"topics":["cli","go","golang","html","keyword-extraction","keywords","tagging","tagify","tags"],"latest_commit_sha":null,"homepage":"https://www.zoomio.org/tagify","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zoomio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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,"publiccode":null,"codemeta":null}},"created_at":"2018-03-20T10:30:11.000Z","updated_at":"2024-07-18T05:48:51.000Z","dependencies_parsed_at":"2024-03-30T04:31:45.832Z","dependency_job_id":"25edf7bc-2cb7-4106-bc50-3d2660002166","html_url":"https://github.com/zoomio/tagify","commit_stats":null,"previous_names":[],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoomio%2Ftagify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoomio%2Ftagify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoomio%2Ftagify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zoomio%2Ftagify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zoomio","download_url":"https://codeload.github.com/zoomio/tagify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243642034,"owners_count":20323951,"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":["cli","go","golang","html","keyword-extraction","keywords","tagging","tagify","tags"],"created_at":"2024-07-30T20:01:54.578Z","updated_at":"2026-01-30T03:31:29.752Z","avatar_url":"https://github.com/zoomio.png","language":"HTML","readme":"# Tagify\n\n[![Go Report Card](https://goreportcard.com/badge/github.com/zoomio/tagify)](https://goreportcard.com/report/github.com/zoomio/tagify)\n[![Coverage](https://codecov.io/gh/zoomio/tagify/branch/master/graph/badge.svg)](https://codecov.io/gh/zoomio/tagify)\n[![GoDoc](https://godoc.org/github.com/zoomio/tagify?status.svg)](https://godoc.org/github.com/zoomio/tagify)\n[![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go)\n\nTagify can recieve STDIN, file or HTTP address as an input and return a list of most popular words ordered by popularity as an output.\n\nMore info about what is \"Tagify\" and the reasons behind it can be found [here](https://zoomio.org/blog/post/tags_as_a_service-5712840111423488).\n\nSupported formats:\n- Plain text\n- HTML\n- Markdown\n\nSupported languages:\n- English\n- Russian\n- Chinese\n- Hindi\n- Hebrew\n- Spanish\n- Arabic\n- Japanese\n- German\n- French\n- Korean\n\nWant to see it in action? Visit [Tagify Playground](https://www.zoomio.org/tagify).\n\nExample, \"tagify\" this repository (with the limit of 5 tags):\n```bash\ntagify -s https://github.com/zoomio/tagify -l 5\n```\n\nIn a code (see [cmd/cli/cli.go](https://raw.githubusercontent.com/zoomio/tagify/master/cmd/cli/cli.go)).\n\nUse `-no-stop` flag to disable filtering out of the [stop-words](https://github.com/zoomio/stopwords).\n\n## Extensions (Beta)\n\nSince `v0.50.0` Tagify has added support for extensions. See `extension/extension.go` and its usages and implementations in `processor/html/extension.go`. You can see an example at `processor/html/extension_test.go`.\n\n## Installation\n\n### Binary\n\nGet the latest [release](https://github.com/zoomio/tagify/releases/latest) by running this command in your shell:\n\n__For MacOS:__\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/zoomio/tagify/master/_bin/install.sh)\" -o darwin\n```\n\n__For MacOS (arm64):__\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/zoomio/tagify/master/_bin/install.sh)\" -o darwin arm64\n```\n\n__For Linux:__\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/zoomio/tagify/master/_bin/install.sh)\" -o linux\n```\n\n__For Windows:__\n```bash\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/zoomio/tagify/master/_bin/install.sh)\" -o windows\n```\n\n### Go dependency\n\n```bash\ngo get -u github.com/zoomio/tagify/...\n```\n\n## Changelog\n\nSee [CHANGELOG.md](https://raw.githubusercontent.com/zoomio/tagify/master/CHANGELOG.md)\n\n## Contributing\n\nSee [CONTRIBUTING.md](https://raw.githubusercontent.com/zoomio/tagify/master/CONTRIBUTING.md)\n\n## License\n\nReleased under the [Apache License 2.0](https://raw.githubusercontent.com/zoomio/tagify/master/LICENSE).\n\n[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/smeshkov)\n","funding_links":["https://www.buymeacoffee.com/smeshkov"],"categories":["Text Processing","文本处理","文本处理`解析和操作文本的代码库`","Utility","Bot Building","Template Engines"],"sub_categories":["Scrapers","HTTP Clients","查询语","刮刀"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoomio%2Ftagify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzoomio%2Ftagify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzoomio%2Ftagify/lists"}