Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ History

All release highlights of this project will be documented in this file.

4.4.13 - June 04, 2023
_______________________

**Updated**

- ``SAClient.download_annotations()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`.
- ``SAClient.set_approval_statuses()`` Added Document project support.
- ``SAClient.convert_project_type()`` Added required argument `convert_to`.
- ``SAClient.import_annotation()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`.
- ``SAClient.download_export()`` Replaced `___objects.json` and `___pixel.json` postfixes to `.json`.

**Removed**

- ``SAClient.convert_json_version()`` method.

4.4.12 - April 23, 2023
_______________________

Expand Down
14 changes: 12 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,18 @@ Authentication
# by token
sa_client = SAClient(token='<team token>')
# by config file
# default path is ~/.superannotate/config.json
sa_client = SAClient(config_path='~/.superannotate/dev_config.json')
# default path is ~/.superannotate/config.ini
sa_client = SAClient(config_path='~/.superannotate/dev_config.ini')


config.ini example
---------------
.. code-block:: python

[DEFAULT]
SA_TOKEN = <Token>
LOGGING_LEVEL = INFO


Using superannotate
-------------------
Expand Down