From 5fe506325499286e2e77b151cab200ea1bc47f08 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sat, 8 Mar 2025 10:04:37 +0000 Subject: [PATCH] save to visual studio code allows jupiter notebook --- etl/main.py | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/etl/main.py b/etl/main.py index a72dc4c..ed71873 100644 --- a/etl/main.py +++ b/etl/main.py @@ -12,7 +12,6 @@ DATA_LOC = "/workspaces/survey-extraction/data/" INTERESTING_FILE_LOC = "/workspaces/survey-extraction/data/first last/Submission 03.03.25/customer/10 Sandbeck Lane DN21 3LZ/PRE SITE NOTES.pdf" logger = Logger(name="main.py", level=logging.DEBUG).get_logger() -print("hello world") def main(): @@ -35,30 +34,6 @@ def main(): # surverys_completed = south_coast_scraper.get_number_of_surverys_completed() # logger.info(pformat(surverys_completed)) - print("hello world") - print("1") - a = 1 - import sys - - print(sys.executable) - print("Current working directory:", os.getcwd()) - raise RuntimeError("hello world") - - import pandas as pd - - # Sample data as a dictionary - data = { - 'Name': ['Alice', 'Bob', 'Charlie'], - 'Age': [25, 30, 35], - 'City': ['New York', 'Los Angeles', 'Chicago'] - } - - # Create DataFrame - df = pd.DataFrame(data) - - print(df) - df.to_clipboard() - def print_hello(): print("hello man")