Registry / devops / freeze-core

freeze-core

JSON →
library0.6.1pypypi✓ verified 85d ago

Core dependency for cx_Freeze, providing shared utilities and hooks for building frozen executables. Current version 0.6.1, released on 2026-04-21. Active development with monthly or bimonthly releases.

pip install freeze-core
INSTALL
IMPORT
SIG · FREEZE-CORE
F
freeze-core
devopspythonv0.6.1
Install
2.7s avg
Import
117ms
Disk
51MB
Pass rate
8/ 10
Env Coverage8 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.6.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
glibc
py 3.10
✕ build_error
✓ 2.2s
py 3.11
✓ —
✓ 2.7s
py 3.12
✓ —
✓ 2s
py 3.13
✓ —
✓ 2s
py 3.9
✕ build_error
✓ 4.6s
51MB installed
● package 51MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

freeze_core
import freeze_core
import freeze-core
Hyphen in package name, underscore in import
freeze_core.Resource
from freeze_core import Resource
Public API for resources

Basic usage of freeze-core to list resources.

import freeze_core # Example: list resources for resource in freeze_core.Resource.list(): print(resource)
Debug
Known issues
gotchaPackage name with hyphen (freeze-core) vs import with underscore (freeze_core). Importing freeze-core instead of freeze_core raises ModuleNotFoundError.
fix
Use `import freeze_core`.
affects: all
gotchafreeze-core is a core dependency for cx_Freeze; it is not meant to be used directly in most applications. Using it as a standalone tool may result in incomplete functionality.
fix
Install cx_Freeze instead if you want to freeze applications; freeze-core is pulled automatically.
affects: all
breakingIn version 0.5.0, the internal module name changed, breaking direct imports of old internal modules like `freeze_core.old_module`.
fix
Use only public API from freeze_core top-level module.
affects: >=0.5.0
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'freeze-core'
Trying to import the package name with a hyphen.
fix
Use `import freeze_core` instead of `import freeze-core`.
ImportError: cannot import name 'Resource' from 'freeze_core' (unknown location)
Resource may not be available in older versions or is not part of public API.
fix
Check if the symbol exists in your version: `dir(freeze_core)`. For version >=0.5.0, use `from freeze_core import ...` as documented.
Upgrade
Version history
0.6.1latest on PyPI · released Mar 10, 2026
Audit
Dependencies
setuptoolsoptionalRequired for building and installing (implicit dependency)
Agent activity
6 hits · last 30 days
node
6
Resources
freeze-core — pip install freeze-core · libregistry