diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-04-05 21:16:17 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-04-05 21:16:17 -0700 |
| commit | caed3a3e490ea5fa98dfdd767b0fb26018e28348 (patch) | |
| tree | c6deee990bdb52a1f26d3c28a4493d5568ddfe64 | |
| parent | 3057c2d512fb8d6503f199227005c9190ec3164c (diff) | |
| parent | f29e1845b7aac46de88a77111ef283d12c00c431 (diff) | |
Merge remote-tracking branch 'origin/main'
| -rw-r--r-- | .github/workflows/maven.yml | 2 | ||||
| -rw-r--r-- | LICENSE | 21 | ||||
| -rw-r--r-- | README.md | 20 |
3 files changed, 39 insertions, 4 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3bf28e8..5383bf9 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -6,7 +6,7 @@ # separate terms of service, privacy policy, and support # documentation. -name: Java CI with Maven +name: build on: push: @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Pinapelz + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. @@ -1,7 +1,11 @@ -# JHolodex -A mega scuffed Java Holodex Wrapper (cuz i might need one someday) -This is currently a work-in-progress +# JHolodex +[](https://jitpack.io/#pinapelz/JHolodex) +[](https://github.com/pinapelz/JHolodex/actions/workflows/maven.yml) + +A mega scuffed Java Holodex Wrapper (Currently a work in progress). Supports the GET Requests from [Holodex API](https://holodex.stoplight.io/). Objects are used to build queries if more than one path or parameter is used for the given request. + +## Usage ```java Holodex holodex = new Holodex("YOUR_API_KEY"); Channel channel = holodex.getChannel("UC4WvIIAo89_AzGUh1AZ6Dkg"); @@ -27,4 +31,14 @@ System.out.println(anotherVideo.channel.name + " uploaded a video titled " + ano " on " + anotherVideo.published_at); ``` +## Download +Maven +```xml +<dependency> + <groupId>com.github.pinapelz</groupId> + <artifactId>JHolodex</artifactId> + <version>VERSION_HERE</version> +</dependency> +``` + [Holodex License](https://docs.holodex.net/docs/holodex/8166fcec5dbe2-license) |
