{"id":24639697,"url":"https://github.com/hackenbruder/govdata-ios","last_synced_at":"2025-08-02T22:16:58.398Z","repository":{"id":56912910,"uuid":"44576931","full_name":"hackenbruder/govdata-ios","owner":"hackenbruder","description":"GovData iOS SDK","archived":false,"fork":false,"pushed_at":"2020-05-07T14:15:54.000Z","size":99,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-27T05:50:44.024Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackenbruder.png","metadata":{"files":{"readme":"README.en.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-10-20T02:22:57.000Z","updated_at":"2020-05-07T13:16:02.000Z","dependencies_parsed_at":"2022-08-20T20:50:27.523Z","dependency_job_id":null,"html_url":"https://github.com/hackenbruder/govdata-ios","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/hackenbruder/govdata-ios","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbruder%2Fgovdata-ios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbruder%2Fgovdata-ios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbruder%2Fgovdata-ios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbruder%2Fgovdata-ios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackenbruder","download_url":"https://codeload.github.com/hackenbruder/govdata-ios/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackenbruder%2Fgovdata-ios/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268465671,"owners_count":24254347,"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","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-01-25T11:12:27.529Z","updated_at":"2025-08-02T22:16:58.343Z","avatar_url":"https://github.com/hackenbruder.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GovData iOS SDK\n\n[Česká verze](README.md)\n\nOfficial SDK for iOS and macOS.\n\n[![Build Status](https://travis-ci.org/hackenbruder/govdata-ios.svg)](https://travis-ci.org/hackenbruder/govdata-ios)\n\n## GovData\n\n`GovData` provides select OpenData using an API and simplifies it's integration in applications with an SDK. We currently provide data from small business, business and other registries including registry of VAT payers. Data are standardized and searchable. Our SDKs are test-covered and services highly available. We believe OpenData, APIs and SDKs create an ecosystem and high quality apps can only exist in healthy ecosystem.\n\nTry our service and SDK for free.\n\n## Installation\n### CocoaPods\n\nInstall our SDK with standard command:\n\t\n\tpod install govdata\n\nFor correct function of our static library you need use proper `Xcode` project configuration for `CocoaPods` including all correct paths to header files and correct build Targets configuration. Library is covered with automated test.\n\nOnly dependency of our SDK is `AFNetworking` library.\n\n## Configuration\n\nSDK is pre-configured to use `demo` account with our service with specific key and limits. This configuration can be used to test our service and to develop your app.\n\nSDK configuration can be performed by calling `init` method on `GovData` object:\n\t\n\tconst GovData * govdata = [[GovData alloc] init];\n\nor for production use using stage and key variables:\n\n\tconst GovData * govdata = [[GovData alloc] initWithConfig:@\"\u003cstage\u003e\" key:@\"\u003chodnota\u003e\"];\n\n## Usage\n### Simple search\n\nFind entities in business registry using `findEntityByNumber` method:\n\n\t[govdata findEntityByNumber:(const NSString *) number success:(GDEntityResponse) success failure:(GDErrorResponse) failure];\n\nSearch example:\n\n\tGDErrorResponse failure = ^(const GDError * error) {\n\t\tNSLog(@\"%@\", error.localizedDescription);\n\t\t\n\t\t//handle error\n\t};\n\t\n\tGDEntityResponse success = ^(const GDEntity * entity) {\n\t\t//handle entity\n\t};\n\n\t[govdata findEntityByNumber:@\"00006947\" success: success failure: failure];\n\nPlease find more detailed example [here](https://gist.github.com/hackenbruder/aca3cde0e48e6257d40a).\n\n### Geospatial search\n\nEntity search using GPS coordinates and radius using `findEntitiesByGeo` method:\n\n\tGDSearchResponse success = ^(const GDSearchResults * results) {\n\t\t//handle search results\n\t};\n\t\n\t[govdata findEntitiesByGeo:@50.08915042002743 longitude:@14.407195183397297 radius:@100 page:@1 success: success failure: failure];\n\n## Documentation\n\nDocumenting SDK objects is in progress. Please explore available objects and their methods in [Tests](Tests/?ts=2).\n\n## License\n\n[MIT](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackenbruder%2Fgovdata-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackenbruder%2Fgovdata-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackenbruder%2Fgovdata-ios/lists"}