diff options
| author | Bobby <[email protected]> | 2022-12-02 19:15:35 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-02 19:15:35 -0500 |
| commit | 87bc7ff187633aacdedcb48bc4f96d04a20a9444 (patch) | |
| tree | 54db2784df71883d64edd82589d08b7fc73f40c8 /src/app.py | |
| parent | 6496fb95432618f64cf23be0cd0eac362b3af3ed (diff) | |
| parent | 44991d1734e5474c546c87acffebb080698782cc (diff) | |
| download | RedditEngagementPrediction-87bc7ff187633aacdedcb48bc4f96d04a20a9444.tar.xz RedditEngagementPrediction-87bc7ff187633aacdedcb48bc4f96d04a20a9444.zip | |
Merge pull request #10 from luciferreeves/main
Fixed SSL
Diffstat (limited to 'src/app.py')
| -rw-r--r-- | src/app.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,8 @@ if DatabaseHandler().read().empty: if response: posts = fetch_data() # ask if user wants to save the data + root = tkinter.Tk() + root.withdraw() response = tkinter.messagebox.askokcancel('Save Data', 'Do you want to save the data for future use?', icon='warning') posts = pd.DataFrame(posts) posts = Preprocessor(posts).get_preprocessed_data() |
