This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Kafka | |
Video Link: [Apache Kafka Crash Course | What is Kafka?](https://youtu.be/ZJJHm_bd9Zo) | |
## Prerequisite | |
- Knowledge | |
- Node.JS Intermediate level | |
- Experience with designing distributed systems | |
- Tools | |
- Node.js: [Download Node.JS](https://nodejs.org/en) | |
- Docker: [Download Docker](https://www.docker.com) | |
- VsCode: [Download VSCode](https://code.visualstudio.com) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Usage: | |
$ import mf | |
$ mf.get_price('INF200K01VK1') # pass ISIN of the mutual fund | |
> 1126.55 | |
""" | |
import os | |
import requests | |
import tempfile |