{"id":33064841,"url":"https://github.com/keiaa-75/tasks","last_synced_at":"2026-05-12T12:38:16.848Z","repository":{"id":323610023,"uuid":"1093961367","full_name":"keiaa-75/tasks","owner":"keiaa-75","description":"A simple desktop application to display your Google Tasks.","archived":false,"fork":false,"pushed_at":"2025-11-11T05:43:57.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-11T06:22:13.844Z","etag":null,"topics":["google-tasks","google-tasks-api","python","python3","qt"],"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/keiaa-75.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-11T04:22:06.000Z","updated_at":"2025-11-11T05:44:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/keiaa-75/tasks","commit_stats":null,"previous_names":["keiaa-75/tasks"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/keiaa-75/tasks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keiaa-75%2Ftasks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keiaa-75%2Ftasks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keiaa-75%2Ftasks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keiaa-75%2Ftasks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keiaa-75","download_url":"https://codeload.github.com/keiaa-75/tasks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keiaa-75%2Ftasks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32940098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T09:19:52.626Z","status":"ssl_error","status_checked_at":"2026-05-12T09:17:33.438Z","response_time":102,"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":["google-tasks","google-tasks-api","python","python3","qt"],"created_at":"2025-11-14T07:00:36.493Z","updated_at":"2026-05-12T12:38:16.843Z","avatar_url":"https://github.com/keiaa-75.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tasks\n\n[![Google Tasks API](https://img.shields.io/badge/Made%20with-Tasks%20API-4285F4.svg?style=flat\u0026logo=google\u0026logoColor=white)](https://developers.google.com/tasks)\n[![Python](https://img.shields.io/badge/Made%20with-Python-4285F4.svg?style=flat\u0026logo=python\u0026logoColor=white)](https://www.python.org/)\n[![Qt](https://img.shields.io/badge/Made%20with-Qt-41CD52.svg?style=flat\u0026logo=qt\u0026logoColor=white)](https://www.qt.io/)\n\nA simple, cross-platform, PyQt-based Google Tasks client. Made for learning purposes.\n\n## Setup\n\n### 1. Google Cloud Console Setup\n\n1. Go to the [Google Cloud Console](https://console.cloud.google.com/)\n2. Create a new project or select an existing one\n3. Enable the Google Tasks API:\n   - Go to \"APIs \u0026 Services\" \u003e \"Library\"\n   - Search for \"Tasks API\"\n   - Click on it and press \"Enable\"\n4. Create credentials:\n   - Go to \"APIs \u0026 Services\" \u003e \"Credentials\"\n   - Click \"Create Credentials\" \u003e \"OAuth client ID\"\n   - If prompted, configure the OAuth consent screen first\n   - Choose \"Desktop application\" as the application type\n   - Give it a name (e.g., \"Tasks\")\n   - Download the JSON file\n   - Go to \"Audience\" \u003e \"Test Users\"\n   - Add your preferred Google Account\n5. Place the credentials file:\n   Rename the downloaded file to `credentials.json` and place it in the correct directory for your operating system. You may need to create the tasks folder.\n\n    - **Linux:** `~/.config/tasks/`\n    - **Windows:** `%APPDATA%\\tasks\\`\n    - **macOS:** `~/Library/Application Support/tasks/`\n\n### 2. Installation\n\nYou must have Git and Python installed on your system and available in your PATH.\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/keiaa-75/tasks \u0026\u0026 cd tasks\n   ```\n\n2. **Create and activate a virtual environment:**\n\n   For Linux/macOS:\n\n   ```bash\n   python3-m venv .venv\n   source .venv/bin/activate\n   ```\n\n   For Windows:\n\n   ```pwsh\n   python -m venv .venv\n   .venv\\Scripts\\activate\n   ```\n\n3. **Install the application:**\n\n   ```bash\n   pip install .\n   ```\n\n### 3. Build an Executable (Optional)\n\nYou can also build a single-file executable. This project uses `PyInstaller`.\n\n1. **Install PyInstaller:**\n\n   ```bash\n   pip install pyinstaller\n   ```\n\n2. **Run the build script:**\n\n   ```bash\n   python build.py\n   ```\n\n## Usage\n\nRun the application:\n\n```\ntasks\n```\n\nOn first run, it will open a browser window for Google authentication. Grant the necessary permissions to access your Google Tasks.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeiaa-75%2Ftasks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeiaa-75%2Ftasks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeiaa-75%2Ftasks/lists"}