Create your Own KiteConnect Dashboard with the help of Flask Framework.
Flask is a micro web framework written in python to achieve this type of framework you can proceed with the the help of this code and can achiveve just need to follow the exact steps in videos.
After above videos if you missed something this is the way it should be processed which you can follow from the image
For Logging the web page and getting access token look like this
import json
from flask import Flask, request
from kiteconnect import KiteConnect
# Base settings
PORT = 5010
HOST = "127.0.0.1"
# Kite Connect App settings. Go to https://developers.kite.trade/apps/
# to create an app if you don't have one.
kite_api_key = "your_api_key"
kite_api_secret = "your_access_token"
# Create a redirect url
redirect_url = "http://{host}:{port}/login".format(host=HOST, port=PORT)
# Login url
login_url = "https://api.kite.trade/connect/login?api_key={api_key}".format(
api_key=kite_api_key)
# Kite connect console url
console_url = "https://developers.kite.trade/apps/{api_key}".format(
api_key=kite_api_key)
# App
app = Flask(__name__)
index_template = """
Make sure your app with api_key - {api_key} has set redirect to {redirect_url}.