Prince/funda/main.py
Eljakim Herrewijnen 7b748b5b9e Initial
2021-08-16 22:06:55 +02:00

17 lines
328 B
Python

from funda import FundaCrawler
from webserver import *
from storage import Storage
def main():
#Storage module
st = Storage()
#Setup thread with automatic crawler
fc = FundaCrawler(st, placename="Ridderkerk")
# fc.crawlKoopwoningen()
StartServer(st, fc)
pass
if __name__ == "__main__":
main()