Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theturkeydev/nhlstatsapi-java
https://github.com/theturkeydev/nhlstatsapi-java
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/theturkeydev/nhlstatsapi-java
- Owner: TheTurkeyDev
- License: mit
- Created: 2018-02-07T05:47:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-01-26T02:48:28.000Z (almost 4 years ago)
- Last Synced: 2024-10-15T07:08:36.925Z (2 months ago)
- Language: Java
- Size: 541 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NHL Stats API Java
This API allows users to access NHL.com's complete stats compilation and database
You can also check out [this repository](https://github.com/dword4/nhlapi) for a more complete and condensed list of api endpoints
## Getting Started
You can link the api to your project via Gradle or maven by finding the lastest version and linking it
http://maven.theprogrammingturkey.com/index.php?dir=com%2Ftheprogrammingturkey%2Fnhlapi%2FNHLAPI-Java
Maven
```turkey-repo
TheProgrammingTurkey Repo
http://maven.theprogrammingturkey.com```
```com.theprogrammingturkey.nhlapi
NHLAPI-Java
(versionNumber)```
Gradle
```
repositories {
maven{
name "NHLAPI"
url "http://maven.theprogrammingturkey.com"
}
}dependencies {
compile "com.theprogrammingturkey.nhlapi:NHLAPI-Java:(versionNumber)"
}
```## Examples
See [Examples](https://github.com/Turkey2349/NHLStatsAPI-Java/tree/master/examples/com/theprogrammingturkey/nhlapi) for examples running the API
## Contributing
Feel free to contribute to this project!
All that I ask is that you follow my formatting style as best as you can and also comment any public facing methods and code that isn't obvious.
Also please include a message in the pull request with why you made the changes that you did.## Versioning
I try to follow and use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/Turkey2349/NHLStatsAPI-Java/tags).
## Authors
* **Ryan Turk (A.K.A TheTurkeyDev)** - *Initial work* - [Github](https://github.com/theturkeydev)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## Acknowledgments
Thank you to NHL.com for having all of these stats available to everyone!