Products.CMFCore is the core package of the Zope Content Management Framework (CMF), providing fundamental components like portal tools, actions, and member data. Current version is 3.9, requiring Python >= 3.10. Release cadence is irregular, tied to Zope's maintenance cycle.
pip install products-cmfcoreNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Standard usage within a Zope environment: obtain the portal object and use getToolByName to access a CMF tool.
Port code to Python 3.10+ and ensure Zope 4+ or 5.
Use getToolByName(portal, 'portal_membership') instead of importing MembershipTool directly.
Use fully qualified imports: from Products.CMFCore import ...