-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackages.py
More file actions
37 lines (35 loc) · 936 Bytes
/
Packages.py
File metadata and controls
37 lines (35 loc) · 936 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import openai
import autopep8
import re
import os
import pickle
import google.auth
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google.oauth2 import service_account
from google_auth_oauthlib.flow import InstalledAppFlow
from googleapiclient.discovery import build
from googleapiclient.http import MediaFileUpload
import json
import textwrap
import time
from datetime import datetime
import sys
import base64
import cv2
import argparse
import io
import tempfile
from googleapiclient.http import MediaIoBaseUpload
from googleapiclient.http import MediaIoBaseDownload
from googleapiclient.discovery import build
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
import traceback
import pandas as pd
import ast
from io import StringIO
import seaborn as sns
import matplotlib.pyplot as plt
# OPEN AI API KEY
openai.api_key = os.getenv('OPENAI_API_KEY')