We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello各位,我使用Google Apps Script统计了一下PIME各个发布版的下载量: https://docs.google.com/spreadsheets/d/1ja5uNsA7SSFtqzYV7KnMoQcIwNl6SZGcz3cX7h2Bji4/edit?usp=sharing
截止到2023-11-23 日,总共下载量为 397810,非常可观的下载量,与项目的stars数量完全不是一个数量级。说明PIME很多用户应该都不是Github用户,只下载没有点击star。我的一个感想是现在并不是软件生产过剩,而是很多软件都缺乏很好的市场推广。 数据来源是: https://api.github.com/repos/EasyIME/PIME/releases
统计脚本如下:
function onOpen() { var ui = SpreadsheetApp.getUi(); ui.createMenu('Github PIME Stat') .addItem('PIME Download Counts', 'getDownloadStats') .addToUi(); } function getDownloadStats() { var url = "https://api.github.com/repos/EasyIME/PIME/releases"; var response = UrlFetchApp.fetch(url, { 'muteHttpExceptions': true }); var json = response.getContentText(); var releases = JSON.parse(json); var msiDownloadsTotal = 0; var sheetName = 'PIME'; var sheet = SpreadsheetApp.getActive().getSheetByName(sheetName); sheet.getDataRange().clearContent(); for (var i = 0; i < releases.length; i++) { for (var j = 0; j < releases[i].assets.length; j++) { msiDownloadsTotal += releases[i].assets[j].download_count; sheet.appendRow([ Utilities.formatDate(new Date(releases[i].assets[j].updated_at), "GMT", "yyyy-MM-dd"), // 2022-10-24T08:27:52Z releases[i].tag_name, releases[i].assets[j].download_count]); } } sheet.appendRow([' ']); sheet.appendRow([Utilities.formatDate(new Date(), "GMT", "yyyy-MM-dd"), "Total", msiDownloadsTotal]); }
The text was updated successfully, but these errors were encountered:
一般使用者下載是不會點擊 Star 的,除非要參與開發才會需要,這個下載量其實也普普而已,主要還是微軟新注音加減可以用,付費的還有自然輸入法可以替代,有覺得想要更方便的使用者才會來用新酷音。
Sorry, something went wrong.
No branches or pull requests
Hello各位,我使用Google Apps Script统计了一下PIME各个发布版的下载量:
https://docs.google.com/spreadsheets/d/1ja5uNsA7SSFtqzYV7KnMoQcIwNl6SZGcz3cX7h2Bji4/edit?usp=sharing
截止到2023-11-23 日,总共下载量为 397810,非常可观的下载量,与项目的stars数量完全不是一个数量级。说明PIME很多用户应该都不是Github用户,只下载没有点击star。我的一个感想是现在并不是软件生产过剩,而是很多软件都缺乏很好的市场推广。
数据来源是: https://api.github.com/repos/EasyIME/PIME/releases
统计脚本如下:
The text was updated successfully, but these errors were encountered: