<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Script for Automatic Download of Clips in Buying Options &amp; Tips</title>
    <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000519#M1284</link>
    <description>&lt;P&gt;Also here is the link to the chrome driver if you want to try it. &amp;nbsp;&lt;A href="http://chromedriver.storage.googleapis.com/index.html?path=2.9/" target="_blank"&gt;http://chromedriver.storage.googleapis.com/index.html?path=2.9/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Nov 2015 03:23:27 GMT</pubDate>
    <dc:creator>Rommac100</dc:creator>
    <dc:date>2015-11-03T03:23:27Z</dc:date>
    <item>
      <title>Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000003#M1273</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Here is a script for anyone who is looking for a script to automatically download their files from the cloud. It is written in python. It requries Splinter (&lt;A href="http://splinter.readthedocs.org/en/latest/index.html#)" target="_blank"&gt;http://splinter.readthedocs.org/en/latest/index.html#)&lt;/A&gt; to function. Was written in Arch Linux. So haven't tested it with windows yet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;__author__ = 'rommac100'
from splinter import Browser
with Browser('chrome') as browser:
    browser.visit("https://arlo.netgear.com/#/login")
    # Enter you Username/Email, replace the temp.
    browser.fill('userId', 'tempemail@tempemail.com')
    # Enter you password, replace the temp.
    browser.fill('password', 'tempPass')
    button = browser.find_by_id('loginButton')
    button.click()
    if browser.is_text_present('Settings'):
        print('')
        if browser.is_text_present('Library'):
            button2 = browser.find_by_id('footer_library')
            button2.click()
            if browser.is_text_present('Click on'):
                button3 = browser.find_by_id('day_ok')
                button3.click()
                if browser.is_text_present('Select'):
                    button4 = browser.find_by_id('day_ToggleSelectMode')
                    button4.click()
                    if browser.is_text_present('Select Alls'):
                        print("")
                    else:
                        button5 = browser.find_by_id('day_SelectAll')
                        button5.click()
                        if browser.is_text_present('Downloads'):
                            print('')
                        else:
                            button6 = browser.find_by_id('footer_download')
                            button6.click()
                            y = input()
    else:
        print("Found.")
        if browser.is_text_present('Library'):
            button2 = browser.find_by_id('footer_library')
            button2.click()
            if browser.is_text_present('Click on'):
                button3 = browser.find_by_id('day_ok')
                button3.click()
                if browser.is_text_present('Select'):
                    button4 = browser.find_by_id('day_ToggleSelectMode')
                    button4.click()
                    if browser.is_text_present('Select Alls'):
                        print('')
                    else:
                        button5 = browser.find_by_id('day_SelectAll')
                        button5.click()
                        if browser.is_text_present('Downloads'):
                            print("Download is present.")
                        else:
                            button6 = browser.find_by_id('footer_download')
                            button6.click()
                            print("Type:'delete' if you want to delete the files.")
                            x = input()
                            if x == "delete":
                                button7 = browser.find_by_id('footer_delete')
                                button7.click()
                                if browser.is_text_present('Are you sure'):
                                    button8 = browser.find_by_id('buttonConfirm')
                                    button8.click()
                                    if browser.is_text_present('Done'):
                                        button9 = browser.find_by_id('day_ToggleSelectMode')
                                        button9.click()
                                else:
                                    print("Did not delete it.")
                            else:
                                print("Done.")
            else:
                print("No.")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 03:58:51 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000003#M1273</guid>
      <dc:creator>Rommac100</dc:creator>
      <dc:date>2016-10-03T03:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000045#M1275</link>
      <description>&lt;P&gt;Hi. Thanks for the script. How do you run this sript in Ubuntu?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 06:19:25 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000045#M1275</guid>
      <dc:creator>rabil</dc:creator>
      <dc:date>2015-11-02T06:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000153#M1276</link>
      <description>&lt;P&gt;I suspect it would be just like in Arch Linux. You still need Python and Splinter (which says it's only for Python 2.7). &amp;nbsp;I haven't run Linux in a while so I'm trying under Win10 since I already have Python loaded for the other script I've been providing since the author has not come back.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Windows users who want to try this, I used Cygwin to download Splinter using git (I could email a ZIP file to anyone who is interested now that I grabbed it). &amp;nbsp;The install commandline worked fine. &amp;nbsp;There's also a Chrome driver needed for this to work which is basically unsupported by Splinter so maybe my problem is related. &amp;nbsp;The problem is that a Chrome window opens and buttons are pushed resulting in the download and then it hangs. &amp;nbsp;The error is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Users\jguerdat\Desktop&amp;gt;python "ArloDownload - new.py"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "ArloDownload - new.py", line 32, in &amp;lt;module&amp;gt;&lt;BR /&gt;y = input()&lt;BR /&gt;File "&amp;lt;string&amp;gt;", line 0&lt;/P&gt;&lt;P&gt;^&lt;BR /&gt;SyntaxError: unexpected EOF while parsing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I hit Return, the Chrome window closes, the file is in my Downloads folder and the error message is displayed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even if this flew perfectly, I prefer the other script, putting the download into a dated folder (likely easily done here, too) as well as fewer hoops to jump through to install and execute. &amp;nbsp;This one is interesting in that it uses the web browser to perform the task, automatically pushing buttons for you. &amp;nbsp;YMMV.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 14:24:28 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000153#M1276</guid>
      <dc:creator>jguerdat</dc:creator>
      <dc:date>2015-11-02T14:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000228#M1278</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Try using chromium. That was the only way I could get it working. Since firefox would not allow downloading.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 17:20:42 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000228#M1278</guid>
      <dc:creator>Rommac100</dc:creator>
      <dc:date>2015-11-02T17:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000229#M1279</link>
      <description>&lt;P&gt;Also take a look at their website to get the chrome driver.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 17:24:11 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000229#M1279</guid>
      <dc:creator>Rommac100</dc:creator>
      <dc:date>2015-11-02T17:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000344#M1281</link>
      <description>&lt;P&gt;According to&amp;nbsp;&lt;A href="http://splinter.readthedocs.org/en/latest/index.html#drivers" target="_blank"&gt;http://splinter.readthedocs.org/en/latest/index.html#drivers&lt;/A&gt; there are drivers for both Chrome and Firefox. I haven't tried the Firefox one - maybe tomorrow.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Nov 2015 20:54:14 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000344#M1281</guid>
      <dc:creator>jguerdat</dc:creator>
      <dc:date>2015-11-02T20:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000519#M1284</link>
      <description>&lt;P&gt;Also here is the link to the chrome driver if you want to try it. &amp;nbsp;&lt;A href="http://chromedriver.storage.googleapis.com/index.html?path=2.9/" target="_blank"&gt;http://chromedriver.storage.googleapis.com/index.html?path=2.9/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2015 03:23:27 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1000519#M1284</guid>
      <dc:creator>Rommac100</dc:creator>
      <dc:date>2015-11-03T03:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1001678#M1295</link>
      <description>&lt;P&gt;You guys talk funny. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.arlo.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2015 08:33:00 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1001678#M1295</guid>
      <dc:creator>jumpernz</dc:creator>
      <dc:date>2015-11-05T08:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1001762#M1296</link>
      <description>&lt;P&gt;We look funny, too... &amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2015 13:39:57 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1001762#M1296</guid>
      <dc:creator>jguerdat</dc:creator>
      <dc:date>2015-11-05T13:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script for Automatic Download of Clips</title>
      <link>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1003585#M1313</link>
      <description>Found a link to splinter where you don't have to use git. &lt;A href="https://pypi.python.org/pypi/splinter" target="_blank"&gt;https://pypi.python.org/pypi/splinter&lt;/A&gt;</description>
      <pubDate>Tue, 10 Nov 2015 02:50:37 GMT</pubDate>
      <guid>https://community.arlo.com/t5/Buying-Options-Tips/Script-for-Automatic-Download-of-Clips/m-p/1003585#M1313</guid>
      <dc:creator>Rommac100</dc:creator>
      <dc:date>2015-11-10T02:50:37Z</dc:date>
    </item>
  </channel>
</rss>

