-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Removed any returns for '__init__' at model.py 2. Function 'export_as_sql' patched for returning 'state', and 'imported content' instead of 'content' at model.py 3. Removed un-used libraries at index.py 4. File structure adjustments (removed src folder) 5. Functions documentation updates at model.py 6. Minor comments adjustments at index.py, and model.py
- Loading branch information
1 parent
332ac8b
commit e10ea5f
Showing
3 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
import pandas as pd | ||
from model import convertor | ||
|
||
def main(): | ||
|
||
dataframe = convertor(filePath="Your File Path") | ||
dataframe = convertor(filePath="assets/RTA Dataset.csv") # Dataframe Example | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.