I am wondering if there is a simple and intuitive way to do something like:
Select * From CSV File Where
I searched the web, but I couldn't find any SQL-type syntax that queries a CSV file. In R, I can do this:
require(sqldf)
df <- read.csv.sql("C:\\your_path_here\\CSV1.csv", "select * from file where Name='Ryan'")
df
I am wondering if there is something similar in Python.