{"id":41934158,"url":"https://github.com/9b/fellow-aiden","last_synced_at":"2026-01-25T18:06:26.929Z","repository":{"id":273273474,"uuid":"919173910","full_name":"9b/fellow-aiden","owner":"9b","description":"Interact with the Fellow Aiden coffee brewer","archived":false,"fork":false,"pushed_at":"2025-07-27T22:29:57.000Z","size":487,"stargazers_count":41,"open_issues_count":6,"forks_count":11,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-11-30T13:17:32.066Z","etag":null,"topics":["aiden","coffee","fellow"],"latest_commit_sha":null,"homepage":"https://fellow-brew-studio.streamlit.app/","language":"Python","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/9b.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":"2025-01-19T22:00:41.000Z","updated_at":"2025-10-21T12:08:49.000Z","dependencies_parsed_at":"2025-01-19T23:19:34.330Z","dependency_job_id":"0adb702f-4476-41c8-bde9-fc083bea1b11","html_url":"https://github.com/9b/fellow-aiden","commit_stats":null,"previous_names":["9b/fellow-aiden"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/9b/fellow-aiden","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9b%2Ffellow-aiden","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9b%2Ffellow-aiden/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9b%2Ffellow-aiden/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9b%2Ffellow-aiden/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/9b","download_url":"https://codeload.github.com/9b/fellow-aiden/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/9b%2Ffellow-aiden/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28756432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"last_error":"SSL_read: 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":["aiden","coffee","fellow"],"created_at":"2026-01-25T18:06:26.332Z","updated_at":"2026-01-25T18:06:26.924Z","avatar_url":"https://github.com/9b.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fellow Aiden\n\n[![PyPI version](https://badge.fury.io/py/fellow-aiden.svg)](https://badge.fury.io/py/fellow-aiden)\n\nThis library provides an interface to the Fellow Aiden coffee brewer. An additional brew studio UI with support for AI-generated recipes is also included. You can run the Brew Studio locally on your system or make use of the hosted version: [https://fellow-brew-studio.streamlit.app/](https://fellow-brew-studio.streamlit.app/)\n\n![Fellow Brew Studio](https://github.com/9b/fellow-aiden/blob/master/brew_studio/fellow-brew-studio.png?raw=true)\n\n## Quick Start\n\n**Install the library**:\n\n```sh\npip install fellow-aiden\n# or\npython setup.py install\n```\n\n**Set ENV variables**:\n\n```sh\nexport FELLOW_EMAIL='YOUR-EMAIL-HERE'\nexport FELLOW_PASSWORD='YOUR-PASSWORD-HERE'\n```\n\n## Sample Code\n\nThis sample code shows some of the range of functionality within the library:\n\n```python\nimport os\nfrom fellow_aiden import FellowAiden\n\n# EMAIL = \"YOUR-EMAIL-HERE\"\n# PASSWORD = \"YOUR-PASSWORD-HERE\"\n\nEMAIL = os.environ['FELLOW_EMAIL']\nPASSWORD = os.environ['FELLOW_PASSWORD']\n\n# Create an instance\naiden = FellowAiden(EMAIL, PASSWORD)\n\n# Get display name of brewer\nname = aiden.get_display_name()\n\n# Get profiles\nprofiles = aiden.get_profiles()\n\n# Add a profile\nprofile = {\n    \"profileType\": 0,\n    \"title\": \"Debug-FellowAiden\",\n    \"ratio\": 16,\n    \"bloomEnabled\": True,\n    \"bloomRatio\": 2,\n    \"bloomDuration\": 30,\n    \"bloomTemperature\": 96,\n    \"ssPulsesEnabled\": True,\n    \"ssPulsesNumber\": 3,\n    \"ssPulsesInterval\": 23,\n    \"ssPulseTemperatures\": [96,97,98],\n    \"batchPulsesEnabled\": True,\n    \"batchPulsesNumber\": 2,\n    \"batchPulsesInterval\": 30,\n    \"batchPulseTemperatures\": [96,97]\n}\naiden.create_profile(profile)\n\n# Find profile\npid = None\noption = aiden.get_profile_by_title('FellowAiden', fuzzy=True)\nif option:\n    pid = option['id'] # p0\n\n# Share a profile\nshare_link = aiden.generate_share_link(pid)\n\n# Delete a profile\naiden.delete_profile_by_id(pid)\n\n# Add profile from shared brew link\naiden.create_profile_from_link('https://brew.link/p/ws98')\n\n# Add a schedule\nschedule = {\n    \"days\": [True, True, False, True, False, True, False], // sunday - saturday\n    \"secondFromStartOfTheDay\": 28800, // time since 12 am\n    \"enabled\": True,\n    \"amountOfWater\": 950, // 150 - 1500\n    \"profileId\": \"p7\", // must be valid profile\n}\naiden.create_schedule(schedule)\n\n# Delete a schedule\naiden.delete_schedule_by_id('s0')\n\n```\n\n## Features\n\n* Access all settings and details from Aiden brewer\n* Manage custom brewing profiles\n* Add shared profiles from URL\n* Generate share links from custom profiles\n* Search profiles using title (match and fuzzy)\n* Manage custom brewing schedules\n* Brew Studio UI with support for AI, Brew Links and Profile adjustments\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F9b%2Ffellow-aiden","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F9b%2Ffellow-aiden","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F9b%2Ffellow-aiden/lists"}