G2 and Todos. Trying to better organized my API stuff.

This commit is contained in:
Norm Rasmussen
2024-06-24 17:00:18 -04:00
parent 83e4c43d7f
commit 39e8b6607c
3 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,17 @@
import requests
import pandas as pd
import time
def main():
print("Welcome! Let's get started....")
time.sleep(.5)
file = input(
"Let's start with the file. Can you please tell me where the file is located? Please use full file path \n")
print("Awesome! Analyzing...")
dt = pd.read_csv(file)
print(f"Sweet, so here are the columns for the data I found. {dt.columns.tolist()}")
print("What would you like me to do?")
if __name__ == "__main__":
main()