Syncsketch

Latest version: v1.0.11.1

Safety actively analyzes 723217 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 6

3.8

3.6

2.7.14

1.0.11.1

We introduced f-strings in the last release which broke python 2.7. This is a patch to fix this.

1.0.11.0

Add new method

python
s.upload_file(
review_id,
filepath,
file_name="",
item_uuid=None,
noConvertFlag=False,
chunk_size=5 * 1024 * 1024,
max_workers=None,
)


This will use the same multi-part s3 uploads as our main website! This method has no filesize limit like our add_media_v2() method. We encourage everyone to switch to this.

1.0.10.6

We now have methods to interact with sections within a review.

Sections are a great way to group items in a review.

Docs here: https://syncsketch.github.io/python-api/#syncsketch.SyncSketchAPI.create_review_section

Example code


from syncsketch import SyncSketchAPI
s = SyncSketchAPI(your_username, your_api_key)

s.create_review_section(review_id, "section name", [item_id_1, item_id_2])
s.update_review_sections(review_id, [{"uuid": section_uuid, "name": "new api name", "itemIds": [item_id_1, item_id_2]}])
s.delete_review_section(review_id, section_uuid)


Other updates:

Thanks to https://github.com/matija-tomazic for the two PRs:

1. Add raw response option to all methods - https://github.com/syncsketch/python-api/pull/20
2. Add option to specify response fields - https://github.com/syncsketch/python-api/pull/21

Page 1 of 6

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.