Python Forum
Python code to read second line from CSV files and create a master CSV file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python code to read second line from CSV files and create a master CSV file
#1
I have a folder lets say as 'input_Folder' which has a list of CSV files with data. I'm trying to write a python code which reads this list of CSV files from the input_folder and creates a master CSV file with two columns.

The columns in the master CSV files are 'Scenario' and 'Status'

Column Name requirement are as follows,
Scenario = Name of the file from the directory and
Status = if the file has a value in the second row of second column then populate as 'Pass' else 'Fail'
Below is my code. After executing the code i'm able to see Master CSV created but with empty lines. I'm quite new to python so could somebody help me out here please

import os
import csv

path = (Input file path)

with open(SUMMARY.csv", 'w') as csvfile:
writer = csv.writer(csvfile)
writer.writerow(['SCENARIO', 'STATUS'])
for files in os.walk(path):
for filename in files:
with open(input_file.csv") as csv_file: #checking if the code is working for
#one sample file
all_rows = list(csv_file)
line_count = 0
for row in all_rows[1:2]:
if line_count == 1:
if row[1].value == none:
writer.writerow([os.path.basename(filename).split(".")
[0],'PASS'])
else:
writer.writerow([os.path.basename(filename).split(".")
[0],'FAIL'])
line_count += 1
Larz60+ write Feb-13-2022, 08:33 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.

2nd Notice. Please use BBcode tags.
Reply
#2
One way

#! /usr/bin/env python3
import csv
import os
from tabulate import tabulate

with open('summary.csv', 'w') as file:
    writer = csv.writer(file)
    writer.writerow(['SCENARIO', 'STATUS'])

files = os.listdir('input_folder')
for file in files:
    with open(f'input_folder/{file}', 'r') as csv_file:
        read_file = csv.reader(csv_file)

        for line in read_file:
            with open('summary.csv', 'a') as summary:
                if line[1] == ' ':
                    status = 'FAIL'
                else:
                    status = 'PASS'

                writer = csv.writer(summary)
                writer.writerow([f'input_folder/{file}', status])

with open('summary.csv', 'r') as file:
    read_file = csv.reader(file)
    print(tabulate(read_file, headers='firstrow'))
Output:
SCENARIO STATUS ----------------------- -------- input_folder/file_1.csv PASS input_folder/file_1.csv PASS input_folder/file_1.csv PASS input_folder/file_2.csv PASS input_folder/file_2.csv FAIL input_folder/file_2.csv PASS
BashBedlam and Pedroski55 like this post
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Correct/proper way to create save files snakes 0 419 Mar-11-2025, 06:58 PM
Last Post: snakes
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 967 Dec-19-2024, 11:57 AM
Last Post: snippsat
  I cannot create a virtual environment on visual studio code using python Willem_Aucamp316 2 2,696 Nov-27-2024, 02:20 PM
Last Post: menator01
  Read TXT file in Pandas and save to Parquet zinho 2 1,192 Sep-15-2024, 06:14 PM
Last Post: zinho
  Pycharm can't read file Genericgamemaker 5 1,506 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Python is unable to read file Genericgamemaker 13 3,433 Jul-19-2024, 06:42 PM
Last Post: snippsat
  Printing the code line number arbiel 6 1,548 Jun-30-2024, 08:01 AM
Last Post: arbiel
  I dont understand on how to create a Bot that can read info on the screen aloud RaySuS777 0 618 Jun-19-2024, 10:02 AM
Last Post: RaySuS777
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,116 May-03-2024, 07:23 AM
Last Post: Pedroski55
  How does this code create a class? Pedroski55 6 1,930 Apr-21-2024, 06:15 AM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020