{"id":41445069,"url":"https://github.com/mammuth/kindle-clippings","last_synced_at":"2026-01-23T15:02:59.816Z","repository":{"id":44353495,"uuid":"193543827","full_name":"mammuth/kindle-clippings","owner":"mammuth","description":":books: Web application for managing your kindle highlights","archived":false,"fork":false,"pushed_at":"2026-01-02T11:39:19.000Z","size":2545,"stargazers_count":163,"open_issues_count":21,"forks_count":14,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-01-03T01:24:23.308Z","etag":null,"topics":["books","django","hacktoberfest","kindle","kindle-highlights","python","quotes","reading"],"latest_commit_sha":null,"homepage":"http://reading-notes.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mammuth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"mammuth","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2019-06-24T16:47:23.000Z","updated_at":"2026-01-02T11:49:20.000Z","dependencies_parsed_at":"2022-08-12T11:03:15.125Z","dependency_job_id":"ec03bca7-5915-46d7-af7c-f167d638c7f2","html_url":"https://github.com/mammuth/kindle-clippings","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/mammuth/kindle-clippings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mammuth%2Fkindle-clippings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mammuth%2Fkindle-clippings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mammuth%2Fkindle-clippings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mammuth%2Fkindle-clippings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mammuth","download_url":"https://codeload.github.com/mammuth/kindle-clippings/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mammuth%2Fkindle-clippings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28694462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T14:15:13.573Z","status":"ssl_error","status_checked_at":"2026-01-23T14:09:05.534Z","response_time":59,"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":["books","django","hacktoberfest","kindle","kindle-highlights","python","quotes","reading"],"created_at":"2026-01-23T15:02:59.547Z","updated_at":"2026-01-23T15:02:59.776Z","avatar_url":"https://github.com/mammuth.png","language":"JavaScript","funding_links":["https://ko-fi.com/mammuth","https://www.buymeacoffee.com/mammuth"],"categories":[],"sub_categories":[],"readme":"# Reading Notes for Kindle\n\u003ca href=\"https://www.buymeacoffee.com/mammuth\" target=\"_blank\"\u003e\u003cimg src=\"https://bmc-cdn.nyc3.digitaloceanspaces.com/BMC-button-images/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: auto !important;width: auto !important;\" \u003e\u003c/a\u003e\n\n:books: Reading Notes is a free and open source web application for maintaining your **Kindle Highlights**.\n\nhttp://reading-notes.com\n\n**Features:**\n- Upload and search through your clippings\n- Filter clippings by books\n- **E-Mail delivery** of a random quote (daily, bi-weekly, weekly)\n- **Exclude specific books** from email delivery\n- Nerdy statistics about your clippings\n- Page with a random quote (can be used as new-tab page or on wall-mounted screens).\n\n## Contribute\nFeel free to open issues or PRs!\nThis is a pretty simple django application with a good'ol HTML frontend generated by django. It's hosted on Divio.\n\n#### Project setup\n1. Copy environment file: `cp .env-local.example .env-local`\n2. Start containers: `docker-compose up --build`\n3. Run migrations: `docker-compose run --rm web python manage.py migrate`\n4. Create superuser: `docker-compose run --rm web python manage.py createsuperuser`\n5. Configure Django CMS apphook (see below)\n\n#### Django CMS Apphook Configuration\nAfter starting the server, you need to configure the Django CMS apphook for the app to work:\n\n1. Go to `http://localhost:8000/admin/` and log in with your superuser account\n2. Navigate to **CMS → Pages**\n3. Click **\"New Page\"** and give it a title (e.g., \"Reading Notes\")\n4. Save the page, then click on **\"Advanced settings\"**\n5. In the **APPLICATION** dropdown, select **\"Clipping Manager Application\"**\n6. Set **APPLICATION INSTANCE NAME** to `clipping_manager`\n7. Save and **Publish** the page\n8. The app is now accessible at the page URL (e.g., `/en/reading-notes/`)\n\n#### Other commands\n- manage.py commands can be executed as follows: `docker-compose run --rm web python manage.py migrate`\n- Optionally configure the `EMAIL_URL` environment variable when you want to send mails\n\n\n## Roadmap\n- Integrate with more services than just Kindle\n- Restful API for retrieving ones notes\n- Export in various formats \n- Slack Bot\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmammuth%2Fkindle-clippings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmammuth%2Fkindle-clippings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmammuth%2Fkindle-clippings/lists"}