Skip to content

Instantly share code, notes, and snippets.

@Sanjdcool
Sanjdcool / Apache Kafka Crash Course
Last active March 2, 2025 13:37 — forked from piyushgarg-dev/README.md
Kafka Crash Course
# 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)
@Sanjdcool
Sanjdcool / mf.py
Created April 11, 2024 15:33 — forked from bpsagar/mf.py
A simple script to get the price of a stock in NSE market and price of mutual funds (India)
"""
Usage:
$ import mf
$ mf.get_price('INF200K01VK1') # pass ISIN of the mutual fund
> 1126.55
"""
import os
import requests
import tempfile