Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klippa-app/klippa-scanner-spm
Swift Package Manager support for Klippa Scanner SDK.
https://github.com/klippa-app/klippa-scanner-spm
digitize-paper-processes klippa scanner sdk spm
Last synced: 12 days ago
JSON representation
Swift Package Manager support for Klippa Scanner SDK.
- Host: GitHub
- URL: https://github.com/klippa-app/klippa-scanner-spm
- Owner: klippa-app
- Created: 2024-07-23T06:35:20.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T10:20:14.000Z (about 1 month ago)
- Last Synced: 2024-10-21T14:58:28.200Z (about 1 month ago)
- Topics: digitize-paper-processes, klippa, scanner, sdk, spm
- Language: Swift
- Homepage: https://dochorizon.klippa.com/docs/sdk/scanner/ios
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Klippa Scanner SPM
## SDK License
Please be aware you need to have a license to use this SDK.
If you would like to use our scanner, please contact us [here](https://www.klippa.com/en/ocr/ocr-sdk/)## Getting started
To install the Klippa Scanner SDK using SPM you will need a username and password, if you don't have a username/password yet please contact us [here](https://www.klippa.com/en/ocr/ocr-sdk/).
Navigate to your `.netrc` file in `/Users/{your-username}/.netrc` if it does not exist yet you can make it.
Add the following to the `.netrc`:```netrc
machine custom-ocr.klippa.com
login {your-username}
password {your-password}
```Replace the `{your-username}` and `{your-password}` values with the ones provided by Klippa.
In case you want to use `keychain access` instead of `.netrc` you can also do the following:
1. Open keychain access > `file` > `New Password Item...`
2. Keychain Item Name: > `custom-ocr.klippa.com`
3. Account Name: > `{your-username}`
4. Password: > `{your-password}`Replace the `{your-username}` and `{your-password}` values with the ones provided by Klippa.
Next you can follow https://developer.apple.com/documentation/xcode/adding-package-dependencies-to-your-app
1. In Xcode, select “File” → “Add Packages...”
2. Enter https://github.com/klippa-app/klippa-scanner-spm.gitor you can add the following dependency to your Package.swift:
`.package(url: "https://github.com/klippa-app/klippa-scanner-spm", from: "0.0.2")`