active questions tagged csv - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T21:37:51Zhttp://stackoverflow.com/feeds/tag/csvhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1686177/leading-zero-is-dropped-when-converting-a-csv-file-to-data-table-using-oledb0Leading Zero is dropped when converting a csv file to data table using oledbUtkarsh2009-11-06T08:23:55Z2009-12-17T16:47:46Z
<p>I have a csv file from which I have to populate different tables in database
I am using Microsoft.Jet.OleDb.4.0 to convert csv file to data table from where I proceed forward</p>
<p>the problem is when I do this a value such as "0261" is stored as 261, the leading zero is dropped, is there a way to prevent it???</p>
<p>Thanks in advance...</p>
http://stackoverflow.com/questions/1913265/how-to-import-multiline-csv-files0How to import multiline csv files?oo2009-12-16T08:55:59Z2009-12-16T14:36:02Z
<p>I got a file in this format.</p>
<pre><code>"abc";"def";"ghi
asdasd
asdasd
asd
asd
aas
d
"
</code></pre>
<p>Now i want to import it with Java. Does anyone know a library that support this kind of import?</p>
http://stackoverflow.com/questions/1344091/mdb-2-csv-batch0MDB 2 CSV batch.darhipo2009-08-27T22:27:30Z2009-12-16T14:25:37Z
<p>Does anybody know what I could use to write a script to convert all MDB files in a directory to CSV files?
I'm working on Windows but have been using Cygwin for some work.</p>
http://stackoverflow.com/questions/280894/automatically-convert-access-db1automatically convert access dbJoshxtothe42008-11-11T13:41:01Z2009-12-16T14:24:03Z
<p>Hello,</p>
<p>I have an access database, with a query made. I need to automate it so that each night this query can run and export to a tab delimited csv file. It is not possible to export a query to a csv file from within access. My question is, are there any tools that can select certain tables, or perform an sql query on an mdb file, and export to a csv file?</p>
http://stackoverflow.com/questions/1914311/pilcrow-appears-in-all-the-column-values-after-importing-from-csv-file-mysql0Pilcrow appears in all the column values after importing from CSV file - MYsqlSri Kumar2009-12-16T12:16:07Z2009-12-16T12:21:44Z
<p>Hello All,</p>
<p>my CSV content looks like this</p>
<pre><code>1234,123;123;123
5675,123;567;234;565
</code></pre>
<p>No Space is provided at the end of each row in CSV i.e. 1234,123;123;123(No space here)</p>
<p>Imported this using the following command</p>
<pre><code>mysql> load data local infile 'E:\sample.csv' into table Test.Table1 fields
terminated by ',' lines terminated by '\n' (Column1,Colunm2);
</code></pre>
<p>It gets executed successfully and i can find all the records in the DB. But the second column ends with a pilcrow. </p>
<p>When i try to edit, the value looks like</p>
<pre><code>123;123;123
<extra line here>
</code></pre>
<p>If i remove the extra line, the pilcrow disappears.</p>
<p>Type of the column1, column2 is varchar.</p>
<p>Any clues for the issue?</p>
http://stackoverflow.com/questions/222755/open-the-csv-file-format-into-excel-from-internet-explorer-60Open" the csv file format into Excel from internet explorer 6Nick Long2008-10-21T17:41:25Z2009-12-16T01:07:44Z
<p>I am using Java Struts, sending it to user using the following codes</p>
<pre><code>response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment;filename=" + fileFullName);
</code></pre>
<p>Firstly I hope that this is the correct place for my question... :) I hope
that you can help me.</p>
<p>The error message I get when I try to open a file from Internet Explorer is</p>
<pre><code>"C:\Documents and Settings\USERNAME\Local Settings\Temporary Internet
Files\Content.IE5\QXJ0P436\btbillsdfjlsfjk.csv' could not be found"
</code></pre>
<p>I am trying to "Open" the csv file format into Excel. It allows me to
"Save" the file to which ever directory I want but I don't want to do that,
I would just like to open the file. This has always worked in the past so
I'm now wondering why the file is 'missing'.</p>
<p>Any ideas?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1910610/csv-utf-8-writer-compability-with-python2-43csv utf-8 writer - compability with python2.4Oduvan2009-12-15T21:41:42Z2009-12-15T22:04:30Z
<p>At the bottom of this manual <a href="http://docs.python.org/library/csv.html" rel="nofollow">http://docs.python.org/library/csv.html</a> we have example of UnicodeWriter</p>
<p>But how can i use this example in python 2.4</p>
<p>I got exception about codecs.getincrementalencoder(encoding)().
Property getincrementalencoder created only in version 2.5. Who can replace this property? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1907096/convert-from-a-2d-array-to-nestedset-in-ruby-on-rails0convert from a 2d array to nested_set in Ruby on railsNitin Garg2009-12-15T12:26:01Z2009-12-15T14:38:13Z
<p>I have a tree structure in a .csv file (nodes are of type text), and after reading the csv i want to store the data in a ruby object. I went through a few tree plugins and i think nested_set would serve the purpose for me.
However, i am facing problem with fixing a format of csv file, so that i can read it and convert into tree object. Is there any direct way of converting a csv file or 2 dimensional array, into a tree data structure??</p>
http://stackoverflow.com/questions/1906626/excel-changes-date-formats1Excel changes date formatsBrian2009-12-15T10:51:28Z2009-12-15T14:13:02Z
<p>I run a process to produce a rather large CSV file of data. Sometimes I find it helpful to open the CSV in excel, make changes manually, and then re-save. However, if there are dates in the CSV, excel automatically reformats them. Is there a way to prevent excel from doing this? It would be helpful if I could turn off all text formatting altogether.</p>
http://stackoverflow.com/questions/1907437/please-help-my-program-is-not-accepting-mysql-floats-1Please help, my program is not accepting MySQL floatsfesam2009-12-15T13:24:18Z2009-12-15T13:49:44Z
<p>I have to use a java program . I need to understand it and then modify it. The program has a source folder. It has a lot of java files. the program has a GUI interface. i have imported the program in eclipse and i can run the program. i want to learn and understand the code but since its too big i want to only read the relevant portions of the code which i need to understand to modify / add features to the program. This program requires input data . this data can be in a CSV file or a MySql database. the immediate problem i am facing with the program is that i need to use float data as input data in one of the columns. when i put data in decimal form in the CSV file . the program has no problem in accepting it and processing it. but when i create a MYSQL database table with floating datatype as one of the column . the program while importing data gives error - "unknown data type float . add this entry is xxx.props file " even after i add the float entry in xxx.props file in the proper way just as other entries are there for other data types in xxx.props file, i still get the same error . what should i do next ? which part of the code should i study to find out the problem?</p>
http://stackoverflow.com/questions/1800675/write-csv-to-file-without-enclosures-in-php1Write CSV To File Without Enclosures In PHPDerek Reynolds2009-11-25T23:31:55Z2009-12-15T03:07:18Z
<p>Is there a native function or solid class/library for writing an array as a line in a CSV file without enclosures? <code>fputcsv</code> will default to <code>"</code> if nothing is passed in for the enclosure param. Google is failing me (returning results for a whole bunch of pages about <code>fputcsv</code>), and PEAR's libraries do more or less the same things as <code>fputcsv</code>.</p>
<p>Something that works exactly like <code>fputcsv</code>, but will allow the fields to remain unquoted.</p>
<p>currently: <code>"field 1","field 2",field3hasNoSpaces</code></p>
<p>desired: <code>field 1,field 2,field3hasNoSpaces</code></p>
http://stackoverflow.com/questions/1903606/what-character-set-is-this1What character set is this?cdmckay2009-12-14T21:24:12Z2009-12-14T22:48:37Z
<p>I received a bunch of CSV files from a client (that appear to be a database dump), and many of the columns have weird characters like this:</p>
<ul>
<li>Alain Lefèvre</li>
<li>Angèle Dubeau & La Pietà</li>
</ul>
<p>That's seems like an awful lot of characters to represent an é. Does anyone know what encoding would produce that many characters for é? I have no idea where they're getting these CSV files from, but assuming I can't get them in a better format, how would I convert them to something like UTF-8?</p>
http://stackoverflow.com/questions/1641519/reading-date-and-time-from-csv-file-in-matlab1Reading date and time from CSV file in MATLABAP2009-10-29T03:49:53Z2009-12-14T22:22:00Z
<pre><code>datetime, M01, M02, M03, M04, M05, M06
8/15/2009 0:00, 5.8, 7.8, 7.8, 7.3, 0, 7.9
8/15/2009 0:10, 7.1, 8.1, 8.1, 7.7, 0, 8.1
8/15/2009 0:20, 6.8, 7.4, 7.6, 7.1, 0, 7.3
8/15/2009 0:30, 5.6, 6.8, 7.1, 6.6, 0, 6.8
8/15/2009 0:40, 3.9, 6.2, 6.4, 6.2, 0, 6.4
8/15/2009 0:50, 4.6, 5.5, 6.1, 5.8, 0, 5.6
8/15/2009 1:40, 7, 7, 7.2, 6.9, 0, 6.3
</code></pre>
<p>Can you help me to read this CSV file properly so I can convert the first column into a string using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/datenum.html" rel="nofollow">datenum</a>?
<a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/csvread.html" rel="nofollow">csvread</a> of course does not work. With <a href="http://www.mathworks.de/access/helpdesk/help/techdoc/ref/textscan.html" rel="nofollow">textscan</a> I am lost how to call it , so I do not get errors.
The date and time are in the same column.</p>
<p>Sorry it might sound a dumb question!!!</p>
<p>I know how to read read the above file now. but how do i write it back in a file.txt in the exact same format??
i mean i modified some columns and now need a similar file with same format for column 1 and row 1.
Thanks for the help</p>
http://stackoverflow.com/questions/1897230/read-a-csv-data-file-and-reutrn-one-specific-studentid-marks-for-all-thier-module0Read a csv data file and reutrn one specific StudentID marks for all thier modules in JavaIzzy2009-12-13T18:17:03Z2009-12-14T16:20:57Z
<p>Hi, at the moment I have this:</p>
<pre><code>import java.util.*;
import java.io.*;
import java.io.BufferedReader;
import java.io.FileReader;
public class StudentID {
public static void main(String[] args)throws Exception{
System.out.println ("Please enter StudentID: ");
BufferedReader reader = new BufferedReader (new FileReader("CW2_data.csv"));
File file = new File("CW2_data.csv");
try {
BufferedReader r = new BufferedReader(
new InputStreamReader(
new FileInputStream("CW2_data.csv")));
String line;
while((line = r.readLine()) != null)
System.out.println(line);
r.close();
} catch(IOException e) {
System.out.println(" There was an Error Reading the file. " + e.getMessage());
}
}
}
</code></pre>
<p>I am trying to get the program to prompt the user for its StudentID, then search through the data file for that StudentId and return their marks for all the modules. Unfortunatly all my codes does is list the whole file back to me.</p>
<p>I tried to add <code>StudetnID=Userinput.readstring;</code> right after so that user was given an opertunity to type in the username but then I realise that wouldn't work unless I tell it scan the whole document for it. I was reading up on maps (as recomendeded by user on here) but I still haven't got to grips with it and I don't know if it would it even work here. The data file is in form of 3 columns and about 282 rows of data, ie</p>
<pre><code>UserID: Module: Mark
ab006, GYH095, 56
</code></pre>
<p>Any help would appreciated.</p>
http://stackoverflow.com/questions/1882469/how-do-i-transfer-data-in-csv-file-into-my-sqlite-database-in-django0How do I transfer data in .csv file into my sqlite database in django?Zeynel2009-12-10T17:10:35Z2009-12-14T16:13:54Z
<p>This is my models.py</p>
<pre><code>from django.db import models
class School(models.Model):
school = models.CharField(max_length=300)
def __unicode__(self):
return self.school
class Lawyer(models.Model):
firm_url = models.URLField('Bio', max_length=200)
firm_name = models.CharField('Firm', max_length=100)
first = models.CharField('First Name', max_length=50)
last = models.CharField('Last Name', max_length=50)
year_graduated = models.IntegerField('Year graduated')
school = models.CharField(max_length=300)
school = models.ForeignKey(School)
class Meta:
ordering = ('?',)
def __unicode__(self):
return self.first
</code></pre>
<p>And 2 sample rows from the csv file:</p>
<pre><code>"http://www.graychase.com/aabbas,Gray & Chase LLP, Amr A ,Abbas,The George Washington University Law School, 2005"
"http://www.graychase.com/kadam,Gray & Chase LLP, Karin ,Adam,Ernst Moritz Arndt University Greifswald, 2004"
</code></pre>
<p>Thank you.</p>
<p><B> EDIT </B></p>
<p>Can you give a bit more detailed info about this script? Some questions:</p>
<p>My app is in</p>
<pre><code>C:.../Documents/PROJECTS/Django/sw2/wkw2.
</code></pre>
<p>This path is already in PYTHONPATH do I still need this line? If so, do I enter it like this?</p>
<pre><code>sys.path.append('C:\\sw2')
</code></pre>
<p>what does <code>os.environ</code> do? I tried to read the documentation but I didn't understand.</p>
<pre><code>os.environ['DJANGO_SETTINGS_MODULE'] = 'sw2.settings'
from django.core.management import setup_environ
from sw2 import settings
from sw2.wkw2.models import *
import csv
dataReader = csv.reader(open('csvtest1.csv'), delimiter=',', quotechar='"')
for row in dataReader:
lawyer=Lawyer()
lawyer.firm_url=row[0]
lawyer.firm_name=row[1]
lawyer.first=row[2]
lawyer.last=row[3]
lawyer.school=row[4]
lawyer.year_graduated=row[5]
lawyer.save()
</code></pre>
<p>Thanks!</p>
<p><b> Edit in response to celopes' answer:</b></p>
<p>celopes:</p>
<p>I saw your answer a little late. I've been trying to update the database in the shell with </p>
<pre><code>>>> p1 = Lawyer(school = "The George Washington University Law School", last = "Babbas", firm_url = "http://www.graychase.com/babbas", year_graduated = 2005, firm_name= "Gray & Chase", first= "Amr A")
</code></pre>
<p>but I kept getting the integer error. Finally, I realized that school needed to be the <code>school_id</code>, that is, in the form,</p>
<pre><code>>>> p1 = Lawyer(school_id = 1, last = "Babbas", firm_url = "http://www.graychase.com/babbas", year_graduated = 2005, firm_name= "Gray & Chase", first= "Amr A")
</code></pre>
<p>From this I realized that, I needed to know the school id of each school to update the Lawyer table. Since that was not possible, I decided to remove the <code>ForeignKey</code> because I didn't know how to fix this. (I am new to both Python and Django.)</p>
<p>And this morning I saw your answer. Now I changed my model in the dev server and I have only 1 table: Lawyer. I think this is what I will be using. My apologies again for not seeing your answer earlier.</p>
<p><b>Edit 12/14/09:</b></p>
<p>celopes:</p>
<p>Thanks again for this script. It solved my problem. It's good that I don't need to convert the csv to json or another format before saving to the db. I have made a few changes. First as mentioned before, I changed the model to just Lawyer. Also, you fixed the duplicate school by using "name." But I have <code>list_display</code>, <code>list_filter</code> and <code>search_fields</code> in <code>admin.py</code> and changing fields names caused too many errors. </p>
<pre><code>class LawyerAdmin(admin.ModelAdmin):
fieldsets = [
('Name', {'fields': ['last', 'first', 'firm_name', 'firm_url', 'school', 'year_graduated']}),
#('School', {'fields': ['school', 'year_graduated']}),
]
list_display = ('last', 'first', 'firm_name', 'firm_url', 'school', 'year_graduated')
list_filter = ['school', 'year_graduated']
search_fields = ['last', 'school', 'firm_name']
#search_fields = ['school__school']
#search_fields = ['school__lawyer__last']
</code></pre>
<p>With the new <code>models.py</code> the simplified script worked well. This is what I am using:</p>
<pre><code>csv_filepathname="C:/Users/A/Documents/Projects/Django/sw2/wkw2/fixtures/data1.csv"
your_djangoproject_home="C:/Users/A/Documents/PROJECTS/Django/"
import sys,os
sys.path.append(your_djangoproject_home)
os.environ['DJANGO_SETTINGS_MODULE'] ='sw2.settings'
from sw2.wkw2.models import Lawyer
import csv
dataReader = csv.reader(open(csv_filepathname), delimiter=',', quotechar='"')
for row in dataReader:
lawyer=Lawyer()
lawyer.firm_url=row[0]
lawyer.firm_name=row[1]
lawyer.first=row[2]
lawyer.last=row[3]
lawyer.school=row[4]
lawyer.year_graduated=row[5]
lawyer.save()
</code></pre>
<p>Also I removed the quotes around each row. I noticed that if I put the the year in quotes, I got the integer error, without quotes works fine. How did you make it work with quotes? </p>
<p>Thanks again, this has been very helpful. Now I have to make it work in the production server.</p>
http://stackoverflow.com/questions/263899/using-an-array-in-the-filehelpers-mapping-class0Using an array in the FileHelpers mapping classdaharon2008-11-04T23:40:06Z2009-12-14T09:00:02Z
<p>I have been searching for a way to allow one element of my FileHelpers mappling class to be an array of specific length.</p>
<p>For instance, I have a class like this:</p>
<pre><code>[DelimitedRecord(",")]
public class Example
{
public string code;
public int month;
public int day;
public double h1;
public double h2;
public double h3;
public double h4;
}
</code></pre>
<p>The values h1-h4 would really make more sense as an array simply called 'h'. It would make processing the file a little easier as well.
I also know that the file I am reading will always have these, and only these, fields in it.</p>
<p>Has anyone figured out a way to include arrays in your FileHelper mapping classes?</p>
http://stackoverflow.com/questions/1898305/python-csv-into-dictionary1python csv into dictionaryJohnWong2009-12-14T00:08:45Z2009-12-14T06:15:22Z
<p>I am pretty new to python. I need to create a class that loads csv data into a dictionary.</p>
<p>I want to be able to control the keys and value
So let say the following code, I can pull out worker1.name or worker1.age anytime i want.</p>
<pre><code>class ageName(object):
'''class to represent a person'''
def __init__(self, name, age):
self.name = name
self.age = age
worker1 = ageName('jon', 40)
worker2 = ageName('lise', 22)
#Now if we print this you see that it`s stored in a dictionary
print worker1.__dict__
print worker2.__dict__
#
'''
{'age': 40, 'name': 'jon'}
#
{'age': 22, 'name': 'lise'}
#
'''
#
#when we call (key)worker1.name we are getting the (value)
print worker1.name
#
'''
#
jon
#
'''
</code></pre>
<p>But I am stuck at loading my csv data into keys and value.</p>
<p>[1] I want to create my own keys
worker1 = ageName([name],[age],[id],[gender])</p>
<p>[2] each [name],[age],[id] and [gender] comes from specific a column in a csv data file</p>
<p>I really do not know how to work on this. I tried many methods but I failed. I need some helps to get started on this.</p>
<p>---- Edit
This is my original code</p>
<pre><code>import csv
# let us first make student an object
class Student():
def __init__(self):
self.fname = []
self.lname = []
self.ID = []
self.sport = []
# let us read this file
for row in list(csv.reader(open("copy-john.csv", "rb")))[1:]:
self.fname.append(row[0])
self.lname.append(row[1])
self.ID.append(row[2])
self.sport.append(row[3])
def Tableformat(self):
print "%-14s|%-10s|%-5s|%-11s" %('First Name','Last Name','ID','Favorite Sport')
print "-" * 45
for (i, fname) in enumerate(self.fname):
print "%-14s|%-10s|%-5s|%3s" %(fname,self.lname[i],self.ID[i],self.sport[i])
def Table(self):
print self.lname
class Database(Student):
def __init__(self):
g = 0
choice = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
data = student.sport
k = len(student.fname)
print k
freq = {}
for i in data:
freq[i] = freq.get(i, 0) + 1
for i in choice:
if i not in freq:
freq[i] = 0
print i, freq[i]
student = Student()
database = Database()
</code></pre>
<p>This is my current code (incomplete)</p>
<pre><code>import csv
class Student(object):
'''class to represent a person'''
def __init__(self, lname, fname, ID, sport):
self.lname = lname
self.fname = fname
self.ID = ID
self.sport = sport
reader = csv.reader(open('copy-john.csv'), delimiter=',', quotechar='"')
student = [Student(row[0], row[1], row[2], row[3]) for row in reader][1::]
print "%-14s|%-10s|%-5s|%-11s" %('First Name','Last Name','ID','Favorite Sport')
print "-" * 45
for i in range(len(student)):
print "%-14s|%-10s|%-5s|%3s" %(student[i].lname,student[i].fname,student[i].ID,student[i].sport)
choice = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport']
lst = []
h = 0
k = len(student)
# 23
for i in range(len(student)):
lst.append(student[i].sport) # merge together
for a in set(lst):
print a, lst.count(a)
for i in set(choice):
if i not in set(lst):
lst.append(i)
lst.count(i) = 0
print lst.count(i)
</code></pre>
http://stackoverflow.com/questions/1884694/how-to-populate-sqlite3-in-django0How to populate sqlite3 in django?Zeynel2009-12-10T22:58:31Z2009-12-13T14:22:06Z
<p>My plan is to collect data from websites in batches (lawyer bios from each firm's website; since they are all different, I will use a modified spider for each site) and convert each batch into a csv file; then to json; and then load it to database. So I will need to append each new file to the existing database. Please let me know how to achieve this task the best way. Thanks.</p>
http://stackoverflow.com/questions/1894099/csv2json-py-error0csv2json.py errorZeynel2009-12-12T17:23:44Z2009-12-13T12:02:05Z
<p>I am trying to run the script <a href="http://www.djangosnippets.org/snippets/1680/" rel="nofollow">csv2json.py</a> in the Command Prompt, but I get this error:</p>
<pre><code>C:\Users\A\Documents\PROJECTS\Django\sw2>csv2json.py csvtest1.csv wkw1.Lawyer
Converting C:\Users\A\Documents\PROJECTS\Django\sw2csvtest1.csv from CSV to JSON as C:\Users\A\Documents\PROJECTS\Django\sw2csvtest1.csv.json
Traceback (most recent call last):
File "C:\Users\A\Documents\PROJECTS\Django\sw2\csv2json.py", line 37, in <module>
f = open(in_file, 'r' )
IOError: [Errno 2] No such file or directory: 'C:\\Users\\A\\Documents\\PROJECTS\\Django\\sw2csvtest1.csv'
</code></pre>
<p>Here are the relevant lines from the snippet: </p>
<pre><code>31 in_file = dirname(__file__) + input_file_name
32 out_file = dirname(__file__) + input_file_name + ".json"
34 print "Converting %s from CSV to JSON as %s" % (in_file, out_file)
36 f = open(in_file, 'r' )
37 fo = open(out_file, 'w')
</code></pre>
<p>It seems that the directory name and file name are combined. How can I make this script run?</p>
<p>Thanks. </p>
<p><b>Edit:</b></p>
<p>Altering lines 31 and 32 as answered by Denis Otkidach worked fine. But I realized that the first column name needs to be pk and each row needs to start with an integer:</p>
<pre><code>for row in reader:
if not header_row:
header_row = row
continue
pk = row[0]
model = model_name
fields = {}
for i in range(len(row)-1):
active_field = row[i+1]
</code></pre>
<p>So my csv row now looks like this (including the header row):</p>
<pre><code>pk, firm_url, firm_name, first, last, school, year_graduated
1, http://www.graychase.com/aabbas, Gray & Chase, Amr A, Babas, The George Washington University Law School, 2005
</code></pre>
<p>Is this a requirement of the django fixture or json format? If so, I need to find a way to add the pk numbers to each row. Can I delete this pk column? Any suggestions?</p>
<p><b>Edit 2</b></p>
<p>I keep getting this ValidationError: "This value must be an integer". There is only one integer field and that's the pk. Is there a way to find out from the traceback what the line numbers refer to?</p>
<pre><code>Problem installing fixture 'C:\Users\A\Documents\Projects\Django\sw2\wkw2\fixtures\csvtest1.csv.json': Traceback (most recent call last):
File "C:\Python26\Lib\site-packages\django\core\management\commands\loaddata.py", line 150, in handle
for obj in objects:
File "C:\Python26\lib\site-packages\django\core\serializers\json.py", line 41, in Deserializer
for obj in PythonDeserializer(simplejson.load(stream)):
File "C:\Python26\lib\site-packages\django\core\serializers\python.py", line 95, in Deserializer
data[field.attname] = field.rel.to._meta.get_field(field.rel.field_name).to_python(field_value)
File "C:\Python26\lib\site-packages\django\db\models\fields\__init__.py", line 356, in to_python
_("This value must be an integer."))
ValidationError: This value must be an integer.
</code></pre>
http://stackoverflow.com/questions/1894886/parsing-a-comma-delimited-stdstring0Parsing a comma-delimited std::stringPiku2009-12-12T22:21:56Z2009-12-13T04:49:50Z
<p>If I have a std::string containing a comma-separated list of numbers, what's the simplest way to parse out the numbers and put them in an integer array?</p>
<p>I don't want to generalise this out into parsing anything else. Just a simple string of comma separated integer numbers such as "1,1,1,1,2,1,1,1,0".</p>
http://stackoverflow.com/questions/1894628/django-loaddata-validationerror0Django loaddata ValidationErrorZeynel2009-12-12T20:38:23Z2009-12-13T03:29:47Z
<p>This <a href="http://stackoverflow.com/questions/1884827/django-loaddata-error">thread</a> got too confusing (for me) so I am asking the question again. I could not make the csv2json.py script mentioned in the original question work. I am just trying to find a way to import data to sqlite3 database.</p>
<p>Here's the model I am working with:</p>
<pre><code>from django.db import models
class School(models.Model):
school = models.CharField(max_length=300)
def __unicode__(self):
return self.school
class Lawyer(models.Model):
firm_url = models.URLField('Bio', max_length=200)
firm_name = models.CharField('Firm', max_length=100)
first = models.CharField('First Name', max_length=50)
last = models.CharField('Last Name', max_length=50)
year_graduated = models.IntegerField('Year graduated')
school = models.CharField(max_length=300)
school = models.ForeignKey(School)
class Meta:
ordering = ('?',)
def __unicode__(self):
return self.first
</code></pre>
<p>(I'll fix the duplicate "school" later.)</p>
<p>I have this data1.csv file:</p>
<pre><code>pk,firm_url,firm_name,first,last,school,year_graduated
1,http://www.graychase.com/babbas, Gray & Chase, Amr A, Babbas, The George Washington University Law School, 2005
</code></pre>
<p>I have to put in "pk" and 1 manually as required by the script.</p>
<p>Then, I run the script and I get the data1.csv.json file:</p>
<pre><code>[
{
"pk": 1,
"model": "wkw2.Lawyer",
"fields": {
"school": "The George Washington University Law School",
"last": "Babbas",
"firm_url": "http://www.graychase.com/babbas",
"year_graduated": "2005",
"firm_name": "Gray & Chase",
"first": "Amr A"
}
}
]
</code></pre>
<p>I put this file in the fixtures folder in the app directory and run <code>manage.py loaddata data1.csv.json</code></p>
<p>and I get the error</p>
<pre><code>Installing json fixture 'data1.csv' from 'C:\~\Django\sw2\wkw2\fixtures'.
Problem installing fixture 'C:\~\Django\sw2\wkw2\fixtures\data1.csv.json': Traceback (most recent call last):
File "C:\Python26\Lib\site-packages\django\core\management\commands\loaddata.py", line 150, in handle for obj in objects:
File "C:\Python26\lib\site-packages\django\core\serializers\json.py", line 41, in Deserializer for obj in PythonDeserializer(simplejson.load(stream)):
File "C:\Python26\lib\site-packages\django\core\serializers\python.py", line 95, in Deserializer data[field.attname] = field.rel.to._meta.get_fie(field.rel.field_name).to_python(field_value)
File "C:\Python26\lib\site-packages\django\db\models\fields\__init__.py", line 356, in to_python_("This value must be an integer."))
ValidationError: This value must be an integer.
</code></pre>
<p>When I comment out the two lines in the script with pk in them I get this error message:</p>
<pre><code>Installing json fixture 'data1.csv' from 'C:\~\Django\sw2\wkw2\fixtures'.
Problem installing fixture 'C:\Users\A\Documents\Projects\Django\sw2\wkw2\fixtures\data1.csv.json': Traceback (most recent call last):
File "C:\Python26\Lib\site-packages\django\core\management\commands\loaddata.py", line 150, in handle for obj in objects:
File "C:\Python26\lib\site-packages\django\core\serializers\json.py", line 41, in Deserializer for obj in PythonDeserializer(simplejson.load(stream)):
File "C:\Python26\lib\site-packages\django\core\serializers\python.py", line 77, in Deserializer data = {Model._meta.pk.attname : Model._meta.pk.to_pytho(["pk"])}
KeyError: 'pk'
</code></pre>
<p>What am I doing wrong?</p>
<p><b>Edit:</b></p>
<p>I took out the quotes around the year to make it an integer but I still got the same ValidationError:</p>
<pre><code>...
"year_graduated": 2005,
...
</code></pre>
http://stackoverflow.com/questions/156994/whats-the-easiest-way-to-import-a-new-table-into-mysql-v5-from-csv1What's the easiest way to import a new table into MySQL v5 from CSV?nkav2008-10-01T10:22:47Z2009-12-12T16:05:27Z
<p>I'm running MySQL 5 on a linux server on my local network. Running windows XP for my desktop. Had a look at the <a href="http://dev.mysql.com/downloads/gui-tools/5.0.html" rel="nofollow">MySQL GUI Tools</a> but I dont think they help. I cannot install apache on the remote server & use something like PHPmyAdmin.</p>
http://stackoverflow.com/questions/1884484/groovy-csv-parser-and-export-to-database0Groovy csv parser and export to databasefabien-barbier2009-12-10T22:18:51Z2009-12-11T23:45:23Z
<p>How can I parse my CSV file without parsing first line ?</p>
<p>This class work but I don't want to parse the header of my CSV.</p>
<pre><code>import groovy.sql.Sql
class CSVParserService {
boolean transactional = false
def sql = Sql.newInstance("jdbc:mysql://localhost/RProject", "xxx", "xxx", "com.mysql.jdbc.Driver")
def CSVList = sql.dataSet("ModuleSet")
def CSVParser(String filepath, boolean header) {
def parse = new File(filepath)
// split and populate GeneInfo
parse.splitEachLine(',') {fields ->
CSVList.add(
Module : fields[0],
Function : fields[1],
Systematic_Name : fields[2],
Common_Name : fields[3],
)
return CSVList
}
}
}
</code></pre>
http://stackoverflow.com/questions/1306164/remove-value-from-comma-separated-values-string0remove value from comma separated values stringRaúl Roa2009-08-20T13:24:39Z2009-12-11T08:01:10Z
<p>I have a csv string like this "1,2,3" and want to be able to remove a desired value from it.</p>
<p>For example if I want to remove the value: 2, the output string should be the following:</p>
<p>"1,3"</p>
<p>I'm using the following code but seems to be ineffective.</p>
<pre><code>var values = selectedvalues.split(",");
if (values.length > 0) {
for (var i = 0; i < values.length; i++) {
if (values[i] == value) {
index = i;
break;
}
}
if (index != -1) {
selectedvalues = selectedvalues.substring(0, index + 1) + selectedvalues.substring(index + 3);
}
}
else {
selectedvalues = "";
}
</code></pre>
http://stackoverflow.com/questions/1885324/is-it-possible-to-keep-the-column-order-using-the-python-csv-dictreader1Is it possible to keep the column order using the Python csv DictReaderAlex2009-12-11T01:41:10Z2009-12-11T03:38:50Z
<p>For example, my csv has columns as below:</p>
<blockquote>
<p>ID, ID2, Date, Job No, Code</p>
</blockquote>
<p>I need to write the columns back in the same order. The dict jumbles the order immediately, so I believe it's more of a problem with the reader.</p>
http://stackoverflow.com/questions/1884395/csv-to-json-script0CSV to JSON scriptZeynel2009-12-10T22:02:23Z2009-12-10T22:37:51Z
<p>I took this script from <a href="http://www.johntron.com/creations/csv-to-json/" rel="nofollow">here</a>: </p>
<pre><code>import csv
from itertools import izip
f = open( '/django/sw2/wkw2/csvtest1.csv', 'r' )
reader = csv.reader( f )
keys = ( "firm_url", "firm_name", "first", "last", "school", "year_graduated" )
out = []
for property in reader:
property = iter( property )
data = {}
for key in keys:
data[ key ] = property.next()
out += [ data ]
print out
</code></pre>
<p>When I tried it in IDLE I got the error</p>
<pre><code>Traceback (most recent call last):
File "<pyshell#13>", line 5, in <module>
data [key] = property.next()
StopIteration
</code></pre>
<p>But I tried </p>
<pre><code>print out
</code></pre>
<p>again and then it printed</p>
<pre><code>[{'school': 'The George Washington University Law School', 'last': 'Abbas', 'firm_url': 'http://www.whitecase.com/aabbas', 'year_graduated': ' 2005', 'firm_name': 'White & Case', 'first': ' Amr A '}, {'school': 'Ernst Moritz Arndt University Greifswald', 'last': 'Adam', 'firm_url': 'http://www.whitecase.com/kadam', 'year_graduated': ' 2004', 'firm_name': 'White & Case', 'first': ' Karin '}, {'school': 'Tashkent State Law Institute', 'last': 'Adjivefayev', 'firm_url': 'http://www.whitecase.com/vadjivefayev', 'year_graduated': ' 2002', 'firm_name': 'White & Case', 'first': ' Vilen '}]
</code></pre>
<p>But when I try to run it as a script, it doesn't work, I get the same error message.</p>
<p>Can anyone help fix the error?</p>
<p>(And is it outputting valid json?)</p>
<p>Thanks</p>
<p><b>Edit</b></p>
<p>Thanks for the answers. It seems that this is not the right way of converting a csv file to json format. I am just trying to convert the csv file with data in it so that I can use <code>loaddata</code> to populate my sqlite3 database in django. See this thread in django group: <a href="http://groups.google.com/group/django-users/browse%5Ffrm/thread/a00b529ba2147d91" rel="nofollow">http://groups.google.com/group/django-users/browse%5Ffrm/thread/a00b529ba2147d91</a> for my attempt to use csv2json.py snippet. And another thread today in OS (Sorry I cannot include 2 links). I would appreciate a simple way of converting csv to json. Or the method you use to populate your django database that I should be using instead. Thanks for the help.</p>
http://stackoverflow.com/questions/1865881/silverlight-load-a-csv-file-into-a-datagrid0Silverlight - load a CSV file into a DataGridCalanus2009-12-08T09:49:17Z2009-12-10T14:07:24Z
<p>Hi folks,</p>
<p>I'm having a go at moving one of our simpler apps to Silverlight (a bit of a learning exercise). I've quickly come unstuck as I can't figure out how to load (or bind maybe?) a csv file to a datagrid (i.e. so you can point the app at a local csv file and display it to the user). I do have boilerplate code to parse a csv file and return a datatable but I'm shocked to discover that Silverlight doesn't even support DataTable (wtf!)</p>
<p>Any ideas at all how to do this? How do people bind data to a datagrid anyhow?</p>
<p>I'm using Silverlight 3.0 included in VS2010.</p>
http://stackoverflow.com/questions/1316619/what-data-generators5What data generators?Neil Butterworth2009-08-22T18:09:50Z2009-12-09T20:25:15Z
<p>I'm about to release a FOSS data generator that can generate random yet meaningful data in CSV format. Rather belatedly, I guess, I need to poll the state of the art for such products - because if there is a well known and useful existing tool, I can write my work off to experience. I am aware of of a couple of SQL Server specific tools, but mine is not database specific.</p>
<p>So, links? And if you have used such a product,
what features did you find it was missing?</p>
<p>Edit: To add a bit more info on my tool (Ooh, Matron!) it is intended to allow generation of any kind of random data from existing data files, and
supports weighting. It is XML based (sorry, folks) and lets you say things like:</p>
<pre><code><pick distribute="20,80" >
<datafile file="femalenames.dat"/>
<datafile file="malenames.dat"/>
<pick/>
</code></pre>
<p>to select female names about 20% of the time and male names 80% of the time.</p>
<p><strong>But the purpose of this question is not to describe my product but to get info on other tools.</strong></p>
<p><strong>Latest:</strong> If anyone is interested, they can get the alpha of my data generator at <a href="http://code.google.com/p/csvtest" rel="nofollow">http://code.google.com/p/csvtest</a></p>
http://stackoverflow.com/questions/1875518/importing-csv-files-using-groovy0Importing csv files using groovyLuixv2009-12-09T17:29:48Z2009-12-09T19:37:35Z
<p>Hi!
I have developed a groovy application. Now it has been required
that for feeding the DB a CSV interface must be provided.
That is, I have to load a csv file, parse it and
insert records into the DB in a transactional way.</p>
<p>The question is if there exists for groovy something
like ostermiller utils (a configurable csv parser).</p>
<p>Thanks in advance,</p>
<p>Luis</p>
http://stackoverflow.com/questions/1875305/command-line-csv-viewer1Command line CSV viewer?Benjamin Oakes2009-12-09T17:01:16Z2009-12-09T18:03:59Z
<p>Anyone know of a command-line CSV viewer for Linux/OS X? I'm thinking of something like <code>less</code> but that spaces out the columns in a more readable way. (I'd be fine with opening it with OpenOffice Calc or Excel, but that's way too overpowered for just <em>looking</em> at the data like I need to.) Having horizontal and vertical scrolling would be great.</p>