TheTurkeyDev / NHLStatsAPI-Java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 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

<repository>
	<id>turkey-repo</id>
    <name>TheProgrammingTurkey Repo</name>
    <url>http://maven.theprogrammingturkey.com</url>
</repository>
<dependency>
	<groupId>com.theprogrammingturkey.nhlapi</groupId>
	<artifactId>NHLAPI-Java</artifactId>
	<version>(versionNumber)</version>
</dependency>

Gradle

repositories {
	maven{
		name "NHLAPI"
		url "http://maven.theprogrammingturkey.com"
	}
}

dependencies {
	compile "com.theprogrammingturkey.nhlapi:NHLAPI-Java:(versionNumber)"
}

Examples

See Examples 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 for versioning. For the versions available, see the tags on this repository.

Authors

  • Ryan Turk (A.K.A TheTurkeyDev) - Initial work - Github

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

Thank you to NHL.com for having all of these stats available to everyone!

About

License:MIT License


Languages

Language:Java 100.0%