nash

Results 43 comments of nash

Maybe we should make a module called `rec` or `recursive` to mark all the recursive functionalities explicitly as recursive. As an illustration: ``` python from osp.core.utils.rec import pretty_print, count ```

Is it possible to ask pico what version is installed? At the moment, it just says `emmo` but no information about the version appears.

Perhaps a natural future feature that is good to keep in mind is the support of versions. For example: `pico install [email protected]`

It seems to already work for FOAF, and for DCAT there are technical issues that are being addressed separately (e.g, #594). What is then left to do here?

For this we have the [`get_relationships_between`](https://github.com/simphony/osp-core/blob/71b05420c47eefc0d968985b6948a3b2d553e7b7/osp/core/utils/general.py#L349) method. I was thinking of something like `cuds.is_connected(rel=..., oclass=...)`

We may want to add a `depth` parameter to those functions

Would supporting this imply that we should implement `pip`- or `npm`-like solution for dependency management? Some complexities that we should consider: - The dependency depth is unbound - What should...