macOS app to generate Swift 5 code for models from JSON (with Codeable)
Las características principales de insanoid/swiftyjsonaccelerator son: Data Parsing, Data Persistence, Data Serialization, Procesamiento de JSON.
Las alternativas de código abierto para insanoid/swiftyjsonaccelerator incluyen: delba/jason — Fast JSON parsing for Swift. swiftyjson/swiftyjson — SwiftyJSON is a Swift JSON parsing library and data wrapper designed to simplify the reading and manipulation of JSON… dehesa/codablecsv — Read and write CSV files row-by-row or through Swift's Codable interface. cezheng/fuzi — A fast & lightweight XML & HTML parser in Swift with XPath & CSS support. alibaba/handyjson — HandyJSON is a Swift JSON serialization library and data mapper. It functions as an object mapper that converts JSON… chenyunguimilook/swiftyxml — The most swifty way to deal with XML data in swift 5.
SwiftyJSON is a Swift JSON parsing library and data wrapper designed to simplify the reading and manipulation of JSON structures. It provides a toolkit for converting raw JSON strings into structured formats without requiring manual type casting or optional chaining for every value. The library focuses on simplifying nested data extraction through subscript-based value access and recursive data resolution. It ensures optional-safe value retrieval by returning default empty values instead of crashing when encountering missing keys or out-of-bounds array indices. The project includes capabilit
The most swifty way to deal with XML data in swift 5.
HandyJSON is a Swift JSON serialization library and data mapper. It functions as an object mapper that converts JSON data into typed Swift models and transforms Swift objects back into JSON strings for storage or transmission. The library uses reflection to automatically map JSON keys to object properties and supports custom mapping metadata to resolve naming differences between APIs and code. It provides capabilities for extracting values from deep nested paths within a JSON structure and supports the transformation of complex types such as dates and URLs. The framework handles both the des