This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(config) { | |
var customLaunchers = require('./saucebrowsers.js'); | |
config.set({ | |
basePath: '', | |
frameworks: ['mocha', 'browserify'], | |
files: [./**/*.js], | |
exclude: [], | |
preprocessors: {}, | |
port: 9876, | |
colors: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import gdata.webmastertools.service | |
import datetime | |
class Downloader(object): | |
HOST = 'www.google.com' | |
APP_NAME = 'Google-WMTdownloadscript-0.1' | |
LIST_PATH = '/webmasters/tools/downloads-list?hl=%s&siteUrl=%s' |
OlderNewer