Skip to main content

Nim extension for Python, example project

Project description

nym

https://img.shields.io/pypi/v/nym.svg https://img.shields.io/travis/gmagno/nym.svg Documentation Status

Nim extension for Python using nimporter, example project.

Usage

To install nym, run this command in your terminal:

$ pip install nym

To install from source:

$ git clone git@github.com:gmagno/nym.git && cd nym
$ python -m venv .venv
$ source .venv/bin/activate
$ pip install -U pip && pip install -r requirements_dev.txt
$ python -m nym.cli

To build:

$ make dist

To use nym:

from nym import fast, slow

start = time.time()
python_ret = slow.fib(33)
python_time = time.time() - start

restart = time.time()
nim_ret = fast.fib(33)
nim_time = time.time() - restart

print(f"python ret: {python_ret}")
print(f"python elapsed time: {python_time}")

print(f"nim ret: {nim_ret}")
print(f"nim elapsed time: {nim_time}")

History

0.1.1 (2022-05-14)

  • First release on PyPI.

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

nym-0.1.2.tar.gz (934.7 kB view hashes)

Uploaded Source

Built Distribution

nym-0.1.2-cp310-cp310-manylinux1_x86_64.whl (455.4 kB view hashes)

Uploaded CPython 3.10

Supported by

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