{"id":19564456,"url":"https://github.com/u8slvn/bionic-writer","last_synced_at":"2026-02-16T18:36:23.791Z","repository":{"id":220553634,"uuid":"749724099","full_name":"u8slvn/bionic-writer","owner":"u8slvn","description":"Write Bionic Reading text with Python.","archived":false,"fork":false,"pushed_at":"2024-02-12T19:59:39.000Z","size":22,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T15:10:44.505Z","etag":null,"topics":["bionic","bionic-reading","bionicreading","highlighted","python","reading","text"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/u8slvn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2024-01-29T09:14:37.000Z","updated_at":"2025-10-27T06:27:18.000Z","dependencies_parsed_at":"2024-11-11T05:24:55.297Z","dependency_job_id":"6c3322b7-cd5e-48ae-914e-4ef5202d9b79","html_url":"https://github.com/u8slvn/bionic-writer","commit_stats":null,"previous_names":["u8slvn/bionic-writer"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/u8slvn/bionic-writer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/u8slvn%2Fbionic-writer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/u8slvn%2Fbionic-writer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/u8slvn%2Fbionic-writer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/u8slvn%2Fbionic-writer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/u8slvn","download_url":"https://codeload.github.com/u8slvn/bionic-writer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/u8slvn%2Fbionic-writer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29514739,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T17:46:34.542Z","status":"ssl_error","status_checked_at":"2026-02-16T17:46:30.907Z","response_time":115,"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":["bionic","bionic-reading","bionicreading","highlighted","python","reading","text"],"created_at":"2024-11-11T05:22:06.801Z","updated_at":"2026-02-16T18:36:23.770Z","avatar_url":"https://github.com/u8slvn.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bionic Writer\n\n[![Pypi Version](https://img.shields.io/pypi/v/bionic-writer.svg)](https://pypi.org/project/bionic-writer/)\n[![Python Version](https://img.shields.io/pypi/pyversions/bionic-writer)](https://pypi.org/project/bionic-writer/)\n[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/u8slvn/bionic-writer/ci.yml)](https://github.com/u8slvn/bionic-writer/actions/workflows/ci.yml)\n[![Codecov](https://img.shields.io/codecov/c/gh/u8slvn/bionic-writer)](https://app.codecov.io/gh/u8slvn/bionic-writer)\n[![Project license](https://img.shields.io/pypi/l/bionic-writer)](https://pypi.org/project/bionic-writer/)\n\n**Bio**nic **Wri**ter **i**s **a** **Pyt**hon **lib**rary **t**o **wr**ite **te**xt **wi**th **Bio**nic **Rea**ding **st**yle **f**or **a**ny **ki**nd **o**f **for**mat.\n\n## About Bionic Reading method\n\nFrom: [bionic-reading.com/](https://bionic-reading.com/br-method/)\n\n\u003e Bionic Reading® revises texts so that the most concise parts of words are highlighted. This guides the eye over the text and the brain remembers previously learned words more quickly. Save precious time. Gain advantages. Learn new things faster.\n\nDoes Bionic Reading really speed-up your reading speed? According to this [paper](https://blog.readwise.io/bionic-reading-results/), probably not. Whatsoever it's still a nice screen reading technique that seems to help many people to stay focused during their reading sessions.\n\n## Usage\n\n### Installation\n```bash\npip install bionic-writer\n```\n\n### Quickstart examples\n\n#### Write a Bionic Reading text in Markdown format:\n\n```python\nimport bionic_writer\n\ntext = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"\n\nbionic_md = bionic_writer.write(text=text, affix=\"**\", postfix=\"**\")\n\nprint(bionic_md)\n```\nOutput:\n\n```text\n**Lo**rem **ip**sum **do**lor **s**it **am**et, **conse**ctetur **adipi**scing **el**it.\n```\n\n#### Write a Bionic Reading text in HTML format:\n```python\nimport bionic_writer\n\ntext = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"\n\nbionic_html = bionic_writer.write(text=text, affix=\"\u003cb\u003e\", postfix=\"\u003c/b\u003e\")\n\nprint(bionic_html)\n```\n\nOutput:\n\n```text\n\u003cb\u003eLo\u003c/b\u003erem \u003cb\u003eip\u003c/b\u003esum \u003cb\u003edo\u003c/b\u003elor \u003cb\u003es\u003c/b\u003eit \u003cb\u003eam\u003c/b\u003eet, \u003cb\u003econse\u003c/b\u003ectetur \u003cb\u003eadipi\u003c/b\u003escing \u003cb\u003eel\u003c/b\u003eit.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fu8slvn%2Fbionic-writer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fu8slvn%2Fbionic-writer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fu8slvn%2Fbionic-writer/lists"}