Skip to main content

Fast Python bindings for macmon with a bundled native library and no external runtime binaries

Project description

Fast Python bindings for macmon.

The wheel bundles the native library, so it installs and runs without separate external binaries.

Usage

Sampler.metrics() returns the current cumulative sample immediately. The caller is responsible for timing and timeout policy, so the library does not need its own async API.

import asyncio

from macmon import Sampler, soc_info


async def main() -> None:
    info = soc_info()
    print(info.chip_name)

    with Sampler() as sampler:
        while True:
            metrics = sampler.metrics()
            print(
                "board_w=%.2f cpu_usage=%.3f gpu_usage=%.3f"
                % (
                    metrics.power.board,
                    metrics.cpu_usage[0].usage if metrics.cpu_usage else 0.0,
                    metrics.gpu_usage[0].usage if metrics.gpu_usage else 0.0,
                )
            )
            await asyncio.sleep(1.0)


asyncio.run(main())

For a more complete example, see example.py.

Develop

Editable install

From the repository root:

make cmacmon
cd python
pip install -e .

Wheel

From the repository root:

make python_wheel

The repaired wheel is written to python/wheelhouse/.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

macmon_lib-0.7.2-cp39-abi3-macosx_11_0_arm64.whl (243.5 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

File details

Details for the file macmon_lib-0.7.2-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for macmon_lib-0.7.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb0e04fc4396ab1e556c486703dcb37410f2957568223458d518acda75812f97
MD5 a8fa1a5ea35bf2485351f1c334bc2a69
BLAKE2b-256 1dfd09ee138985f8e6480504da9c6ff16d551d488ecaf81cbb856d93785fea18

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