https://github.com/aditya-xq/flask-socketio-demo
A demo of using events to perform client-server communication to display real time data on a web page. Bitcoin prices are fetched using Coinbase API and displayed in real time.
https://github.com/aditya-xq/flask-socketio-demo
flask flask-soc python web web-socke
Last synced: about 1 year ago
JSON representation
A demo of using events to perform client-server communication to display real time data on a web page. Bitcoin prices are fetched using Coinbase API and displayed in real time.
- Host: GitHub
- URL: https://github.com/aditya-xq/flask-socketio-demo
- Owner: aditya-xq
- License: mit
- Created: 2021-12-17T18:26:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-11T22:04:24.000Z (about 2 years ago)
- Last Synced: 2025-05-07T18:09:16.928Z (about 1 year ago)
- Topics: flask, flask-soc, python, web, web-socke
- Language: HTML
- Homepage:
- Size: 9.77 KB
- Stars: 21
- Watchers: 1
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flask-socketio-demo
A simple demo to demonstrate using events to perform client-server communication and display data on a web page. Bitcoin prices are fetched using Coinbase API and displayed in real time.

To run the program, type ```python app.py``` in your console while you are in the project directory.
Visit `localhost` in your browser to access the flask app.
Read the dev blog and explanation [here](https://medium.com/the-research-nest/how-to-log-data-in-real-time-on-a-web-page-using-flask-socketio-in-python-fb55f9dad100)