darwin-py icon indicating copy to clipboard operation
darwin-py copied to clipboard

Library and commandline tool for managing datasets on darwin.v7labs.com

Results 58 darwin-py issues
Sort by recently updated
recently updated
newest added

Helps control excessive warning messages being printed.

community-contribution

This Pull Request refers to the following issue: [https://github.com/v7labs/darwin-py/issues/412](https://github.com/v7labs/darwin-py/issues/412) The idea is that the COCO importer appends the attributes defined for each annotation. The attributes should be defined inside the...

community-contribution

Implemented support for the next type of command `darwin dataset report tracker_01 tracker_02 tracker_03` Also added ability to show generating report progress ```bash darwin dataset report --verbose tracker_01 tracker_02 tracker_03...

community-contribution

Command `darwin dataset report ${dataset}` generate wrong csv data when `first_name` or `last_name` contains cyrillic text. ![image](https://user-images.githubusercontent.com/3104366/170786970-0de6d8eb-c9e2-40b0-ac10-97add407b212.png) After current fix ![image](https://user-images.githubusercontent.com/3104366/170787418-ba9b6f7a-8e34-4abd-ab12-c05986c3f2ed.png)

community-contribution

Added ability to print only dataset names to stdout. This feature is useful for processing program execution results in bash scripts.

community-contribution

Hi all, Since version `0.7.16`, `jsonschema` [has been pinned to 3.2.0](https://github.com/v7labs/darwin-py/commit/3c57d6622ba5b6fc41babf4a2629c1157e74c7ac) which causes a version conflict with other package ([asdf](https://github.com/asdf-format/asdf/blob/master/pyproject.toml#L23)) in our stack that relies on `jsonschema>=4.0`. Is it possible...

Any Python project depending on `darwin-py` and `jsonschema` simultaneously is forced to use `jsonschema==3.2.0` if the version is pinned by `darwin-py`. This is causing trouble as my project requires jsonschema...