Learn python and the basics of most of the production level architecture using python as backend. Functions like database READ, WRITE, DELETE operations, deployment in cloud platforms like gcloud and heroku for better automation of your work.
- Async Functions
- Formating Date and Time
- Creating Telegram Bots
- Webscraping and parsing of json/ csv files
- Live NSE Data
- Scrapping NSE holidays, Stocks, FNO Option chain from NSE
- Checking Stocknames via tradingview and Chartink
- Scrapping details from NiftyTrader
- Scrapping option chain from Trendlyne
press Alt
+ D
then type cmd
https://www.programiz.com/python-programming/online-compiler/
%d
: Returns the date, from01 to 31
%m
: Returns the month, from01 to 12
%#m
: Returns the month, from1 to 12
without starting 0 in Windows Only%-m
: Returns the month, from1 to 12
without starting 0 in mac/Unix/Linux%Y
: Returns the year in four-digit format like,2021
%y
: Reurns year in two-digit format like,19, 20, 21
%A
: Returns the weekday. Like,Monday, Tuesday
%a
: Returns the weekday (First three character.). Like,Mon, Tue
%B
: Returns the full name of the month like,June, March
%b
: Returns the short name of the month like,Mar, Jun
%H
: Returns the hour in 24-hours format01 to 23
%I
: Returns the hour in 12-hours format01 to 12
%M
: Returns the minute, from00 to 59
%S
: Returns the second, from00 to 59
%f
: Return the microseconds from000000 to 999999
%p
: Return time inAM/PM
format%c
: Returns a locale’s appropriatedate and time
representation%x
: Returns a locale’s appropriatedate
representation%X
: Returns a locale’s appropriatetime
representation%z
: Return theUTC offset
in the form ±HHMM[SS[.ffffff]]%Z
: Return theTime zone name
in the text form (Asia/Kolkotta)%w
: Returns weekday as a decimal number,where 0 is Sunday and 6 is Saturday
test_dict = {}
test_dict={'name1':'akku','name2':'basi','name3':'pheeby','name4':'achumon'}
for key in test_dict:
print("Key is ",key)
print("Value is ",test_dict[key])
print("________________")
test_array = []
test_array=['akku','basi','pheeby']
for name in test_array:
print("Name is ",name)
print("________________")
first_key=next(iter(test_dict))
test_dict = {'key1' : 'value 1', 'key2' : 'value 2', 'key3' : 'value 3'}
first_key = next(iter(test_dict))
first_value=test_dict[first_key]
print("First key is: ",first_key)
print("First Value is: ",first_value)
def combine_dict(dict1,dict2):
dict={}
for key in dict1:
#If there is no key inside combined_cepe
#Add the data
if dict.get(key) is None:
dict[key]=dict1[key]
else:
print("Already there is key in dict 1")
for key in dict2:
#If there is no key inside combined_cepe
#Add the data
if dict.get(key) is None:
dict[key]=dict2[key]
else:
print("Already there is key in dict 2")
#Return the combined dict
return dict
from datetime import datetime
curr_date=datetime.today()