Python Forum
Recommendations: Querying CSV / Database??
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Recommendations: Querying CSV / Database??
#1
Hi,

I have an application already built in VBA for Access that does data visualization on a user imported CSV files.
Its kind of boggy and slow. The graphing is poor.

I am thinking of rebuilding in Python. The fact that my project demands query-ability almost makes the idea of converting to python silly. I don't know anything about using DBs in Python and feel like its just going to be more work than keeping it in Access/VBA.

All i need to do is be able to query the CSV file and get the data quickly so I can put each column into graphs/etc.

What is the easiest solution for achieving this? How would you approach?


Regards --
Reply
#2
Hi,

If your source data is in csv you could:
a) Quick & dirty : open it in excel, and save as an XML database
b) Better: use one of at least 5 packages to read the csv and turn it into an XML database.
I use ElementTree, but purists will use something like beautifulsoup.
Now you have a databse you can query ("findall", with wildcarding etc..)
c) Graphics: use one of a zillion python packages available.

Dpaul
Reply
#3
I don't see the need for the extra complexity of turning CSV into XML here. Why not just read from the CSV with pandas and use its features for selecting data? Then you can visualise those things with matplotlib, etc.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Recommendations for IMAP Push/IDLE library MikeFlorida 0 836 Jul-15-2023, 05:19 PM
Last Post: MikeFlorida
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 1,385 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  Fastest Method for Querying SQL Server with Python Pandas BuJayBelvin 7 6,899 Aug-02-2020, 06:21 PM
Last Post: jefsummers
  Text Entry and Querying CSV whacky7 4 3,032 Mar-28-2019, 11:19 AM
Last Post: whacky7
  Querying cvs excel files rturus 6 3,490 Mar-27-2019, 02:08 PM
Last Post: ichabod801
  Instant Messenger API recommendations? jspada20 1 1,854 Feb-10-2019, 10:45 PM
Last Post: Larz60+
  Querying a web database SimpleGuy 3 3,686 Aug-18-2017, 08:25 PM
Last Post: SimpleGuy

Forum Jump:

User Panel Messages

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