{"id":29645791,"url":"https://github.com/gorodroz/crypto-tracker","last_synced_at":"2026-05-07T17:32:13.965Z","repository":{"id":305142420,"uuid":"1020827098","full_name":"gorodroz/crypto-tracker","owner":"gorodroz","description":"Realtime Bitcoin price tracker using Binance WebSocket and REST API. Logs prices to CSV and supports Pandas for data analysis.","archived":false,"fork":false,"pushed_at":"2025-07-18T14:18:45.000Z","size":64,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-18T15:34:41.436Z","etag":null,"topics":["binance","bitcoin","crypto","csv-logger","data-analysis","pandas","python","rest-api","websocket"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gorodroz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-07-16T13:02:58.000Z","updated_at":"2025-07-18T14:18:48.000Z","dependencies_parsed_at":"2025-07-18T15:39:21.726Z","dependency_job_id":null,"html_url":"https://github.com/gorodroz/crypto-tracker","commit_stats":null,"previous_names":["gorodroz/crypto-tracker"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/gorodroz/crypto-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gorodroz%2Fcrypto-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gorodroz%2Fcrypto-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gorodroz%2Fcrypto-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gorodroz%2Fcrypto-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gorodroz","download_url":"https://codeload.github.com/gorodroz/crypto-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gorodroz%2Fcrypto-tracker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266411475,"owners_count":23924334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["binance","bitcoin","crypto","csv-logger","data-analysis","pandas","python","rest-api","websocket"],"created_at":"2025-07-22T02:01:33.595Z","updated_at":"2026-05-07T17:32:08.944Z","avatar_url":"https://github.com/gorodroz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crypto Tracker 🪙📈\n\n[![Python](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n[![GUI](https://img.shields.io/badge/built%20with-PyQt5-orange)](https://riverbankcomputing.com/software/pyqt/intro)\n[![Binance API](https://img.shields.io/badge/API-Binance-yellow.svg)](https://binance-docs.github.io/apidocs/spot/en/)\n\n**Crypto Tracker** is a lightweight Python desktop app that displays real-time cryptocurrency prices and historical price charts using the Binance API.  \nBuilt with **PyQt5** and **matplotlib**, it supports live updates, interactive symbol/timeframe selection, and clear visual tracking of trends.\n\n---\n\n## 🚀 Features\n\n✅ Select from popular crypto pairs (BTC/USDT, ETH/USDT, etc.)  \n✅ Choose timeframes (`1m`, `5m`, `15m`, `1h`, `4h`, `1d`)  \n✅ Auto-update every 5 seconds  \n✅ Real-time price display  \n✅ Dynamic matplotlib chart  \n✅ Clean, responsive UI built with PyQt5  \n✅ Easy to run and extend\n\n---\n\n## 📦 Requirements\n\n- `PyQt5`\n- `matplotlib`\n- `requests`\n\nInstall all dependencies with:\n\n```bash\npip install -r requirements.txt\n\n▶️ Usage\n\npython main.py\n\nYou can also use the Makefile for convenience:\n\nmake install\nmake run\n\n📷 Screenshots\n\n(Add screenshots of the app here if you have them, e.g. with BTC chart and GUI visible)\n🛠️ Roadmap\n✅ Completed\n\nBasic GUI with PyQt5\n\nPlot BTC/USDT historical data with matplotlib\n\nSymbol selector (BTC, ETH, BNB, etc.)\n\nTimeframe selector (1m, 5m, 1h, etc.)\n\nAuto-update every 5 seconds\n\nProject restructured and modularized\n\n    Initial Makefile with common dev tasks\n\n🧭 In Progress / Planned\n\nConvert to async (with aiohttp + qasync)\n\nCandlestick charts (via mplfinance or plotly)\n\nAdd price alerts / notifications\n\nSave historical data to CSV or SQLite\n\nTheme switcher (dark/light mode)\n\nShow last update time\n\nInternationalization (English/Ukrainian)\n\nUnit tests and CI integration\n\n    Build .exe for Windows via PyInstaller\n\n📂 Project Structure\n\ncrypto-tracker/\n├── main.py            # Main PyQt5 application window\n├── logic.py           # Functions for fetching Binance data\n├── requirements.txt   # Python dependencies\n├── Makefile           # Developer utilities\n├── .gitignore\n└── README.md\n\n👤 Author\n\nCreated by @gorodroz\n📄 License\n\nMIT License. See LICENSE for more info.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgorodroz%2Fcrypto-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgorodroz%2Fcrypto-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgorodroz%2Fcrypto-tracker/lists"}