0
votes
1answer
15 views

Using Argparse without action parameters in python

Currently my program works as follows: argparse.py -i file.csv -o newfile.xml -x where argparse.py is the name of the program and -i represents the input file which is file.csv and -o is what ...
0
votes
2answers
28 views

Python script to glean data from 2 spreadsheets, compare them to find a match, and generate a new spreadsheet

As it says on the tin, I'm writing a Python (2.7) script that looks at two spreadsheets (saved as .csv), comparing certain columns to find the rows containing the same person's information, and ...
1
vote
4answers
104 views

merging many DBF (csv) files into one, appending along column

I've been going over many cvs file merging and haven't had much luck. here my current script. The result are only 1 data file being written or the files being append to rows and not columns . I added ...
1
vote
1answer
18 views

One character change in strings in set in Python

I currently have two CSV files which contain thousands values in column 1 in each csv. These values are alphanumeric uppercase characters. My current python script populates a set for each of the ...
1
vote
2answers
50 views

Python dictreader - How to make CSV column names lowercase?

I have a CSV file with the column names in upper case. I am reading the data using csv.dictreader but need the column names in lowercase. I found this code here Accessing csv header white space and ...
1
vote
1answer
68 views

TypeError: “quotechar” must be an 1-character string

I am trying to read data from a csv file. I set quotechar to csv.QUOTE_NONE. The four lines of Python I wrote for this purpose are just as follows - import csv with ...
0
votes
1answer
51 views

str to float error in csv python

I'm trying to open a csv file that is 10 columns x 100 rows and I first want to swap it to 100 columns x 10 rows, which I believe I used the zip function properly for, and then make 10 arrays with a ...
0
votes
1answer
59 views

Using Python's csv.dictreader to search for specific key to then print its value

BACKGROUND: I normally dont post questions, but i've been having a few issues trying to search through my CSV files. Ive gone through pythons documentation: http://docs.python.org/2/library/csv.html ...
-1
votes
1answer
81 views

Find duplicates of two columns from csv

I want to find duplicate values of one column and replaced with value of another column of csv which has multiple columns. So first I put two columns from the csv to the dictionary. Then I want to ...
0
votes
3answers
70 views

Convert a numpy array to a CSV string and a CSV string back to a numpy array

I have to convert a numpy array of floats to a string (to store in a SQL DB) and then also convert the same string back into a numpy float array. This is how I'm going to a string (based on this ...
0
votes
1answer
68 views

Attach csv file to mail in Django 1.5

How can I attach a csv file I create myself? I can create a csv file with from django.core.mail import EmailMessage email = EmailMessage() email.attach(filename = 'a.csv', mimetype = 'text/csv', ...
4
votes
3answers
107 views

How to Delete Rows CSV in python

I'm trying to compare two csv files (fileA and fileB), and remove any rows from fileA that are not found in fileB. I want to be able to do this without creating a third file. I thought I could do ...
0
votes
1answer
54 views

Deleting a range of csv columns

I am trying to create an importable module to delete a range of columns (specifically columns 73-177 in the file I am working with).I am attempting to edit this file i/o code that is written for ...
-1
votes
2answers
80 views

How adjust width of cell of csv file in python?

I am using this code to write csv file import csv data = [[1,'more width cell',3],[4,5,6],[7,8,9]] item_length = len(data[0]) with open('test.csv', 'wb') as test_file: file_writer = ...
0
votes
2answers
60 views

How to seperate rows of a csv file

Well I'm having a problem in rewriting a CSV file. What I had was a CSV file with 20 columns and i rewrote it to only 5. Now, I need to take out a couple of unnecessary points, where SN < 20. It ...
2
votes
1answer
90 views

Transpose csv structure using python pandas

I have the following csv structure: 'Country' '1960' '1961' '1962' AUS 450 567 723 NZ 125 320 IND 350 375 395 SL ...
1
vote
2answers
168 views

How to find specific rows in csv document in python

What I'm trying to do is read into a csv document and find all values in the SN column > 20 and make a new file with only the rows with SN > 20. I know that I need to do: Read the original File ...
0
votes
1answer
55 views

Python script sorted csv files exported empty [closed]

My current csv file Client.csv: RecNo,AdultNo,NoChild,ClientName,CAT 1,1,5,Fred Flintstone,0 2,10,2,Georia OKeefe,5 3,2,4,Joe BLow,6 4,2,5,Cher,0 Output desired is group by NoChild, then ...
0
votes
1answer
89 views

Replace white space in .csv for specific column, Python

I have a seemingly simple task with a .CSV file. I need to replace all white space with 0's for two specific columns (37, 38). I've tried the following code: import csv with ...
0
votes
1answer
185 views

Convert .CSV file to point feature class using python 2.7

I have a .CSV file with 75 columns and almost 4000 rows. I need to create a shapefile (point) for the entire .CSV file, with each column as a field. All 75 columns need to be brought over to the new ...
0
votes
1answer
25 views

Delete colums from csv results wrong

Trying to delete all columns from a csv file except 'fruit'. script I modified from another post on this site import csv with open("C:\\Test\\source.csv","rb") as source: rdr= ...
1
vote
4answers
339 views

Remove special characters from csv file using python

There seems to something on this topic already (How to replace all those Special Characters with white spaces in python?), but I can't figure this simple task out for the life of me. I have a .CSV ...
2
votes
2answers
116 views

Replace \r\n for \n in CSV Writer

I am currently opening and writing a CSV file like this in python: with open('Data.csv', 'wb') as redata_csv: csv_writer = csv.writer(redata_csv, delimiter=',') however, each new line ends with ...
1
vote
1answer
143 views

Replace value in csv with text and write it to file and center paragraph

Note: Original code changed to reflect suggestions. Keeping the original post mostly intact for newbies, like me, to reference. I have a csv file which can contain from zero up to all 4 of these ...
0
votes
1answer
263 views

Compare values from two csv files, append value to text file

I have three files. I want to compare columns with fruit in them and those that match, I want to append the matching fruit to the Append.txt file and then sort ascending. test1.csv ...
0
votes
3answers
132 views

Parsing out single column from csv into text file using python

I finally got my dbf file to be a csv but now I am confused as to how to parse this out into a text file for further editing. I have been reading up on the csv module but to be honest my head began ...
1
vote
1answer
84 views

Writing & Reading the same csv file in Python

Can we write on (Here it should be editting infact) & read the same csv file at the same time in Python using the csv library? Can a csv file be opened for editing & appending? If so, how?
0
votes
1answer
104 views

SQL query embedded in python script - ERROR

I wanted a script that iterates through csv files in a folder and dump them into a MySQL database. I was able to dump one csv file into it.. But have troubles passing the file name in to the SQL ...
0
votes
1answer
259 views

Dumping CSV files to MySQL database using embedded query in python script

I have a SQL query which opens up a csv file and dumps it in a table of a database. I am trying to dump multiple files at once using a python script to iterate among the files. I tried embedding the ...
0
votes
1answer
146 views

Issue with creating “xlsx” in Python by copying data from csv

I am trying to copy all the data in csv to excel "xlsx" file using python. I am using following code to do this: from openpyxl import load_workbook import csv #Open an xlsx for reading wb = ...
2
votes
2answers
693 views

Python 2.7.1: How to Open, Edit and Close a CSV file

I'm having trouble opening a file (amount2.csv) making a change, saving it and closing the file. How does one open a file edit, save and close it? import csv changes = { '1 dozen' : '12' } ...
3
votes
2answers
103 views

Comparing values between 2 CSV files and writing to a 3rd CSV file

I am trying to compare values of a particular column between 2 csv. I tried the following code for the same. However, I am not getting any output and no error too. Please help me with this with ...
0
votes
3answers
95 views

python csv module strip lines before parsing

I have a plain text file: 2 jordyt 2 dawder 2 LOL12345 2 2251084185 2 123456789 2 123456 1 warcraft 1 tripp88 after parsing it via python's csv module , i have: ...
1
vote
2answers
767 views

Skip the headers when editing a csv file using Python

I am using below referred code to edit a csv using Python. Functions called in the code form upper part of the code. Problem: I want the below referred code to start editing the csv from 2nd row, I ...
0
votes
1answer
79 views

Issue with writing data in csv using Python & Beautiful Soup

Below referred code-1 is giving me only 1 row while code-2 gives me all rows. 1 row which code-1 is giving me is the last element of the recursion(that row being the last in output of code-2). ...
-3
votes
1answer
160 views

Python- Check in the CSV file the Header value and data value is equal

I just have few queries regarding the CSV files. -All the values are equal to Header. For Ex:- abc.csv file contain RollNO,Name,Age 1,Abc,15 2,Def,18 some times what's happening the file is ...
1
vote
2answers
75 views

How to properly make my own module that imports another module within it?

I use a .txt file with this, and each line looks like the following: 1/2/09,902,898.5,905.25,913.25,914.5,914.25,915.5,924.5,926.25,929.25,927.5,926 There are probably 50 such lines in the .txt ...
1
vote
2answers
415 views

beautifulSoup html csv

Good evening, I have used BeautifulSoup to extract some data from a website as follows: from BeautifulSoup import BeautifulSoup from urllib2 import urlopen soup = ...
3
votes
2answers
135 views

How to slice using .writerow() in Python

I'm having problems with the writerow() function. I have an object (orders_matrix) like this: [[datetime.datetime(2008, 11, 20, 16, 0), 'AA', 'Buy', '100'], [datetime.datetime(2008, 11, 28, 16, ...
0
votes
1answer
108 views

Python output mistakes caused by csv, txt, and xls switching date formats (MM/DD/YYYY and M/D/YY)

I wrote a python script that takes a csv which has dates in an M/D/YYYY format, then matches them with dates in an xlwt generated .xls file. I was wondering why only some dates are matched and then I ...
0
votes
2answers
833 views

Writing a Python list of lists to a csv file

I have a long list of lists of the following form --- a = [[1.2,'abc',3],[1.2,'werew',4],........,[1.4,'qew',2]] i.e. the values in the list are of different types -- float,int, strings.How do I ...
0
votes
1answer
46 views

Issue in updating scraped data to the already existing csv using beautiful soup

I want to update scraped data from a webpage to a already existing csv, which I generated when I ran the scraping code for 1st time. I want the new data to get appended below already scraped rows. ...
1
vote
1answer
915 views

reading and parsing a TSV file, then manipulating it for saving as CSV (*efficiently*) [closed]

I'm new to Python, but liking it - especially thanks to SO. My friend sent me an email request for help on a way to transform some of his data. I'm going to try to help, but thought I'd post here as ...
0
votes
1answer
74 views

Issue in scraping data from a html page using beautiful soup

I am scraping some data from a website and I am able to do so using the below referred code: import csv import urllib2 import sys import time from bs4 import BeautifulSoup from itertools import ...
0
votes
1answer
66 views

Issue in outputting data scraped using beautiful soup in two columns of csv using spamwriter.writerow

I am scraping 2 sets of data from a website using beautiful soup and I want them to output in a csv file in 2 columns side by side. I am using spamwriter.writerow([x,y]) argument for this but I think ...
1
vote
1answer
102 views

Issues with outputting the scraped data to a csv file using python and beautiful soup

I am trying to output the scrapped data from a website into a csv file, first I was coming across UnicodeEncoding error but after using this piece of code: if __name__ == "__main__": reload(sys) ...
2
votes
1answer
261 views

Two column CSV data sort - one column str(ascending) the other column date(descending)

I am interested in knowing how to perform a two-column sort of a CSV file where one column is ascending while the other is descending and need to be parse into an understandable date format. import ...
2
votes
2answers
507 views

Pandas read_csv and UTF-16

I have a CSV text file encoded in UTF-16 (so as to preserve Unicode characters when others use Excel) but when doing a read_csv with Pandas 0.9.0, I get this cryptic error: df = ...
0
votes
1answer
43 views

How to get non-csv lines in csv file

I have a csv like: "Equipment","LNKEQP","METAST","METSER","MODSTA","METEOD" "HLL_POS_00098",1,1,0,0,0 "TOY_GAT_00003",0,0,0,3,0 "NAT_POS_00010",0,3,0,3,0 "NAT_GAT_00002",0,0,0,0,0 ...
4
votes
2answers
473 views

How can I use io.StringIO() with the csv module?

I tried to backport a Python 3 program to 2.7, and I'm stuck with a strange problem: >>> import io >>> import csv >>> output = io.StringIO() >>> ...

1 2