Using Requests and Beautiful Soup, with the most recent Beautiful Soup 4 docs.
Install our tools (preferably in a new virtualenv):
pip install beautifulsoup4
| #!/usr/bin/env python | |
| import sys, paramiko | |
| if len(sys.argv) < 5: | |
| print "args missing" | |
| sys.exit(1) | |
| hostname = sys.argv[1] | |
| password = sys.argv[2] |
Using Requests and Beautiful Soup, with the most recent Beautiful Soup 4 docs.
Install our tools (preferably in a new virtualenv):
pip install beautifulsoup4
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| # Sript to look for images with key-value pairs in Original Metadata | |
| # See https://www.openmicroscopy.org/community/viewtopic.php?f=4&t=1226 | |
| import omero | |
| import omero.scripts as scripts | |
| from omero.gateway import BlitzGateway | |
| from omero.rtypes import * |
Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
| $ redis-cli | |
| > config set stop-writes-on-bgsave-error no |
| /* | |
| * L.SingleTile uses L.ImageOverlay to display a single-tile WMS layer. | |
| * url parameter must accept WMS-style width, height and bbox. | |
| */ | |
| L.SingleTile = L.ImageOverlay.extend({ | |
| defaultWmsParams: { | |
| service: 'WMS', | |
| request: 'GetMap', | |
| version: '1.1.1', |
| goog.provide('L.SingleTileWMSLayer'); | |
| goog.require('L.Map'); | |
| L.SingleTileWMSLayer = L.ImageOverlay.extend({ | |
| defaultWmsParams: { | |
| service: 'WMS', | |
| request: 'GetMap', | |
| version: '1.1.1', |
| // hacked together aperio support | |
| (function( $ ){ | |
| /** | |
| * A client implementation of the Aperio ImageServer Format | |
| * | |
| * @class | |
| * @extends OpenSeadragon.TileSource | |
| * @param {Number|Object} width - the pixel width of the image or the idiomatic |