You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Python client for connection server. Client must be (at least for some time) Pyt
3
3
4
4
AYON Python api should support connection to server with raw REST functions and prepared functionality for work with entities. Must not contain only functionality that can be used with core server functionality.
5
5
6
-
Module support singleton connection which is using `AYON_SERVER_URL` and `AYON_TOKEN` environment variables as source for connection. The singleton connection is using `ServerAPI` object. There can be created multiple connection to different server at one time, for that purpose use `ServerAPIBase` object.
6
+
Module support singleton connection which is using `AYON_SERVER_URL` and `AYON_API_KEY` environment variables as source for connection. The singleton connection is using `ServerAPI` object. There can be created multiple connection to different server at one time, for that purpose use `ServerAPIBase` object.
7
7
8
8
## Install
9
9
AYON python api is available on PyPi:
@@ -49,8 +49,16 @@ If pip complain that `ayon-python-api` is already installed just uninstall exist
49
49
- Add all available CRUD operation on entities using REST
50
50
- Add folder and task changes to operations
51
51
- Enhance entity hub
52
+
- Missing docstrings in EntityHub -> especially entity arguments are missing
53
+
- Better order of arguments for entity classes
54
+
- Move entity hub to first place
55
+
- Skip those which are invalid for the entity and fake it for base or remove it from base
52
56
- Entity hub should use operations session to do changes
53
57
- Entity hub could also handle 'subset', 'version' and 'representation' entities
54
-
- Missing docstrings in EntityHub -> especially entity arguments are missing
55
-
- Pass docstrings and arguments definitions from `ServerAPI` methods to global functions
58
+
- Missing 'statuses' on project
59
+
- Missing 'status' on folders
60
+
- Missing assignees on tasks
61
+
- Pass docstrings and arguments definitions from `ServerAPI` methods to global functions
62
+
- Split `ServerAPI` into smaller chunks (somehow), the class has 4k+ lines of code
0 commit comments