How do I execute a Python file from PHP?
I have a Python parser in my project that will get video source from another site. I plan to do so by
- Writing in text file url (from PHP).
- Starting a Python script (from PHP).
- Python script will get that url from text file
- Finally Python script will write that video source in other text file
- PHP will read that file with source and will use that further.
At 2., how do I start the python script?