Skip to main content
Filter by
Sorted by
Tagged with
-5 votes
0 answers
39 views

I am new to programming, and I am trying to start a project on cleaning my CSV file into different formats that I want. How should I go about doing that, and what resources can I use to do it?
CoderJer's user avatar
1 vote
1 answer
50 views

I’m building a Python script using the Gmail API to read model application emails, extract data, and download photo attachments. Everything works except the attachments. the script keeps saying: ...
Tess's user avatar
  • 19
-3 votes
0 answers
31 views

I have a qr code reader in my machine where i get a csv with data for the machine so it knows how to fill it. But i cant figure out how to get al the values in the string in a array of real so i can ...
Zjories's user avatar
0 votes
1 answer
44 views

I'm importing a CSV generated by the chess cli tool Ordo. It has this output format: "#","PLAYER","RATING","ERROR","POINTS","PLAYED","(%...
Kyle Pollard's user avatar
  • 2,362
0 votes
0 answers
67 views

Assume I have the following Excel Sheet: Location Mar2000 London 1234567891011 Tokyo 12345667897 These are the raw values saved in a CSV format e.g. my_data.csv (assume it is CSV not UTF-8 format). ...
Beans On Toast's user avatar
1 vote
1 answer
72 views

I have a task to convert a JSON file to a CSV with a header at the top. The header has to be in a particular order. So the order of the keys in the JSON file will be in different order than the ...
sunpack's user avatar
  • 135
1 vote
1 answer
80 views

I'm working on a project where I want to collect movement data (X/Y/Z position and rotation) from a VR headset (a PICO Neo 3 Pro Eye) using a C#/Unity script, and export it as a CSV. I have a script ...
sam's user avatar
  • 31
1 vote
3 answers
160 views

I'm working on a C# application where I need to read a very large text file and convert its contents into a DataTable. However, I don't always need all the rows—so I want to avoid loading the entire ...
Mohammad's user avatar
1 vote
1 answer
39 views

I'm testing django using file uploads. Was facing a strange issue, when despide which encoding I choose, I'm always getting same error message that pandas is trying to decode with UTF-8 pd.read_csv(...
Aidas's user avatar
  • 170
0 votes
0 answers
61 views

I'm using dbt models to transform a QBO Balance Sheet uploaded as a CSV into Bigquery. Data comes from a fictional company inside QuickBooks test drives from which I export reports in CSV format. Here'...
almr27's user avatar
  • 53
0 votes
0 answers
43 views

i am very new to GAMS and im trying to understand how sets work while importing from CSV and what im doing wrong. I have data as in picture below (prices_wide_example.csv), i would like to import it ...
ZAD's user avatar
  • 13
0 votes
0 answers
31 views

I have a PySpark function that reads a reference CSV file inside a larger ETL pipeline. On my personal Databricks cluster, this works fine. On the group cluster, it return empty dataframe, the same ...
Codie's user avatar
  • 1
1 vote
3 answers
109 views

I am currently trying to write an algorithm that reads in a CSV file, gets a list of names from column 0, a list of hours worked from column 6, then iterate through a list of staff names, if a name is ...
JackInDaBeanSock's user avatar
2 votes
1 answer
111 views

I am trying to write a stored procedure to import CSV data from local system to mySQL tables. I do not want to use import wizard as I want SP to create, import and display time taken to import. ...
Aparna's user avatar
  • 21
0 votes
1 answer
68 views

In the case I have a folder of image list and list name file with csv I want to write a python script to convert list of PNG's to multiple pdf file with name file of pdf from csv file at column D like ...
dede.brahma's user avatar
0 votes
1 answer
117 views

Note: This issue is specific to Microsoft Excel. It works fine on LibreOffice without any problems. I am developing a React application where I need to let the user download some table data upon a ...
Dulara Malindu's user avatar
0 votes
3 answers
158 views

I have a PowerShell script that works up to a certain point that imports two CSV files, CSV #1 and CSV #2, and creates a new array ($content3) with input from both CSV files. I need to populate the ...
CyberUn1c0rn's user avatar
1 vote
0 answers
56 views

I'm appending data to a CSV file from a JSON rest API call. However, I'm finding whenever I write too it, it's adding the headers to the last item in the list. My code is as follows const csv = ...
Alistair Hardy's user avatar
1 vote
1 answer
30 views

I'm trying to create nodes with one set label (:object) and two additional labels that are based on values in the following CSV file: Object_ID Classification Hierarchy_name Object_type O0010 ...
Jaap's user avatar
  • 101
3 votes
1 answer
82 views

According to docs of csv options: Property Name Default Meaning emptyValue (for reading), "" (for writing) Sets the string representation of an empty value. But it doesn't seem to work: with ...
Kashyap's user avatar
  • 17.9k
4 votes
3 answers
130 views

Why is pandas not formatting dates with date_format argument of to_csv? pandas.DataFrame([datetime.datetime.now().date()]).to_csv(date_format="%Y %b") ',0\n0,2025-07-31\n'
Hugo Trentesaux's user avatar
0 votes
1 answer
102 views

I'm using the following PowerShell script to remove self-signed certificates from a server. Based on the outcome, I log the results to a CSV file. However, I'm encountering two issues: Duplicate ...
snehasish nandy's user avatar
1 vote
3 answers
158 views

I'm trying to read in a lot of data as efficiently as possible; the data are in about 1,400 CSV files within 6 individual ZIP files. The CSV files are all similar timeseries data with the same columns,...
Riley's user avatar
  • 13
5 votes
4 answers
182 views

I have the following data in a CSV. "ID","OTHER_FIELDS_2" "87","25 R160 22 13 E" "87","25 R165 22 08 E" "77","" &...
learner's user avatar
  • 53
0 votes
1 answer
87 views

I need to convert below csv file to json cat /tmp/input.csv ID,item,name 1,A,aname 2,A,bname 6,A,zname 8,A,xname expected json { "filters": [ { "ID": “1”, “item”: “A”...
Jack15's user avatar
  • 29

1
2 3 4 5
1809