{"id":34057697,"url":"https://github.com/asuntx/habitpy","last_synced_at":"2026-03-11T12:13:54.486Z","repository":{"id":295905267,"uuid":"991648820","full_name":"asuntx/habitpy","owner":"asuntx","description":"a complete CLI habit tracker written in python","archived":false,"fork":false,"pushed_at":"2025-08-09T15:14:31.000Z","size":244,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T09:30:08.027Z","etag":null,"topics":["habit-tracker","habits","track"],"latest_commit_sha":null,"homepage":"","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/asuntx.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-05-28T00:29:49.000Z","updated_at":"2025-08-09T15:14:34.000Z","dependencies_parsed_at":"2025-05-28T01:34:03.535Z","dependency_job_id":"a911d50e-5746-4cd9-a47e-1f6d6ade017d","html_url":"https://github.com/asuntx/habitpy","commit_stats":null,"previous_names":["asunt70/habits-py","asunt70/habitpy","asuntx/habitpy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/asuntx/habitpy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asuntx%2Fhabitpy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asuntx%2Fhabitpy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asuntx%2Fhabitpy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asuntx%2Fhabitpy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asuntx","download_url":"https://codeload.github.com/asuntx/habitpy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asuntx%2Fhabitpy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30380935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"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":["habit-tracker","habits","track"],"created_at":"2025-12-14T03:49:04.980Z","updated_at":"2026-03-11T12:13:54.479Z","avatar_url":"https://github.com/asuntx.png","language":"Python","funding_links":["https://ko-fi.com/W7W318WNN8"],"categories":[],"sub_categories":[],"readme":"# HabitPy\n\n**Track your habits, analyze your progress, and stay motivated—all from your terminal!**\n\n## Features\n\n- 📅 **Daily \u0026 Weekly Tracking:** Log your habits (only numbers)\n- ✏️ **Custom Habits:** Add, show, or delete any habit you want to track.\n- 📈 **Visualize Progress:** Instantly generate beautiful graphs (with dark mode!) for your week, month, or year.\n- 🎉 **Motivational Cheers:** Get random motivational messages to keep you going.\n- 📤 **Export Data:** Export all your habit data to CSV for use in Excel, Sheets, or anywhere else.\n- 🛠️ **Easy Reset:** Reset your data and start fresh anytime.\n\n---\n\n## Installation\n\n### 🔧 Prerequisites\n\nBefore building or running HabitPy, create a virtual environment and install dependencies:\n\n```bash\n# Clone the repo\ngit clone https://github.com/asuntx/habitpy.git\ncd habitpy\n\n# Create and activate virtual environment\npython -m venv .venv\nsource .venv/bin/activate  # On Windows: .venv\\Scripts\\activate\n\n# Install dependencies\npip install .\n```\n\n---\n\n### 🚀 Option 1: Build and Install from Source (Recommended)\n\nnote: \\* is the version and name it might change so just copy the name of the whl file\n\n```bash\n# Build the distribution\npython -m build\n\n# Install the built package globally\npip install dist/habitpy-*.whl\n```\n\n---\n\n### ⚡ Option 2: Use pipx (Recommended for CLI tools)\n\n```bash\n# Build the distribution\npython -m build\n\n# Install with pipx (ensures global availability)\npipx install dist/habitpy-*.whl\n```\n\n---\n\n### 🧪 Option 3: Development Installation\n\n#### With pip (editable mode)\n\n```bash\n# Already inside .venv\npip install -e .\n```\n\n#### With uv\n\n```bash\nuv sync\nuv run habitpy setup\n```\n\n#### With pipx (editable mode)\n\n```bash\npipx install -e .\n```\n\n---\n\n## 🕹️ Usage\n\nFirst, set up your tracker:\n\n```bash\nhabitpy setup\n```\n\nThen, use the commands:\n\n- `habitpy track \u003chabit_name[optional]\u003e` — Log today’s habits\n- `habitpy create \u003chabit_name\u003e` — Add a new habit\n- `habitpy show` — List all habits\n- `habitpy delete \u003chabit_name\u003e` — Remove a habit\n- `habitpy graph week|month|year` — Visualize progress\n- `habitpy export` — Export data to CSV\n- `habitpy reset` — Delete all data and start over\n\n---\n\n[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/W7W318WNN8)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasuntx%2Fhabitpy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasuntx%2Fhabitpy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasuntx%2Fhabitpy/lists"}