Mirror of ayon core so that FrameWork can fork it.
Find a file
2019-02-07 17:01:54 +01:00
pype fix standin updating 2019-02-07 17:01:54 +01:00
res cleanup conflicts with CB code 2019-01-28 22:59:57 +01:00
setup adding onScriptSave to synchronize avalon writes to script version 2018-12-06 19:02:37 +01:00
.flake8 added support for flake8 2018-11-22 12:43:07 +01:00
.gitignore adding pyblish plugins from kredenc 2018-10-03 19:06:08 +02:00
LICENSE rebase to initialisation branch 2018-09-15 17:52:29 +02:00
README.md initial commit 2018-09-13 15:11:59 +02:00

The base studio config for Avalon


This configuration acts as a starting point for all pype club clients wth avalon deployment.

Code convention

Below are some of the standard practices applied to this repositories.

  • Etiquette: PEP8
    • All code is written in PEP8. It is recommended you use a linter as you work, flake8 and pylinter are both good options.
  • Etiquette: Napoleon docstrings
    • Any docstrings are made in Google Napoleon format. See Napoleon for details.
  • Etiquette: Semantic Versioning
  • Etiquette: Underscore means private
    • Anything prefixed with an underscore means that it is internal to wherever it is used. For example, a variable name is only ever used in the parent function or class. A module is not for use by the end-user. In contrast, anything without an underscore is public, but not necessarily part of the API. Members of the API resides in api.py.
  • API: Idempotence
    • A public function must be able to be called twice and produce the exact same result. This means no changing of state without restoring previous state when finishing. For example, if a function requires changing the current selection in Autodesk Maya, it must restore the previous selection prior to completing.