Hi Ahmed,
On 2018-07-09 19:46, Ahmad wrote:
> Hello everyone, I hope all of you will be fine.
>
> I want a script to download facebook video (SD or HD) using python.
>
I highly suggest using the requests library for doing HTTP client
communication:
http://docs.python-requests.org
It's a lot easier to use and more "pythonic" than any of the HTTP
libraries found in the Python standard library.
You probably need a way to get the URL for the video to download. I
don't have any experience with it, but I would probably look into this
for a start:
https://facebook-sdk.readthedocs.io/
I imagine it should be possible to use that library to find the URL for
whatever video it is you want to download, but as I said, I have no
experience with that.
That's where I would start at least.
Kind regards,
Kasper Laudrup