Software Alternatives & Reviews

XML Import script with sleep

Letterboxd Schema.org Google
  1. Letterboxd is a social site for sharing your taste in film, now in public beta.

    #Movie Reviews #Movies #Movie Ratings 149 social mentions

  2. Schema.org provides schemas for structured data on the Internet, on web pages, in email messages, and beyond.
    Pricing:
    • Open Source

    #SEO #SEO Tools #Network & Admin 143 social mentions

  3. 3
    Google Search, also referred to as Google Web Search or simply Google, is a web search engine developed by Google. It is the most used search engine on the World Wide Web
    /** * Returns omdb information * * @param {A2:C5} data * @param {"public"|"private"} type * @return {array} range of information from API * @customfunction */ Function OMDB(data, type = 'private') { if (data[0].length != 3) { throw new Error('No valid range of data is given') } let key if (type == 'private') { type = 'private.' key = `&apikey=${omdbKey}` } var omdbKey = 'PUT YOUR API KEY HERE'; const urls = data.map(d => { const [year, title, id] = d if (id != "") { return `https://${type}omdbapi.com/?i=${id}&plot=full&apikey=${omdbKey}` } else if (title != "" && year != "") { return `https://${type}omdbapi.com/?t=${title}&y=${year}&plot=full&apikey=${omdbKey}` } else if (title != "") { return `https://${type}omdbapi.com/?t=${title}&plot=full&apikey=${omdbKey}` } else { return `http://google.com` } }) const requests = UrlFetchApp.fetchAll(urls) return requests.map(request => { try { const data = JSON.parse(request.getContentText()) const { Type, imdbID, Year, Title, imdbRating, Metascore, Plot, Language, Director, Actors, Awards, Runtime, Genre, Writer, Rated } = data return [Type, imdbID, Year, Title, imdbRating, Metascore, Plot, Language, Director, Actors, Awards, Runtime, Genre, Writer, Rated] } catch (err) { return ["", "", "", "", "", "", "", "", "", "", "", "", "", "", ""] } }) }.

    #Search Engine #Internet Search #Web Search 3692 social mentions

Discuss: XML Import script with sleep

Log in or Post with