1""".. Ignore pydocstyle D400.
2
3=========
4Constants
5=========
6
7ReSDK constants.
8
9"""
10
11CHUNK_SIZE = 8000000  # 8MB
12
13RESOLWE_DATETIME_FORMAT = "%Y-%m-%dT%H:%M:%S.%f"
14
15# Permissions here should be ordered from most to least important
16ALL_PERMISSIONS = ["owner", "share", "edit", "view", "none"]
17