https://github.com/ryanslikesocool/nsmetadatatoolbox
Extensions and conveniences for Apple's metadata APIs.
https://github.com/ryanslikesocool/nsmetadatatoolbox
concurrency foundation nsmetadata nsmetadataitem nsmetadataquery swift
Last synced: 2 months ago
JSON representation
Extensions and conveniences for Apple's metadata APIs.
- Host: GitHub
- URL: https://github.com/ryanslikesocool/nsmetadatatoolbox
- Owner: ryanslikesocool
- License: mit
- Created: 2024-12-13T02:52:58.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-14T18:01:56.000Z (5 months ago)
- Last Synced: 2025-02-14T16:41:41.590Z (4 months ago)
- Topics: concurrency, foundation, nsmetadata, nsmetadataitem, nsmetadataquery, swift
- Language: Swift
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# NSMetadataToolbox
Extensions and conveniences for Apple's metadata APIs.
## NOTICE
**This package is under development and not considered production-ready.**
Breaking changes are common, documentation is incomplete, and support is limited. Use at your own risk.---
## Installation (Swift Package Manager)
Add the following entry to your package dependencies...
```swift
.package(url: "https://github.com/ryanslikesocool/NSMetadataToolbox.git", from: "0.0.6"),
```
...and your target dependencies.
```swift
.target(
name: "MyTarget",
dependencies: [
"NSMetadataToolbox",
]
),
```---
## Documentation
[Quick Start Guide](Sources/NSMetadataToolbox/Documentation.docc/Articles/QuickStart.md)
Most of this package is documented with
[DocC](https://www.swift.org/documentation/docc/)\.
To view documentation in Xcode, select `Product > Build Documentation` from the menu bar.---
## Dependencies
| Dependency | Reason |
| - | - |
| [DeclarativeCore](https://github.com/ryanslikesocool/DeclarativeCore) | Shared declarative code. |