This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import omero | |
from omero.gateway import BlitzGateway | |
from omero.sys import ParametersI | |
from omero.rtypes import rint | |
import requests | |
USERNAME = "root" | |
PASSWORD = "omero" | |
conn = BlitzGateway(USERNAME, PASSWORD, host="localhost", port=4064) | |
conn.connect() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id "java-library" | |
id "maven-publish" | |
id "org.openmicroscopy.project" version "5.5.0-SNAPSHOT" | |
id "org.openmicroscopy.dsl" version "5.5.0-SNAPSHOT" | |
id "io.spring.dependency-management" version "1.0.6.RELEASE" | |
} | |
group = "org.openmicroscopy" | |
version = "5.5.0-SNAPSHOT" |