Created
December 23, 2018 20:40
-
-
Save hitode909/41947f3978240d3f42dbe10deeed00a4 to your computer and use it in GitHub Desktop.
つくりおきメトリクス
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
function crawl() { | |
var content = UrlFetchApp.fetch("https://tsukurioki.hatenablog.com/about").getContentText(); | |
var entries = content.match(/(\d+) 記事/)[1]; | |
var subscribers = content.match(/(\d+) 人/)[1]; | |
Logger.log(subscribers); | |
var sheet = SpreadsheetApp.openById("*************************").getSheetByName('data'); | |
var newRow = [new Date(), +entries, +subscribers]; | |
sheet.appendRow(newRow); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment