Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelesantos/dragon-ball-kit
DragonBallKit is a Swift Package Manager that provides a convenient interface for consuming data from the Dragon Ball API. This package simplifies the process of integrating Dragon Ball Z-related information into your Swift projects.
https://github.com/rafaelesantos/dragon-ball-kit
api-client dragon-ball refds-shared swift swift-package-manager
Last synced: 5 days ago
JSON representation
DragonBallKit is a Swift Package Manager that provides a convenient interface for consuming data from the Dragon Ball API. This package simplifies the process of integrating Dragon Ball Z-related information into your Swift projects.
- Host: GitHub
- URL: https://github.com/rafaelesantos/dragon-ball-kit
- Owner: rafaelesantos
- License: mit
- Created: 2024-01-31T04:14:53.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-30T02:39:17.000Z (8 months ago)
- Last Synced: 2024-03-30T05:33:39.363Z (8 months ago)
- Topics: api-client, dragon-ball, refds-shared, swift, swift-package-manager
- Language: Swift
- Homepage:
- Size: 5.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dragon Ball Kit
DragonBallKit is a Swift Package Manager that provides a convenient interface for consuming data from the Dragon Ball API. This package simplifies the process of integrating Dragon Ball Z-related information into your Swift projects.
## Features
- [X] Retrieve information about characters, and plantes from the Dragon Ball API.
- [X] Easy-to-use Swift interface for seamless integration into your iOS or macOS applications.
- [X] Comprehensive documentation for quick reference and usage.
## InstallationAdd this project to your `Package.swift` file.
```swift
import PackageDescriptionlet package = Package(
dependencies: [
.package(url: "https://github.com/rafaelesantos/dragon-ball-kit.git", branch: "main")
],
targets: [
.target(
name: "YourProject",
dependencies: [
.product(
name: "RefdsShared",
package: "dragon-ball-kit"),
]),
]
)
```