Python Forum
Reading specific rows (lookup)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reading specific rows (lookup)
#2
Quote:In my csv, example rows:

2018, 01, 2017-12-31, 2018-01-06, filename_201801W01.csv.gz
2018, 02, 2018-01-07, 2018-01-13, filename_201801W02.csv.gz

At present, I manually enter:

date_ranges = [('2017-12-03', '2017-12-09')]
filename = 'filename_201801W01.csv.gz'


However, I would prefer to have to enter something like:

Year: '2018'
Week: '01'

and have the dates and filename pulled from the csv

Im not sure if its just me or anybody else. I dont understand what your asking. Your question is too wage; hard to understand what your asking. Let me ask you a few questions.

Am i right in thinking that your CSV file looks as follow?

Output:
2018, 01, 2017-12-31, 2018-01-06, filename_201801W01.csv.gz 2018, 02, 2018-01-07, 2018-01-13, filename_201801W02.csv.gz
You want the data range and the file name retrieved when just entered the year and the week? For instance

Input
year: 2018
week: 01

Output:
date_range: 2017-12-31, 2018-01-06 filename: filename_201801W01.csv.gz
Correct?
Reply


Messages In This Thread
Reading specific rows (lookup) - by rumbles - Jan-03-2018, 12:01 PM
RE: Reading specific rows (lookup) - by hshivaraj - Jan-03-2018, 01:28 PM
RE: Reading specific rows (lookup) - by rumbles - Jan-03-2018, 03:25 PM
RE: Reading specific rows (lookup) - by hshivaraj - Jan-03-2018, 04:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Reading Specific Rows In a CSV File finndude 3 1,032 Dec-13-2022, 03:19 PM
Last Post: finndude
  reading content between a specific xml tag saisankalpj 1 883 Oct-31-2022, 01:37 PM
Last Post: wavic
  Pymysql delete specific rows in tableview stsxbel 2 1,118 Aug-18-2022, 09:50 AM
Last Post: ibreeden
  Trying to delete rows above a specific datetime value cubangt 19 11,865 May-09-2022, 08:57 PM
Last Post: deanhystad
  2-dataframe, datetime lookup problem Mark17 0 1,260 Jan-27-2022, 01:02 AM
Last Post: Mark17
  The code I have written removes the desired number of rows, but wrong rows Jdesi1983 0 1,653 Dec-08-2021, 04:42 AM
Last Post: Jdesi1983
  Python VLookup? Lookup Table? Nu2Python 3 2,480 Oct-25-2021, 08:47 PM
Last Post: Nu2Python
  Pandas DataFrame combine rows by column value, where Date Rows are NULL rhat398 0 2,151 May-04-2021, 10:51 PM
Last Post: rhat398
  Can I replace IF statements with a key lookup ? jehoshua 3 2,572 Mar-05-2021, 10:24 PM
Last Post: jehoshua
  Indexing [::-1] to Reverse ALL 2D Array Rows, ALL 3D, 4D Array Columns & Rows Python Jeremy7 8 7,271 Mar-02-2021, 01:54 AM
Last Post: Jeremy7

Forum Jump:

User Panel Messages

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