◐ Shell
reader mode source ↗
Skip to content
Permalink
base repository: scijava/scijava
base: 30cff48
...
head repository: scijava/scijava
  • 4 commits
  • 3 files changed
  • 1 contributor

Commits on Jun 3, 2026

  1. Add improved SciJava Ops Python gateway

    This commit adds an improved Python gateway contained
    in the ops-gateway.py file. This gateway resolves a
    usability bug where nested namespaces like
    "features.haralick.asm" are unreachable as the string
    "haralick.asm" is appended as an attribute to the gateway instead
    of the "haralick" namespace being added as an intermediate namespace.
    Attempting to access "haralick" fails as that attribute does not exist.
    Additionally this commit adds the scijava-ops-flim library to the
    gateway.
    
    Intended use cases/scenarios
      - A user can simply run `python -i ops-gateway.py` to obtain an
        actiave `ops` environment.
      - A user can copy the ops-gateway.py module into their own project and
        create an ops gateway for their own internal project use.
    elevans committed Jun 3, 2026
    Configuration menu
    809f4da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2762f80 View commit details
    Browse the repository at this point in the history
  3. Use a underscore instead of hyphen in module name

    The hyphen is not pythonic.
    elevans committed Jun 3, 2026
    Configuration menu
    Copy the full SHA
    Browse the repository at this point in the history
  4. Prevent ops gateway initialization on import

    The SciJava Ops gateway should only be initialized if
    the ops_gateway.py file is run as a script. The
    module should be importable without creating the gateway.
    elevans committed Jun 3, 2026
    Configuration menu
    Copy the full SHA
    3f66532 View commit details
    Browse the repository at this point in the history
Loading