让你获取到更多的 Github 信息。
由于 GitHub 在官方的接口中未提供 Trending,Contributions 等相关接口,所以打算使用前端 Parser 来爬取对应的信息。Straycat 是 Sepicat 的开源组件,用来获取 GitHub 接口中无法获取到的信息。
- Trending 信息获取。link - 这个是官方的 Trending 信息
- Topic 信息获取。link - 这个是官方的 Topic 信息
- Contribution 信息获取。link - 这个是作者的 Contributions 页面
- Octodex 章鱼猫作品展。link - octodex 主页
- githubrank 中国区 GitHub 用户排行榜。link - githubrank 排行版
- profile-summary-for-github.com 数据分析聚合。profile-summary-for-github
- Alamofire version 4.5+
- Kanna version 4.0+
- SwiftSoup version 1.6.3+
(包管理工具暂时仅支持 CocoaPods,且版本号需要 1.1
以上)
use_frameworks!
pod 'Straycat', :git => 'https://github.com/Sepicat/Straycat.git'
执行 pod install
的时候会自动安装依赖库,若原始项目中有相同的依赖,若无版本冲突也可。
import Straycat
// 使用 Kanna 解析,获取全部语言当日 Trending Developers
StrayTrending.shared.fetchDev(language: "all", time: .today, tool: .kanna) {
(success, devs) in
guard success, let devs = devs else {
// 爬取失败
return
}
// 成功处理
}
欢迎支持已经上架的个人应用 Sepicat - 致力于打造最 Geekful 的 GitHub 客户端。
倘若有更好的 GitHub 数据源,欢迎在 issue 中提供。
Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.