https://github.com/fuglede/femina
Femina horoscope parser.
https://github.com/fuglede/femina
hacktoberfest horoscopes
Last synced: about 1 year ago
JSON representation
Femina horoscope parser.
- Host: GitHub
- URL: https://github.com/fuglede/femina
- Owner: fuglede
- Created: 2019-05-04T20:38:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T14:05:46.000Z (over 5 years ago)
- Last Synced: 2025-02-24T01:39:48.719Z (over 1 year ago)
- Topics: hacktoberfest, horoscopes
- Language: Rust
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Femina horoscope parser
Parser for [Femina's](https://www.femina.dk/) Danish daily horoscopes. The application reads the horoscopes and exposes them through a [Rocket](https://rocket.rs/) server. From there, you can use the horoscopes as part of your favorite system, e.g. a login script, an IRC chatbot, or something equally useful.
## Example usage
Running the server locally:
```
$ rustup override set nightly && cargo run
$ curl localhost:8000/krebs
Dagen bliver alt andet end kedelig, især hvis du vælger at slutte dig til fællesskabet med gode venner. Husk at bryde op mens legen er god.
```
Alternatively, you can grab it from Docker Hub:
```
$ docker run -d -p 8000:8000 fuglede/femina
$ curl localhost:8000/krebs
Dagen bliver alt andet end kedelig, især hvis du vælger at slutte dig til fællesskabet med gode venner. Husk at bryde op mens legen er god.
```