Hello,
I am very, very new at this, new at programming in general actually. This is probably a very simple question, but I need to start somewhere.
I am trying to use a python script as part of the HEC-DSSVue software package to write and extract from the DSS database. I need to read in a csv file to then write to the database.
The HEC-DSSVue software includes a simple python script editor. If my understanding is correct, I need to import the csv module. I am using:
This yields a ImportError: no module named csv.
Other script imports have been:
I am just guessing that I need to set something up in the CMD file, but I am not sure what it should be. Any help would be very much appreciated.
Thanks.
I am very, very new at this, new at programming in general actually. This is probably a very simple question, but I need to start somewhere.
I am trying to use a python script as part of the HEC-DSSVue software package to write and extract from the DSS database. I need to read in a csv file to then write to the database.
The HEC-DSSVue software includes a simple python script editor. If my understanding is correct, I need to import the csv module. I am using:
Code:
import csv
Other script imports have been:
Code:
from hec.script import*
Thanks.
Comment