Quote:
Originally Posted by 123klo
take a look at the media center software "Kodi". There are addons (written in python) which exactly do what you described.
|
I'm using gentoo & arch on my notebooks, where I want to implement applications by myself. Maybe on my win computer. I will think about it...
Quote:
Originally Posted by .SkyneT.
Because there is a lot of Javascript involved I would recommend looking into selenium.
Selenium can make use of many different Browsers through different WebDrivers. I would recommend using Chrome or Firefox.
You can install selenium via pip:
Code:
pip install selenium
For Chromedriver just download the .exe from  and add it to your PATH.
If you need to parse some HTML (which you probably will) you can use BeautifulSoup for that. You can install it via pip aswell:
Code:
pip install beautifulsoup4
|
Jap, I just checked it and you're right.
I have visited the website of selenium and its quite interesting for the thing I want to build. It also have an active community. I joined the irc channel to get some reviews about selenium.
Also checked BeatifulSoup. Why do I need it? It's pulling data out of a html file/code. The only reason why I need that is to grab url from the html document. Does selenium not also do that?
Selenium can search for defined elements like href and returns the value of it. Anyway, a big thanks to you to referring me to it. I will work on it.