{"id":16683872,"url":"https://github.com/meniny/jsonify","last_synced_at":"2025-03-21T18:32:52.678Z","repository":{"id":56916980,"uuid":"89125624","full_name":"Meniny/Jsonify","owner":"Meniny","description":"♨️A delightful JSON parsing framework.","archived":false,"fork":false,"pushed_at":"2019-04-06T07:59:48.000Z","size":1545,"stargazers_count":43,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-01T08:44:54.706Z","etag":null,"topics":["ios","json","mac","macos","macosx","osx","parsing","tvos","watchos"],"latest_commit_sha":null,"homepage":"https://meniny.cn/Jsonify/","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Meniny.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-23T07:45:17.000Z","updated_at":"2024-05-31T15:30:15.000Z","dependencies_parsed_at":"2022-08-21T03:50:38.446Z","dependency_job_id":null,"html_url":"https://github.com/Meniny/Jsonify","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meniny%2FJsonify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meniny%2FJsonify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meniny%2FJsonify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Meniny%2FJsonify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Meniny","download_url":"https://codeload.github.com/Meniny/Jsonify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244153316,"owners_count":20406996,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ios","json","mac","macos","macosx","osx","parsing","tvos","watchos"],"created_at":"2024-10-12T14:27:02.267Z","updated_at":"2025-03-21T18:32:52.157Z","avatar_url":"https://github.com/Meniny.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://ooo.0o0.ooo/2017/04/23/58fc5b40945aa.png\" alt=\"Jsonify\"\u003e\n  \u003cbr/\u003e\u003ca href=\"https://cocoapods.org/pods/Jsonify\"\u003e\n  \u003cimg alt=\"Version\" src=\"https://img.shields.io/badge/version-2.2.0-brightgreen.svg\"\u003e\n  \u003cimg alt=\"Author\" src=\"https://img.shields.io/badge/author-Meniny-blue.svg\"\u003e\n  \u003cimg alt=\"Build Passing\" src=\"https://img.shields.io/badge/build-passing-brightgreen.svg\"\u003e\n  \u003cimg alt=\"Swift\" src=\"https://img.shields.io/badge/swift-5.0%2B-orange.svg\"\u003e\n  \u003cbr/\u003e\n  \u003cimg alt=\"Platforms\" src=\"https://img.shields.io/badge/platform-macOS%20%7C%20iOS%20%7C%20watchOS%20%7C%20tvOS-lightgrey.svg\"\u003e\n  \u003cimg alt=\"MIT\" src=\"https://img.shields.io/badge/license-MIT-blue.svg\"\u003e\n  \u003cbr/\u003e\n  \u003cimg alt=\"Cocoapods\" src=\"https://img.shields.io/badge/cocoapods-compatible-brightgreen.svg\"\u003e\n  \u003cimg alt=\"Carthage\" src=\"https://img.shields.io/badge/carthage-working%20on-red.svg\"\u003e\n  \u003cimg alt=\"SPM\" src=\"https://img.shields.io/badge/swift%20package%20manager-working%20on-red.svg\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n# Introduction\n\n## What's this?\n\n`Jsonify` is a delightful JSON parsing framework for iOS/macOS/watchOS/tvOS platforms written in Swift.\n\n## Requirements\n\n* iOS 8.0+\n* macOS 10.10+\n* watchOS 2.0+\n* tvOS 9.0+\n* Xcode 8 with Swift 3\n\n## Installation\n\n#### CocoaPods\n\n```ruby\npod 'Jsonify'\n```\n\n#### Manually: Framework\n\nFirst, excute this:\n\n```bash\ngit submodule add https://github.com/Meniny/Jsonify.git\n```\n\nthen:\n\n* Drag `Jsonify/Jsonify/Jsonify.xcodeproj` into your project\n* Go to `PROJECT`-\u003e`TARGETS`-\u003e[YOUR_TARGET_NAME]-\u003e`General`-\u003e`Embedded Binaries`\n* Click `＋`\n* Select `Jsonify.frameWork`, click `Add`\n\n#### Manually: Source Files\n\nCopy all files in the `./Jsonify/Jsonify` directory into your project.\n\n## Contribution\n\nYou are welcome to fork and submit pull requests.\n\n## License\n\n`Jsonify` is open-sourced software, licensed under the `MIT` license.\n\n## Sample\n\n```swift\nlet jsonString = \"[ { \\\"id\\\": 1, \\\"name\\\": \\\"Meniny\\\", }, ]\"\nlet array = Jsonify(string: jsonString)\nfor i in array.arrayValue {\n    let id = i[\"id\"].intValue\n    let name = i[\"name\"].stringValue\n    print(\"id=\\(id)\\nname=\\(name)\")\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeniny%2Fjsonify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeniny%2Fjsonify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeniny%2Fjsonify/lists"}