it's my first question on here, so I'll do my best:
I wrote a Scrapy Crawler in Python 3.6 and it works perfectly.
I've tried to put it in a .exe file so my client can run it from a Windows machine, without having Scrapy or Python installed.
I've managed to create .exe files using both, PyInstaller and cx_Freeze, but in both cases when I try to run the file on Windows, the terminal opens and closes immediately.
I guess my question is, if it's even possible to run a Scrapy Crawler as .exe and if so, how can I circumvent the terminal problem?
Thanks a lot for your input!