Home >Backend Development >Python Tutorial >Build a real-time crypto analytics dashboard with Beavers and Perspective

Build a real-time crypto analytics dashboard with Beavers and Perspective

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2024-07-25 19:50:031223browse

Build a real-time crypto analytics dashboard with Beavers and Perspective

This post shows how you can leverage two powerful python libraries, Beavers and Perspective, to analyse data in realtime and display it in a dashboard.

Architecture Overview

We will connect to Coinbase's websocket API to receive crypto market updates in real time.

In order to share this data with other services and decouple producers from consumer, we'll publish this data over Kafka, as json.

We'll then write a Beavers that will read the data from Kafka, enrich it, and publish it in a perspective dashboard.

Initial Set Up

You'll need:

  • Git
  • Python (at least 3.10)
  • Docker to run a Kafka cluster
  • Kafka CLI tools

The code for this tutorial is available on github

Clone the repo

git clone https://github.com/0x26res/beavers-examples
cd beavers-example/coinbase_analytics/

Set up the virtual environment

python3 -m venv --clear .venv
source ./.venv/bin/activate
pip install -r requirements.txt

Set up Kafka

We use the kafka-kraft docker image to run a super simple kafka cluster.

The above is the detailed content of Build a real-time crypto analytics dashboard with Beavers and Perspective. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Azure Pipelines: uv CacheNext article:Azure Pipelines: uv Cache