corrects import of own functions that didn't work anymore because of a newer python version.

This commit is contained in:
Michael Beck
2023-08-30 21:45:27 +02:00
parent 1c6d9d5415
commit d8136909c8
3 changed files with 19 additions and 17 deletions

View File

@@ -66,7 +66,6 @@ which is the final output.
import os
import pandas as pd
import glob
import time
import sys
from datetime import datetime
import concurrent.futures
@@ -149,10 +148,12 @@ tweetDFColumns = [
################## do NOT change anything below this line ###################
#############################################################################
## Import functions
from funs.TimeSlice import *
from funs.ClearDupes import deDupe
from funs.Scrape import scrapeTweets
## Import own functions
funs = wd+"funs"
sys.path.insert(1, funs)
from TimeSlice import get_Tslices
from ClearDupes import deDupe
from Scrape import scrapeTweets
###################
# Create logfile & log all outputs