Improve readme

This commit is contained in:
Ubujira 2022-05-13 16:30:23 +02:00
parent 64f4a0da88
commit b9fb712244
Signed by: Ubujira
GPG Key ID: 0AE21133AB421B0B
1 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,27 @@
# Galaxus-API
Small API for the web shops Galaxus and Digitec.
Small API for the web shops Galaxus and Digitec.
# Adding it to your project
#### Gradle
```gradle
repositories {
maven {
name 'ubujira'
url 'https://maven.ubujira.dev/'
}
}
dependencies {
implementation 'dev.ubujira:Galaxus-API:0.5.0'
}
```
# Usage
```java
GalaxusAPI galaxusAPI=new GalaxusAPI(Site.GALAXUS);
PriceHistory priceHistory=galaxusAPI.getPriceHistory(6329006);
```