An open API service indexing awesome lists of open source software.

https://github.com/lmackenzie94/wikiluke-random-word-py

A simple Flask app that hits the '/words/random' route of my Express API and displays the random word
https://github.com/lmackenzie94/wikiluke-random-word-py

flask

Last synced: 2 months ago
JSON representation

A simple Flask app that hits the '/words/random' route of my Express API and displays the random word

Awesome Lists containing this project

README

          

# Random Word
- uses Flask to define a route
- uses the requests module to hit my Express API route for a random word

### local build/tag/push to DockerHub
```curl
docker build -t random-word .
docker tag random-word lukemackenzie/random-word
docker push lukemackenzie/random-word
```