Projects

A project is a basic organizational unit of MaxCompute, which is similar to a database.

Call the member function of ODPS entry project, get_project, to obtain a project, as shown in the following code:

project = o.get_project('my_project')  # get project object by name
project = o.get_project()              # get default project

If parameters are not input, the default project will be returned.

You can call exist_project to check whether a project exists.