Skip to content

Track information about installed packages.

License

Notifications You must be signed in to change notification settings

christoph-blessing/compenv

 
 

Repository files navigation

compenv

compenv logo
Actions Status PyPI Code style: black

Track information about installed packages.

Install

pip install compenv

Usage

Decorate the auto-populated table on which you want to track the installed packages:

from compenv import record_environment
from datajoint import Computed, schema

schema = schema("my_schema")

@record_environment(schema)
class MyAutoPopulatedTable(Computed):
    ...

After populating the table you can view the generated records in the records table:

MyAutoPopulatedTable.records()

You can get a difference view between two records:

MyAutoPopulatedTable.records.diff(key1, key2)

About

Track information about installed packages.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Dockerfile 0.2%