Bootstrap responsive login page
A Pen by yangjaewon on CodePen.
| const student = { | |
| name: "Insha", | |
| age: 20 | |
| } | |
| let key = "name" | |
| console.log(student[key]) // prints out Insha |
Bootstrap responsive login page
A Pen by yangjaewon on CodePen.
| import os | |
| import json | |
| import base64 | |
| import sqlite3 | |
| import shutil | |
| from datetime import timezone, datetime, timedelta | |
| #3rd party modules | |
| import win32crypt | |
| from Crypto.Cipher import AES |
| import json | |
| import streamlit as st | |
| from openai import OpenAI | |
| # client = OpenAI( | |
| # # This is the default and can be omitted | |
| # api_key=os.environ["OPENAI_API_KEY"], | |
| # ) |
| import os | |
| import requests | |
| from bs4 import BeautifulSoup | |
| import openai | |
| # OpenAI API key (replace with your actual API key) | |
| openai.api_key = 'API_KEY_HERE' | |
| # URL of the NDTV Health page | |
| url = 'https://www.ndtv.com/health' |