File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/electricity_network_file_parser Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ A python package parsing gaia files. It takes a gaia file as input and parses th
44Example usage:
55
66``` python
7- from ElectricityNetworFileParser .GnfParser import GnfParser
7+ from electricity_network_file_parser .GnfParser import GnfParser
88
99gnf_parser = GnfParser(" test.gnf" )
1010gnf_parser.parse_file()
@@ -20,4 +20,4 @@ gnf_parser.write_all_data_frames()
2020
2121Create a new python environment and run the following command:
2222
23- ` pip install ElectricityNetworFileParser `
23+ ` pip install electricity_network_file_parser `
Original file line number Diff line number Diff line change 33
44from pathlib import Path
55
6- from ElectricityNetworFileParser .dataclasses import PropertyDescription
6+ from electricity_network_file_parser .dataclasses import PropertyDescription
77
88class FileParser :
99 def __init__ (self , file_path ):
Original file line number Diff line number Diff line change 11import pandas as pd
2- from ElectricityNetworFileParser .FileParser import FileParser
2+ from electricity_network_file_parser .FileParser import FileParser
33
44class GnfParser (FileParser ):
55
You can’t perform that action at this time.
0 commit comments