Hello, I am trying to add a layer to project with creation. (I work with several projects and use the same layer). Is is possible to upload a layer (layer.json that I downloaded from another project) with creation of new project?
I am creating a project this way:
from pycaprio import Pycaprio
client = Pycaprio(inception_host, authentication)
new_project = client.api.create_project(
project_name = "My_test_project",
creator_name = "My_name"
)
Hello, I am trying to add a layer to project with creation. (I work with several projects and use the same layer). Is is possible to upload a layer (
layer.jsonthat I downloaded from another project) with creation of new project?I am creating a project this way: