https://github.com/terhechte/octotrend.swift
Pure-Swift Parser for the Github Trending API
https://github.com/terhechte/octotrend.swift
Last synced: 3 months ago
JSON representation
Pure-Swift Parser for the Github Trending API
- Host: GitHub
- URL: https://github.com/terhechte/octotrend.swift
- Owner: terhechte
- License: mit
- Created: 2015-08-03T14:22:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-15T14:29:10.000Z (almost 10 years ago)
- Last Synced: 2025-01-27T22:44:42.875Z (4 months ago)
- Language: HTML
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# OctoTrend.swift
## A Github Trending Parser written in Swift
### Status: Usable but buggy
This is a simple Swift Micro Framework that parses Github trends into a usable Swift structure.
Usage:
``` Swift
// Get the language trends for the Swift language for today.trends(language: "swift", timeline: TrendingTimeline.Today) { (result) -> () in
if let result = result.value {
for repo in result {
print("\(repo.name): \(repo.url)")
}
}
}
```More details will follow.