All Projects → Flight-School → JSONFeed

Flight-School / JSONFeed

Licence: MIT license
A Swift encoder and decoder for the JSON Feed format

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to JSONFeed

Regularexpressiondecoder
A decoder that constructs objects from regular expression matches.
Stars: ✭ 169 (+231.37%)
Mutual labels:  codable
simplepie-ng
Don't use this yet.
Stars: ✭ 41 (-19.61%)
Mutual labels:  jsonfeed
Gofeed
Parse RSS, Atom and JSON feeds in Go
Stars: ✭ 1,762 (+3354.9%)
Mutual labels:  jsonfeed
Swiftdb
A modern database abstraction layer, batteries included.
Stars: ✭ 183 (+258.82%)
Mutual labels:  codable
Guide To Swift Codable Sample Code
Xcode Playground Sample Code for the Flight School Guide to Swift Codable
Stars: ✭ 218 (+327.45%)
Mutual labels:  codable
django-feed-reader
An RSS/Atom/JSONFeed reading + storing library for Django
Stars: ✭ 21 (-58.82%)
Mutual labels:  jsonfeed
Ladybug
A powerful model framework for Swift 4
Stars: ✭ 147 (+188.24%)
Mutual labels:  codable
TrickerX
An Xcode9+ Extension which make CodingKeys automatically.
Stars: ✭ 90 (+76.47%)
Mutual labels:  codable
Keyedcodable
Easy nested key mappings for swift Codable
Stars: ✭ 248 (+386.27%)
Mutual labels:  codable
V2
Minimalist and opinionated feed reader
Stars: ✭ 3,239 (+6250.98%)
Mutual labels:  jsonfeed
Codablewrappers
A Collection of PropertyWrappers to make custom Serialization of Swift Codable Types easy
Stars: ✭ 197 (+286.27%)
Mutual labels:  codable
Codablecsv
Read and write CSV files row-by-row or through Swift's Codable interface.
Stars: ✭ 214 (+319.61%)
Mutual labels:  codable
feed-nim
A feed parsing module for Nim
Stars: ✭ 21 (-58.82%)
Mutual labels:  jsonfeed
Cleanjson
Swift JSON decoder for Codable
Stars: ✭ 178 (+249.02%)
Mutual labels:  codable
Stuff
A collection of Swift code 'snippets' that are too small to create a library for and which do not fit in an other library.
Stars: ✭ 41 (-19.61%)
Mutual labels:  codable
Messagepack
A MessagePack encoder and decoder for Codable types
Stars: ✭ 167 (+227.45%)
Mutual labels:  codable
json-feed-viewer
The world's first JSON feed viewer 🥇
Stars: ✭ 40 (-21.57%)
Mutual labels:  jsonfeed
tidyRSS
An R package for extracting 'tidy' data frames from RSS, Atom, JSON and geoRSS feeds
Stars: ✭ 62 (+21.57%)
Mutual labels:  jsonfeed
CodablePerformance
Performance benchmarks for Codable and JSONSerialization
Stars: ✭ 68 (+33.33%)
Mutual labels:  codable
JSONFeed
JSONFeed parser for swift
Stars: ✭ 27 (-47.06%)
Mutual labels:  jsonfeed

JSONFeed

Build Status

A Swift encoder and decoder for the JSON Feed format.

Usage

// For an example, see https://jsonfeed.org/feed.json
let json = "{ ... }"

let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .iso8601

let feed = try! decoder.decode(Feed.self, from: data)

print(feed.title)

for item in feed.items {
    print("* \(item.title!) - \(item.datePublished!)")
}

License

MIT

Contact

Mattt (@mattt)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].