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
# -*- coding: utf-8 -*- | |
""" | |
:description: A Blazingly Fast Custom Class To Fetch Instruments Token, Symbols, Expiries, LTP Etc. from KiteConnect. | |
:license: MIT. | |
:author: Dr June Moone | |
:created: On Monday September 26, 2022 11:17:53 GMT+05:30 | |
""" | |
__author__ = "Dr June Moone" | |
__webpage__ = "https://github.com/MooneDrJune" | |
__license__ = "MIT" |
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
date | open | high | low | close | |
---|---|---|---|---|---|
09-09-2022 09:15 | 40601.15 | 40611.15 | 40601.15 | 40611.15 | |
09-09-2022 09:15 | 40601.15 | 40601.15 | 40591.15 | 40591.15 | |
09-09-2022 09:15 | 40591.15 | 40591.15 | 40581.15 | 40581.15 | |
09-09-2022 09:15 | 40581.15 | 40581.15 | 40571.15 | 40571.15 | |
09-09-2022 09:15 | 40571.15 | 40571.15 | 40561.15 | 40561.15 | |
09-09-2022 09:15 | 40571.15 | 40581.15 | 40571.15 | 40581.15 | |
09-09-2022 09:15 | 40581.15 | 40591.15 | 40581.15 | 40591.15 | |
09-09-2022 09:15 | 40591.15 | 40601.15 | 40591.15 | 40601.15 | |
09-09-2022 09:15 | 40601.15 | 40611.15 | 40601.15 | 40611.15 |
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
#! /usr/bin/env python | |
import os | |
import sys | |
import shutil | |
import sysconfig | |
import winreg | |
from win32com.client import Dispatch | |
def get_reg(name,path): | |
# Read variable from Windows Registry |
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
import uuid, re | |
print(':'.join(re.findall('..', '%012x' % uuid.getnode()))) |
NewerOlder