Skip to content

this library has a nine function to import the data from csv files , organize the data that you import ... etc.

Notifications You must be signed in to change notification settings

ita27rmp100/PyCSV

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyCSV Library

A simple library for handling CSV files. It currently has ten functions. Look at the table below to understand the purpose of each one.

Documentation :

Orgnize the data of the file and display it as dictionary, the key represent the first cells of column, and the value part represent an array of the other elements of that column
Function name : Its purpose :
data(fc) Import data of csv file as an array, each element is string that holds the data of a row
dataMatrix(fc) Import data of csv file with the form of matrix, each element is an array that holds the data of a row
data_vr(fc)
number_of(fc,mode) Counts the number of columns, rows and cells in a CSV file
csv_files_in(folder) Return an array with the names of csv files in that folder
create_and_write(fc,data) Create csv file and write in
read(fc) Read the content of csv file and return the result as string not as an array like data()
keyword(fc,word) Receive a keyword and then search for the row it belongs to
index_cell(fc,cellContent) Return the coordinates of that cell in csv file
clear(fc) Ddelete the data of csv file (data not the file itself)
CSVtoXLSX(fc) Create a .xlsx copy of csv file

About

this library has a nine function to import the data from csv files , organize the data that you import ... etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages