Galaxus-API/README.md

27 lines
433 B
Markdown
Raw Normal View History

2022-05-13 16:17:30 +02:00
# Galaxus-API
2022-05-13 16:30:23 +02:00
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);
```