Skip to main content

Plone content export / import support

Project description

Plone Logo

Plone Content Export and Import

Package supporting the export and import of content, principals, relations, translations, discussions, and redirects from and to a Plone site.

Introduction

This package is a slimmer version of the awesome collective.exportimport.

While collective.exportimport supports older Plone versions and Python 2, and also takes care of data conversion from Archetypes to Dexterity, this package focuses only on latest Plone and Python.

Documentation

plone.exportimport documentation

REST API Endpoints

This package provides REST API endpoints for exporting and importing site data via HTTP requests.

Export Endpoint

Export site data as a ZIP file.

Endpoint: POST /plone/@export

Permission: plone.exportimport.export (granted to Site Administrators by default)

Response: ZIP file containing all exported data (content, principals, relations, translations, discussions, redirects, portlets)

Example:

curl -X POST \
  -H "Authorization: Bearer <token>" \
  https://plone.example.com/plone/++api++/@export \
  -o export.zip

Import Endpoint

Import site data from a ZIP file.

Endpoint: POST /plone/@import

Permission: plone.exportimport.import (granted to Site Administrators by default)

Request: Multipart form data with file field containing the ZIP file

Response: JSON object with status and import report

Example:

curl \
  -H "Authorization: Bearer <token>" \
  -F "file=@export.zip" \
  https://plone.example.com/plone/++api++/@import

Response Example:

{
  "status": "success",
  "report": ["Principals imported: 5 principals", "Content imported: 12 items", "Relations imported: 3 relations", "..."]
}

Installation

[!IMPORTANT] This package supports sites running Plone version 6.0 and above.

[!IMPORTANT] This package is now included with Plone 6.1 and above by default.

If plone.exportimport is not yet available in your Plone installation, add it using pip.

pip install plone.exportimport

Contributing

See Contributing to Plone and [Contribute to Plone 6 core](Contribute to Plone 6 core) for general contributing policies and guidance.

The following sections specifically describe how to develop and contribute to plone.exportimport.

Setup

You need a working Python environment version 3.8 or later.

Install the dependencies and a development instance using the following command.

make install

Local environment Plone server

Start Plone, on port 8080, with the following command.

make start

Format code base

Format the code base with the following command.

make format

Run tests

Testing of this package is done with pytest and tox.

Run all tests with the following command.

make test

Run all tests, but stop on the first error and open a pdb session.

./bin/tox -e test -- -x --pdb

Run tests named TestUtilsDiscussions.

./bin/tox -e test -- -k TestUtilsDiscussions

License

The project is licensed under the GPLv2.

Changelog

2.0.1 (2026-05-19)

Bug fixes

  • Reset per-setter progress counter in ContentImporter so {setter}: Handled N items... reports the items handled by that setter instead of a cumulative count carried over from the previous setter. @ericof #92

Internal

  • Remove Python 3.8/3.9 compatibility imports for type hints. @mauritsvanrees
  • Update configuration files @plone

2.0.0 (2026-05-16)

Internal:

  • Make final release, no further changes.

2.0.0a2 (2026-02-09)

New features:

  • Add @export and @import REST API services. @davisagli #87

Bug fixes:

  • Fix an issue with plone.exportimport.utils.content.import_helpers.get_parent_from_item that would not return the parent of a Plone Site during functional tests. @ericof

2.0.0a1 (2025-11-26)

Breaking changes:

  • Replace pkg_resources namespace with PEP 420 native namespace. Support only Plone 6.2 and Python 3.10+. #3928

1.3.1 (2025-10-06)

New features:

  • Implement regular commits to reduce memory usage in larger import processes. @ericof #55

Internal:

  • Add a prefix to progress loggers. @ericof
  • Fix type annotations. @ericof
  • Import: Move plone.importer.principals to the top of the importers to be processed. @ericof

1.3.0 (2025-09-24)

New features:

  • Support export/import of user login_name @ewohnlich #69

Bug fixes:

  • Fix import of ordering inside folderish components. @ericof #60

Internal:

  • Update package metadata @ericof #78

1.2.1 (2025-09-05)

Bug fixes:

  • Fix export of remoteUrl to an internal page keeping the site url in the exported data. @ericof #73

1.2.0 (2025-08-14)

New features:

  • Support non-root PloneSite import/export [ewohnlich] #67

Bug fixes:

  • Export all paths in Posix format to support export-import across platforms [ewohnlich] #66

1.1.1 (2025-06-26)

Bug fixes:

  • Fix error getting parent object on Windows. @ewohnlich #64

1.1.0 (2025-03-11)

New features:

  • Report object creation during import using the plone-importer cli. Use --quiet to disable it. @ericof #54
  • Do not stop the import if an object parent is missing @ericof #56

Bug fixes:

  • Set site during plone-importer transaction commit. @ericof #52
  • Sort relations.json and translations.json so their contents are stable. @mauritsvanrees #57

1.0.0 (2025-01-31)

Bug fixes:

  • Export the raw value of rich text fields, instead of the transformed output. This fixes internal links in Classic UI based distributions. @mauritsvanrees #48
  • Fix traceback when translation group does not have the default language. @mauritsvanrees #50

Documentation:

1.0.0b1 (2025-01-23)

New features:

  • Include revisions only when passing --include-revisions. @mauritsvanrees #39

Bug fixes:

  • Export principals: sort groups, roles, and members. @mauritsvanrees #39
  • Import: update modification dates again at the end. The original modification dates may have changed. @mauritsvanrees #39
  • Do not export parent info. This information is no longer needed: during import, parents are now always found by path and not by UID. From now on, the import ignores any parent info that is set. @mauritsvanrees #39

1.0.0a8 (2024-10-11)

Bug fixes:

  • Use plone.app.discussion and plone.app.multilingual as optional dependencies. @davisagli #18
  • Include 'isReferencing' relations in import. @ksuess #32
  • Set constraints after setting local permissions on content [@ericof] #33
  • Export adds a newline at the end of all files. This matches the .editorconfig settings that we have in most Plone packages. [maurits] #35
  • Do not export or import translations when plone.app.multilingual is not available. [maurits] #35
  • Disallowlisted portlets were not imported when there was no accompanying change in the actual portlet list. [maurits] #35
  • Add a fixer for the allow_discussion key: this should only contain True or False when this is explicitly set on the object. [maurits] #35
  • Do not export or import discussions/comments when plone.app.discussion is not available. [maurits] #35
  • Renamed blacklisted_status key to blocked_status to be sensitive. We still read the old key for backwards compatibility. [maurits] #35

1.0.0a7 (2024-06-13)

New features:

  • Export / Import local permissions for each content [@ericof] #15

Bug fixes:

  • Fix plone.exportimport.utils.principals.members._run_as_manager function [@ericof] #29

1.0.0a6 (2024-06-10)

Bug fixes:

  • Allow granting roles other than Manager and Member to principals [@ericof] #25
  • Fix export of language for content [@sneridagh] #26

1.0.0a5 (2024-05-16)

Internal:

  • Fix list of test dependencies [@ericof]

1.0.0a4 (2024-05-15)

New features:

  • Add pre_deserialize_hooks to content import [@pbauer] #22

Bug fixes:

  • Reindex members of relations in case that they contain preview_image_links [sneridagh] #13
  • Avoid duplicating portlets registration during import [@ericof] #16

Internal:

  • Update plone/meta [@ericof] #20

1.0.0a3 (2024-05-02)

Bug fixes:

  • Fix importer by issuing a transaction commit [sneridagh] #9
  • Account for use case language is empty string [sneridagh] #10

1.0.0a2 (2024-04-18)

New features:

  • Support export/import of portlets if plone.app.portlets is installed. @davisagli #8

1.0.0a1 (2024-04-17)

New features:

  • Implement exporter and importer for content [@ericof] #1
  • Implement exporter and importer for members and groups [@ericof] #2
  • Implement exporter and importer for redirects [@ericof] #3
  • Implement exporter and importer for relations [@ericof] #4
  • Implement exporter and importer for translations [@ericof] #5
  • Implement exporter and importer for discussions [@ericof] #6

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plone_exportimport-2.0.1.tar.gz (203.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plone_exportimport-2.0.1-py3-none-any.whl (69.4 kB view details)

Uploaded Python 3

File details

Details for the file plone_exportimport-2.0.1.tar.gz.

File metadata

  • Download URL: plone_exportimport-2.0.1.tar.gz
  • Upload date:
  • Size: 203.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for plone_exportimport-2.0.1.tar.gz
Algorithm Hash digest
SHA256 8c80a7027aa284f1041b8ee704ae7f9799bfb0244e5b67aa365aa733996a9f04
MD5 c57a474aa53c67286d76cbb372aadb3b
BLAKE2b-256 c47b7d91771dbddfb24efdfd80342e42563685d75ee11d125679cbeb5f691c09

See more details on using hashes here.

File details

Details for the file plone_exportimport-2.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for plone_exportimport-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3f5a1afb7f0b19b3f2c9e9b163c904132e3f5d4325c79a7848b831a2f22b0c7c
MD5 72503cd1246ed9fb57329609ce47fefa
BLAKE2b-256 a6a919196affd3692b58a302041d0ec830ec23501e4ea529fc8addcf6d41fbec

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page