Is there any online source to import data?

I have uploaded the data to google drive. I have imported using the following code but it doesn’t import the data for all the building ids.
import pandas as pd
import os
folder_path = ‘/content/drive/My Drive/build_instinct_train/’

parquet_files = [f for f in os.listdir(folder_path) if f.endswith(‘.parquet’)]

for file in parquet_files:
file_path = os.path.join(folder_path, file)
df_train = pd.read_parquet(file_path)

print(f'Data from {file}:')
print(df_train.head())

Hi @anupghimire and welcome to the Challenges comunity :wave:

Do not for get to mount your google drive, e.g.

import pandas as pd
import os
from google.colab import drive
drive.mount('/content/drive')
folder_path = '/content/drive/My Drive/build_instinct_train/'

parquet_files = [f for f in os.listdir(folder_path) if f.endswith('.parquet')]

for file in parquet_files:
    file_path = os.path.join(folder_path, file)
    df_train = pd.read_parquet(file_path)

Good luck with the Challenge

ThinkOnward Team