{"id":42508457,"url":"https://github.com/gpenessot/modern-data-bitcoin","last_synced_at":"2026-01-28T13:51:36.031Z","repository":{"id":273767963,"uuid":"919184366","full_name":"gpenessot/modern-data-bitcoin","owner":"gpenessot","description":"📈 Modern Bitcoin Dashboard combining real-time data analysis with modern Python stack: Shiny, DuckDB, Polars. Feature-rich technical analysis, interactive visualizations, and performant architecture for cryptocurrency monitoring.  🛠️ Tech stack: Python, Shiny, DuckDB, Polars, Plotly","archived":false,"fork":false,"pushed_at":"2025-02-20T08:27:30.000Z","size":1586,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-20T09:32:16.512Z","etag":null,"topics":["duckdb","plotly-python","polars","shiny"],"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/gpenessot.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}},"created_at":"2025-01-19T22:45:00.000Z","updated_at":"2025-02-20T08:27:34.000Z","dependencies_parsed_at":"2025-01-22T21:37:02.326Z","dependency_job_id":null,"html_url":"https://github.com/gpenessot/modern-data-bitcoin","commit_stats":null,"previous_names":["gpenessot/modern-data-bitcoin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gpenessot/modern-data-bitcoin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpenessot%2Fmodern-data-bitcoin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpenessot%2Fmodern-data-bitcoin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpenessot%2Fmodern-data-bitcoin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpenessot%2Fmodern-data-bitcoin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gpenessot","download_url":"https://codeload.github.com/gpenessot/modern-data-bitcoin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gpenessot%2Fmodern-data-bitcoin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T13:02:32.985Z","status":"ssl_error","status_checked_at":"2026-01-28T13:02:04.945Z","response_time":57,"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":["duckdb","plotly-python","polars","shiny"],"created_at":"2026-01-28T13:51:35.936Z","updated_at":"2026-01-28T13:51:36.009Z","avatar_url":"https://github.com/gpenessot.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitcoin Real-time Analysis Dashboard\n\nUn dashboard interactif en Python pour analyser le Bitcoin en temps réel utilisant des technologies modernes : Polars, DuckDB et Shiny.\n\n## 🚀 Fonctionnalités\n\n- **Suivi en temps réel** du prix, volume et variation du Bitcoin\n- **Indicateurs techniques** :\n  - Moyennes mobiles (SMA 20, 50, 200)\n  - Bandes de Bollinger\n  - RSI (Relative Strength Index)\n  - MACD (Moving Average Convergence Divergence)\n- **Graphiques interactifs** avec Plotly\n- **Interface utilisateur moderne** avec Shiny\n- **Stockage performant** avec DuckDB\n- **Traitement des données optimisé** avec Polars\n\n## 🛠️ Technologies\n\n- **Backend** : Python, AsyncIO\n- **Interface** : Shiny for Python\n- **Base de données** : DuckDB\n- **Traitement des données** : Polars\n- **Visualisation** : Plotly\n- **API** : Coinbase\n\n## 📦 Installation\n\n1. Cloner le repository\n```bash\ngit clone https://github.com/votre-username/modern-data-bitcoin.git\ncd modern-data-bitcoin\n```\n\n2. Créer un environnement virtuel\n```bash\npython -m venv .venv\nsource .venv/bin/activate  # Linux/Mac\n# ou\n.venv\\Scripts\\activate     # Windows\n```\n\n3. Installer les dépendances via le pyproject.toml avec le gestionnaire de paquets [uv]\n```bash\npip install uv\nuv sync\n```\n\n4. Créer un fichier .env à la racine du projet\n```env\nHOST=localhost\nPORT=8026\nFETCH_INTERVAL=60\nLOG_LEVEL=INFO\n```\n\n## 🚀 Démarrage\n\n1. Initialiser la base de données\n```bash\npython -m src.init_db\n```\n\n2. Lancer l'application\n```bash\npython -m src\n```\n\nL'application sera accessible à l'adresse : http://localhost:8026\n\n## 📊 Architecture du Projet\n\n```\nmodern-data-bitcoin/\n├── src/\n│   ├── analysis/          # Calculs des indicateurs techniques\n│   ├── dashboard/         # Interface utilisateur Shiny\n│   │   ├── components/    # Composants réutilisables\n│   │   └── styles/       # Fichiers CSS\n│   ├── data/             # Collecte et traitement des données\n│   └── database/         # Gestion de la base de données\n├── data/                 # Données stockées (DuckDB)\n└── tests/               # Tests unitaires et d'intégration\n```\n\n## 🔄 Flux de données\n\n1. Collecte des données via l'API Coinbase\n2. Stockage dans DuckDB\n3. Traitement avec Polars\n4. Calcul des indicateurs techniques\n5. Affichage dans l'interface Shiny\n\n## 📝 Licence\n\nMIT\n\n## 🤝 Contribution\n\nLes contributions sont les bienvenues ! N'hésitez pas à ouvrir une issue ou une pull request.\n\n## ✍️ Auteur\n\nCréé avec ❤️ par [Gaël Penessot](https://www.linkedin.com/in/gael-penessot), auteur de [Business Intelligence with Python](https://amzn.to/42jjs1o)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgpenessot%2Fmodern-data-bitcoin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgpenessot%2Fmodern-data-bitcoin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgpenessot%2Fmodern-data-bitcoin/lists"}