Skip to content

Archive a project#

Archiving projects is a feature of the new pricing model. You can't archive projects on the academia plan or on plans that are based on logging hours.

If you no longer want a project to be active, you can archive it.

While the project is archived:

  • You cannot view the project contents in the web app (like the runs table, comparison dashboards, or any other metadata).
  • You cannot add or modify data.

However, all of the metadata contained within the project will remain accessible via API in read-only mode.

Fetching metadata of an archived project in read-only mode
import neptune

run = neptune.init_run(
    project="your-workspace/some-archived-project",
    with_id="RUN-18",
    mode="read-only",
)

run["datasets"].download()

Unarchiving a project#

If your quota of active projects allows it, you can unarchive a project. Once it's reactivated, you can log to it normally.

  • Your maximum number of simultaneously active projects is managed by your workspace admin. If your limit is reached, you need to upgrade your subscription or archive another project first.
  • Free plans are limited to one active project at a time.

Related