{"id":28542705,"url":"https://github.com/pomponchik/glvrd","last_synced_at":"2026-02-14T16:32:55.071Z","repository":{"id":204501895,"uuid":"711951678","full_name":"pomponchik/glvrd","owner":"pomponchik","description":"Клиент к сервису glvrd.ru","archived":false,"fork":false,"pushed_at":"2025-03-09T18:28:36.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T05:15:57.523Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/pomponchik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2023-10-30T13:58:47.000Z","updated_at":"2025-03-09T18:28:25.000Z","dependencies_parsed_at":"2024-01-07T20:59:49.402Z","dependency_job_id":"3341a8c7-6914-4383-82d3-6b0962f726c9","html_url":"https://github.com/pomponchik/glvrd","commit_stats":null,"previous_names":["pomponchik/glvrd"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/pomponchik/glvrd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomponchik%2Fglvrd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomponchik%2Fglvrd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomponchik%2Fglvrd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomponchik%2Fglvrd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pomponchik","download_url":"https://codeload.github.com/pomponchik/glvrd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pomponchik%2Fglvrd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29449370,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"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":[],"created_at":"2025-06-09T21:07:19.566Z","updated_at":"2026-02-14T16:32:55.056Z","avatar_url":"https://github.com/pomponchik.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# glvrd - неофициальный клиент к сервису glvrd.ru\n\n[![Downloads](https://static.pepy.tech/badge/glvrd/month)](https://pepy.tech/project/glvrd)\n[![Downloads](https://static.pepy.tech/badge/glvrd)](https://pepy.tech/project/glvrd)\n[![codecov](https://codecov.io/gh/pomponchik/glvrd/graph/badge.svg?token=LVGTo8aGM2)](https://codecov.io/gh/pomponchik/glvrd)\n[![Hits-of-Code](https://hitsofcode.com/github/pomponchik/glvrd?branch=main)](https://hitsofcode.com/github/pomponchik/glvrd/view?branch=main)\n[![Tests](https://github.com/pomponchik/glvrd/actions/workflows/tests_and_coverage.yml/badge.svg)](https://github.com/pomponchik/glvrd/actions/workflows/tests_and_coverage.yml)\n[![Python versions](https://img.shields.io/pypi/pyversions/glvrd.svg)](https://pypi.python.org/pypi/glvrd)\n[![PyPI version](https://badge.fury.io/py/glvrd.svg)](https://badge.fury.io/py/glvrd)\n[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\nЭто неофициальный и не production-ready клиент для замечательного сервиса проверки текстов - glvrd.ru. Работает в обход API, так что на особую скорость советую не расчитывать.\n\nУстанавливается так:\n\n```bash\npip install glvrd\n```\n\nПример кода:\n\n```python\nfrom glvrd import GlvrdClient\n\nclient = GlvrdClient()\ntext = 'Это неофициальный и не production-ready клиент для замечательного сервиса проверки текстов - glvrd.ru. Работает в обход API, так что на особую скорость советую не расчитывать.'\n\ndef print_estimate(estimate, what_is_it):\n  print(f'{what_is_it}: {estimate.estimate}/10')\n  for error_name, examples in estimate.errors.items():\n    print(f'{error_name}:')\n    for example in examples:\n      print(f'\\t{example}')\n  print()\n\nprint_estimate(client.estimate_clarity(text), 'Чистота')\nprint_estimate(client.estimate_readability(text), 'Читаемость')\n```\n\n... выдаст что-то вроде:\n\n```\nЧистота: 8.1/10\nНеобъективная оценка:\n\tзамечательного\nУсилитель:\n\tособую\n\nЧитаемость: 8.8/10\nВ начале предложения нет глагола:\n\tЭто неофициальный и не production-ready клиент для замечательного сервиса\nПодозрение на парцелляцию:\n\tРаботает в обход\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpomponchik%2Fglvrd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpomponchik%2Fglvrd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpomponchik%2Fglvrd/lists"}