Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/acdha/microdata-extractor
Web interface to microdata.py: as simple as possible, possibly too simple
https://github.com/acdha/microdata-extractor
Last synced: about 1 month ago
JSON representation
Web interface to microdata.py: as simple as possible, possibly too simple
- Host: GitHub
- URL: https://github.com/acdha/microdata-extractor
- Owner: acdha
- License: other
- Created: 2013-05-17T17:14:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T21:32:04.000Z (3 months ago)
- Last Synced: 2024-10-14T17:55:20.472Z (3 months ago)
- Language: HTML
- Homepage: http://microdata-extractor.improbable.org/
- Size: 59.6 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTML5 Microdata Extractor
This is the bare minimum needed to expose https://github.com/edsu/microdata as a
running web service## Local operations
1. `pipenv install`
1. `pipenv run gunicorn microdata_extractor.wsgi:application`## Deployment
### Docker
1. `docker build -t microdata-extractor .`
1. Run the container mapping port 80 to somewhere useful: e.g. `docker run --rm -p 80:80 -i microdata-extractor`### Deployment on OpenShift
1. Enable Pipenv in the build environment: `oc set env bc/microdata-extractor ENABLE_PIPENV=1`
1. Start a build if necessary: `oc start-build microdata-extractor -n microdata-extractor`