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
- Host: GitHub
- URL: https://github.com/lmackenzie94/wikiluke-random-word-py
- Owner: lmackenzie94
- Created: 2020-07-09T19:47:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-10T01:37:26.000Z (almost 6 years ago)
- Last Synced: 2025-06-03T23:11:09.738Z (about 1 year ago)
- Topics: flask
- Language: Python
- Homepage:
- Size: 4.13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```