-
-
Save yasulab/9bfc83a2624d2cee8c7315662b34a198 to your computer and use it in GitHub Desktop.
エンジニアHubの記事「アーキテクチャ大調査2022」の "サーバーサイド開発" → "フレームワーク・ライブラリ" の部分を抽出するスクリプトと、その結果のまとめです (集計対象の記事: https://eh-career.com/engineerhub/entry/2022/02/21/130000 )
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
require 'mechanize' | |
data = [] | |
page = Mechanize.new.get('https://eh-career.com/engineerhub/entry/2022/02/21/130000') | |
page.search("h5[id*='サーバーサイド開発']").each do |n| | |
title = n.next_element.at("th[text()*='フレームワーク']") | |
next if title.nil? | |
title.next_element.text.split(',').each do |fw| | |
data << fw.strip | |
end | |
end | |
pp data.sort.tally.sort_by(&:last).reverse |
📊 集計対象: エンジニアHub - 68サービス・アプリのクラウドやフレームワーク・言語など聞いてみた! アーキテクチャ大調査2022
上記記事の サーバーサイド開発
→ フレームワーク・ライブラリ
部分を抽出した結果になっています。
- ↑ 記事中にある各サービスのココ (
サーバーサイド開発
→フレームワーク・ライブラリ
) の部分を抽出
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
📊 集計結果(表記揺れ修正後)
📊 集計結果(表記揺れ修正前)