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 pytest | |
| import json | |
| from fastapi.testclient import TestClient | |
| import sys | |
| from app import app | |
| import time |
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
| const BEARER_TOKEN = `` | |
| const PROJECT_ID = 288; | |
| const getData = async (api) => { | |
| return new Promise((resolve, reject) => { | |
| const headers = new Headers(); | |
| headers.append("Authorization", `Bearer ${BEARER_TOKEN}`); | |
| const requestOptions = { | |
| method: "GET", |
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 pandas as pd | |
| import os | |
| import matplotlib.pyplot as plt | |
| from datetime import datetime, date | |
| from os.path import join | |
| from os import listdir | |
| def createdf() -> pd.DataFrame: | |
| firstdf = None | |
| for f in listdir("./data"): |
OlderNewer