Skip to main content

elliprof

ELLIPROF is an astronomical isophote-fitting tool for measuring the radial surface-brightness and shape profiles of galaxies. Given a FITS image and an initial galaxy centre, it fits a sequence of elliptical isophotes and measures, for each one, its intensity, centre, ellipticity, position angle, radial intensity slope, and the 3rd- and 4th-order harmonic deviations from a pure ellipse. It can also build a smooth model image of the galaxy from the fitted isophotes.

elliprof packages the original ELLIPROF Fortran, compiled unchanged, as a command-line program and a Python library.

Source code and issue tracker: https://github.com/ekourkchi/elliprof

What it is for

ELLIPROF is intended primarily for galaxy images. It is particularly useful for:

  • elliptical galaxies, smooth spheroidal systems and galaxy bulges, and other smooth light distributions;
  • surface-brightness profiles, and how ellipticity and position angle change with radius (isophote twists);
  • departures from pure elliptical isophotes, in particular the 4th-order term that characterizes boxy or disky isophotes.

It describes a galaxy as a set of nested ellipses, so it is not necessarily the best tool for irregular galaxies or strongly structured light (spiral arms, bars, dust lanes, bright clumps). Stars and other contaminants should be masked.

You supply the initial galaxy centre (X0, Y0). elliprof does not find the galaxy centre for you. Starting from your centre, ELLIPROF refines the centre of every isophote as part of its normal fit.

Installation

python -m pip install elliprof
  • Prebuilt wheels are provided for Linux, macOS and Windows.
  • No Fortran compiler and no separate CFITSIO installation are needed.

Check the installation:

elliprof            # a short introduction
elliprof -v         # version (also --version)
elliprof -h         # full help: parameters, options and examples (also --help)

Compatibility

Python and the operating system are separate requirements: a supported Python on an unsupported OS version still cannot install elliprof.

Supported Python: 3.6 through 3.14.

Supported macOS:

  • Intel (x86_64): macOS 10.13 High Sierra or newer
  • Apple Silicon (arm64): macOS 11 Big Sur or newer (the first macOS for Apple Silicon)

Supported Linux and Windows: see Platforms.

If pip says "No matching distribution found"

This message means pip found no elliprof build that fits your computer. The usual reasons are:

  • a Python older than 3.6,
  • an old pip that does not recognize current package names,
  • an operating system older than the minimum above,
  • a processor type with no elliprof build (for example 32-bit systems).

University and observatory computers often have an old Python or an old pip. First check what you have:

python --version
python -m pip --version
uname -m        # x86_64 = Intel, arm64 = Apple Silicon
sw_vers         # macOS only: the macOS version

On a Mac, Intel and Apple Silicon have different minimums: Intel needs macOS 10.13 or newer, Apple Silicon macOS 11 or newer.

If Python is 3.6–3.14, upgrade pip and try again:

python -m pip install --upgrade pip
python -m pip install elliprof

On Python 3.6, the newest pip is 21.3.1:

python -m pip install "pip==21.3.1"
python -m pip install elliprof

Very old pip versions do not recognize the platform tags of current wheels (pip 20.3 or newer is needed), and then report "No matching distribution found" even though a wheel exists.

If Python is older than 3.6, do not replace your system Python. Create a separate environment instead; this does not modify your existing astronomy environment. With conda:

conda create -n elliprof python=3.12 pip -y
conda activate elliprof
python -m pip install --upgrade pip
python -m pip install elliprof

Or, if a newer Python is already installed, with venv:

python3.12 -m venv elliprof-env
source elliprof-env/bin/activate
python -m pip install --upgrade pip
python -m pip install elliprof

(Python 3.12 is only an example; any version from 3.6 to 3.14 works.)

Several Pythons on one machine: prefer python -m pip install elliprof to pip install elliprof. On shared systems the pip command may belong to a different Python than the one you run. Naming the interpreter makes sure the package is installed for it:

python3.9 -m pip install elliprof
python3.12 -m pip install elliprof

NumPy 2 with an older Anaconda environment

If using elliprof prints messages such as "A module that was compiled using NumPy 1.x cannot be run in NumPy 2.x" or "_ARRAY_API not found", the problem is not elliprof. Its compiled part does not use NumPy. The messages come from older compiled packages already in that environment, usually numexpr or bottleneck, which pandas loads.

  • elliprof, elliprof -h, elliprof -v and command-line fits do not load pandas, so they are not affected.
  • The Python API returns the profile as a pandas table, so it needs pandas to work.

Update the old packages:

python -m pip install --upgrade numexpr bottleneck

(with Anaconda: conda update numexpr bottleneck). If they cannot be upgraded, go back to NumPy 1:

python -m pip install "numpy<2"

For a heavily aged environment, the safest solution is a fresh environment for elliprof (see above).

Quick start

elliprof galaxy.fits \
    X0=500 Y0=500 \
    R0=5 R1=200 NR=30 \
    --csv profile.csv \
    --reg profile.reg
  • X0, Y0: initial galaxy centre, in pixels (see Coordinates).
  • R0, R1: the range of semi-major axes to fit, in pixels (0 < R0 < R1).
  • NR: number of isophotes (2–100), including R0 and R1, spaced evenly in r^¼ by default (RLAW=1 for logarithmic, RLAW=0 for linear spacing).
  • profile.csv: the radial profile, one row per isophote.
  • profile.reg: the fitted ellipses as a DS9 region file. View them with ds9 galaxy.fits -regions profile.reg.

Profile files and the model image

elliprof produces two different kinds of result:

  • The profile (-o profile.prf, --csv profile.csv): numbers, one set per fitted isophote (radius, centre, intensity, position angle, ellipticity, harmonic terms, slope). The .prf is ELLIPROF's native profile format at full precision, with the run settings. It is a table of numbers, not an image. The CSV holds the same profile as a readable table.
  • The model image (MODEL -m model.fits): a 2-D FITS image of the galaxy reconstructed from the fitted isophotes. It follows the fitted intensity, centre, ellipticity and position angle with radius, plus the harmonic terms chosen with --model-harmonics. It is relative to the subtracted sky.
elliprof u12517j.fits --mask u12517j.dmask --sky 3246.0 \
    X0=567 Y0=562 R0=9 R1=347 NR=23 NITER=10 RMSTAR \
    MODEL -m u12517j_model.fits -o u12517j.prf

Subtracting the model from the sky-subtracted image shows the light the smooth isophotal model does not describe. That can reveal dust, embedded disks, shells or tidal features, and it is also where fitting problems show up. Both MODEL and -m are needed. The residual needs care in interpretation: it depends on the fit, the mask and the model settings.

Sky and masks

Subtract a constant sky level:

elliprof galaxy.fits \
    --sky 1234.5 \
    X0=500 Y0=500 \
    R0=5 R1=200 NR=30

Subtract a 2-D sky (background) image:

elliprof galaxy.fits \
    --sky-image background.fits \
    X0=500 Y0=500 \
    R0=5 R1=200 NR=30

Mask stars and defects (and subtract a sky image):

elliprof galaxy.fits \
    --mask mask.fits \
    --sky-image background.fits \
    X0=500 Y0=500 \
    R0=5 R1=200 NR=30
  • Mask values: 0 = bad / ignored, 1 = good. Legacy .dmask bitmaps (BITPIX = 1) are also read.
  • The mask and the sky image must have exactly the same dimensions as the science image; nothing is resized.
  • The image is prepared as (science − sky) × mask, and ELLIPROF ignores pixels that are exactly 0.

Harmonic terms: boxy and disky isophotes

Along each fitted ellipse, ELLIPROF fits the intensity with a constant plus cos/sin terms of 1, 2, 3 and 4 times the angle around the ellipse. The 1st- and 2nd-order terms move the centre and change the ellipticity and position angle until the ellipse follows the isophote. The 3rd- and 4th-order terms are always fitted and reported (I3, A3, I4, A4). They measure how the isophote departs from a pure ellipse, but they never change the ellipse itself.

The 4th-order term is the familiar measure of boxy or disky isophotes:

  • A4 near 0° (or 90°, which is the same phase): extra light along the major and minor axes, so the isophote is pointed along its axes: disky.
  • A4 near 45°: extra light along the diagonals: boxy.
  • I4 is the size of the deviation.

I4 is an intensity amplitude, not the conventional radial a4/a (and not B4). To first order, the conventional radial coefficient is

a4/a  ≈  I4 × cos(4 × A4) / (−slope)

This is positive for disky and negative for boxy isophotes. On synthetic galaxies with a4/a = ±0.030 it gives ±0.030.

Choosing which harmonic terms go into the model image

The original ELLIPROF controls the harmonics through COS3X and COS4X. These choose which measured terms are included when ELLIPROF builds a model image (MODEL, -m model.fits). They do not change the fitted profile. elliprof exposes them as options:

Option Model image contains ELLIPROF setting
(default) 3rd- and 4th-order terms, each isophote's own values COS3X=2 COS4X=2
--model-harmonics none pure ellipses, no harmonic terms COS3X=0 COS4X=0
--model-harmonics 3 3rd-order term only COS3X=2 COS4X=0
--model-harmonics 4 4th-order term only (boxy/disky shape) COS3X=0 COS4X=2
--model-harmonics 3,4 both (same as the default) COS3X=2 COS4X=2
add --harmonic-mode median the median of each term over all isophotes, instead of each isophote's own 1 instead of 2

Examples:

# model of pure ellipses
elliprof galaxy.fits X0=500 Y0=500 R0=5 R1=200 NR=30 \
    MODEL -m model.fits --model-harmonics none

# model with the boxy/disky (4th-order) structure only
elliprof galaxy.fits X0=500 Y0=500 R0=5 R1=200 NR=30 \
    MODEL -m model.fits --model-harmonics 4

Subtracting such a model from the image shows the structure that the chosen terms do not describe. For example, a residual made with the pure-ellipse model reveals boxy or disky light directly.

6th order instead of 3rd. --sixth-order (ELLIPROF's COS3X < 0) fits and models the 6th-order term in place of the 3rd. This is the only harmonic setting that changes the fit. The I3 and A3 columns then hold the 6th-order amplitude, and a phase equal to twice the 6th-order phase (0–120°).

elliprof galaxy.fits X0=500 Y0=500 R0=5 R1=200 NR=30 --sixth-order

The original keywords work too, for those who know them from the original program: COS3X= (−2 to 2) and COS4X= (0 to 2). Use either the keywords or the options, not both.

Python

from elliprof import run_elliprof

result = run_elliprof(
    image="galaxy.fits",
    x0=500,
    y0=500,
    r0=5,
    r1=200,
    nr=30,
)

print(result.profile)        # pandas DataFrame, one row per isophote

With a sky, a mask, and a model image that contains only the 4th-order harmonic term:

result = run_elliprof(
    image="galaxy.fits", x0=500, y0=500, r0=5, r1=200, nr=30,
    sky_image="background.fits", mask="mask.fits",
    model=True, model_harmonics=(4,),       # (), (3,), (4,) or (3, 4)
)
print(result.model_path)

harmonic_mode="median" and sixth_order=True correspond to the command-line options. cos3x= and cos4x= set the original ELLIPROF values directly. The command line and the Python API run exactly the same backend with the same settings.

python -m elliprof is the same as the elliprof command. A worked example on a real HST image is in examples/u12517 and notebooks/elliprof_example.ipynb.

The profile

One row per isophote (result.profile, the CSV file, and the .prf file):

Column Meaning
Rmaj semi-major axis a of the isophote (pixels)
x0, y0 fitted centre of the isophote (ELLIPROF coordinates, see below)
I0 intensity of the isophote, in image units after sky subtraction
alpha position angle of the major axis in degrees (0–180), counter-clockwise from the +y axis; the major axis lies at alpha + 90° counter-clockwise from +x
ellip ellipticity, 1 − b/a
I3, I4 amplitude of the 3rd- and 4th-order intensity variation along the isophote, as a fraction of I0
A3, A4 their phases in degrees: the intensity varies as cos(3(θ − A3)) and cos(4(θ − A4)), where θ is the angle around the ellipse (the eccentric angle), measured from the major axis. A3 is 0–120°, A4 is 0–90°. These are not the position angle.
slope logarithmic slope d ln I / d ln r, from neighbouring isophotes (set to −2 where it would be positive)

Coordinates

X0, Y0 and the fitted x0, y0 are in ELLIPROF image coordinates: the centre of the pixel in FITS column i is at x = i − 0.5. This is half a pixel less than FITS or DS9 pixel numbering. The DS9 region files are already converted.

Command-line reference

Keyword or option Python Meaning
X0= Y0= x0 y0 initial centre (required)
R0= R1= NR= r0 r1 nr radius range and number of isophotes (required)
--sky V sky subtract a constant
--sky-image F sky_image subtract an image
--mask F mask 0 = ignored, 1 = good
NITER= niter iterations (default 5, at most 1000); each one samples every isophote once, fits it and moves the ellipse towards the isophote
RLAW= rlaw radius spacing: 0 linear, 1 logarithmic, 2 r^¼ (default)
LINEAR linear fit intensities instead of log intensities
FIXCTR= fixctr 0 free centres (default), 1 fixed at X0/Y0, 2 median centre
ELLIP= ellip force this ellipticity
RMSTAR rmstar along each ellipse, ignore samples brighter than median + 4 × (upper quartile − median); rejects bright outliers point by point, so mask larger contaminants
MODEL, -m F model, model_path build a model image
--model-harmonics model_harmonics harmonic terms in the model (above)
--harmonic-mode harmonic_mode each (default) or median
--sixth-order sixth_order 6th- instead of 3rd-order term
COS3X= COS4X= cos3x cos4x the original harmonic settings
TIE= tie smooth the parameters with radius
AVG= avg average a (2n+1)² box when sampling
GAIN= gain iteration gain (default 1)
SCALE= scale arcsec/pixel, recorded in the profile
SKY= elliprof_sky sky used only in ELLIPROF's de Vaucouleurs fit (it does not change the image)
GC gc globular-cluster mode: circular annuli
-o F --csv F --reg F prf_path csv_path reg_path output files
--prepared F prepared write the prepared image (after sky and mask) as ELLIPROF fits it
--sc V – deprecated alias of --sky
--timeout S timeout stop a run after S seconds (default 1800; exit status 124)

OLD, EDIT and TV (interactive options) are not supported. Invalid input fails immediately with a clear message, and the program never waits for keyboard input. elliprof -h describes every parameter and option. elliprof -v prints the version, and elliprof --diagnostics prints version, platform and backend information for bug reports.

Platforms

Platform Status
Linux x86_64, aarch64 (manylinux_2_28) Supported
Linux ppc64le, s390x (manylinux_2_28) Supported (wheels tested under QEMU emulation)
Linux x86_64, aarch64 (musllinux_1_2, e.g. Alpine) Supported
macOS 10.13+ x86_64 (Intel) Supported
macOS 11+ arm64 (Apple Silicon) Supported
Windows x86_64 Supported
Linux riscv64 (manylinux_2_39) Experimental: the wheel builds, but its tests have not completed
Windows ARM64 Experimental: no wheel (no GNU Fortran toolchain yet)

Python 3.6 to 3.14. The Intel macOS wheel is built for macOS 10.13 throughout: the program, its CFITSIO, and the bundled Fortran runtime libraries. Supported means the wheel was installed and passed the installed-wheel and regression tests in a clean environment without a compiler or CFITSIO. On ppc64le and s390x, PyPI has no numpy or pandas wheels, so install those from your Linux distribution or conda. 32-bit systems, Intel Macs older than macOS 10.13, and Apple Silicon Macs older than macOS 11 are not supported.

Development

brew install gcc cfitsio                  # or: apt install gfortran libcfitsio-dev
python -m pip install -e ".[test]"
make check                                # build and run all tests

The original numerical sources in src/original/ and include/ are never modified, and their SHA-256 hashes are checked on every test run. The test plan is in tests/TEST_PLAN.md.

Known limitations:

  • NR ≤ 100.
  • Isophotes smaller than about 3 pixels have too few samples.
  • GC mode assumes images at most 2048 pixels on a side.
  • The model image is written relative to the subtracted sky.
  • With --sixth-order in the default each mode, the original code can leave a few NaN pixels at the very centre of the model image, inside the innermost isophote.

Historical note: ELLIPROF was originally developed by John Tonry as part of MONSTA.

Maintained by Ehsan Kourkchi (Edwin Kay) Email: ekourkchi@gmail.com

License: MIT for the elliprof package code (see LICENSE). The original ELLIPROF sources and bundled libraries keep their own terms (see THIRD_PARTY_NOTICES.md).

Disclaimer. This software is provided as-is, without warranty of any kind. The maintainer is not responsible for software errors, incorrect scientific results, data loss, or decisions made using results produced by this software. Users are responsible for independently validating results for their scientific application.

Release files for elliprof 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for elliprof 0.1.2
File
elliprof-0.1.2-py3-none-win_amd64.whl Python 3 none Windows x86-64 Details
elliprof-0.1.2-py3-none-musllinux_1_2_x86_64.whl Python 3 none Linux musl 1.2+ x86-64 Details
elliprof-0.1.2-py3-none-musllinux_1_2_aarch64.whl Python 3 none Linux musl 1.2+ ARM64 Details
elliprof-0.1.2-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl Python 3 none Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
elliprof-0.1.2-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl Python 3 none Linux glibc 2.28+ IBM System/390x, Linux glibc 2.27+ IBM System/390x Details
elliprof-0.1.2-py3-none-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl Python 3 none Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.27+ PowerPC 64-le Details
elliprof-0.1.2-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl Python 3 none Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
elliprof-0.1.2-py3-none-macosx_11_0_arm64.whl Python 3 none macOS 11.0+ ARM64 Details
elliprof-0.1.2-py3-none-macosx_10_13_x86_64.whl Python 3 none macOS 10.13+ x86-64 Details

Total release size: 16.1 MB

Release files / elliprof-0.1.2-py3-none-win_amd64.whl

Download URL elliprof-0.1.2-py3-none-win_amd64.whl
Size 2.5 MB
Tags Python 3 Windows x86-64
SHA-256 checksum
How to use checksums
d234f2cae45cbe6ff6f55c6f08fb7add724baaecff28ec504e82aebb6a39019b
BLAKE2b-256 checksum
How to use checksums
a14a9f3994c1ea9ee1161eac69fb40ba842967e9cb6935361208f15de613a46f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-musllinux_1_2_x86_64.whl

Download URL elliprof-0.1.2-py3-none-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags Linux musl 1.2+ x86-64 Python 3
SHA-256 checksum
How to use checksums
7f9d8cb399d2c96d01f43cc478e677885ac5c813c005375272caa6073ad81d2a
BLAKE2b-256 checksum
How to use checksums
adcbba1ff612631cfcd630cf763ca949f287a47e6325ca668fc276734c7f4dbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-musllinux_1_2_aarch64.whl

Download URL elliprof-0.1.2-py3-none-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags Linux musl 1.2+ ARM64 Python 3
SHA-256 checksum
How to use checksums
4505afc478c7b224612f1bb84239b0cfac008bc5f618c9cf80ec99e6c2883060
BLAKE2b-256 checksum
How to use checksums
d581a751719fe7bb6437ee91a015878f89a1770ee0693484f8b82206e3ca6b9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL elliprof-0.1.2-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 1.8 MB
Tags Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 Python 3
SHA-256 checksum
How to use checksums
6a393473a4562be62f151fc9f4bee175b3d3f31e1eedbb196a7d8aafc4a71471
BLAKE2b-256 checksum
How to use checksums
3ebea7080d1cf5408b703e75d75a2997ca3606ea86f3229cd3b12411ebf2352e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl

Download URL elliprof-0.1.2-py3-none-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Size 1.5 MB
Tags Linux glibc 2.27+ IBM System/390x Linux glibc 2.28+ IBM System/390x Python 3
SHA-256 checksum
How to use checksums
784cfbf6fa2b3b94a57a0d21988d85a3525758de6251fbc31e9bc67a6d663cc4
BLAKE2b-256 checksum
How to use checksums
91c10074ed0408fee1abb0effa4098bb3eb5cbb2fb507251c5b453f990a52004
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl

Download URL elliprof-0.1.2-py3-none-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Size 1.7 MB
Tags Linux glibc 2.27+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le Python 3
SHA-256 checksum
How to use checksums
6179d0adfccf6b64404fb2c0893f21bdb615a58718201aa23185cf0d43eb17a9
BLAKE2b-256 checksum
How to use checksums
6986872961aa4a3aa4b537e79dd8fa8818a5179c2ec3800b25e6defee1d59dee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL elliprof-0.1.2-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 Python 3
SHA-256 checksum
How to use checksums
47dab0526e0aa7d7e93d3d7f1a85ed2563ff362a49b6af6fea48f1d1d1b3d288
BLAKE2b-256 checksum
How to use checksums
850c21d60656269c4cf3de47fe180169ab2c8e5fe94fa4effc7b138ef2edebf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-macosx_11_0_arm64.whl

Download URL elliprof-0.1.2-py3-none-macosx_11_0_arm64.whl
Size 1.5 MB
Tags Python 3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fa5ce7edfdcb160f6ffd0b43964977b6fbf331ac7f2d410bbb553d49355be250
BLAKE2b-256 checksum
How to use checksums
5ac096ee90a93f531887d4687c5edeb97aab49a7517506e7a197339a9478e218
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / elliprof-0.1.2-py3-none-macosx_10_13_x86_64.whl

Download URL elliprof-0.1.2-py3-none-macosx_10_13_x86_64.whl
Size 2.2 MB
Tags Python 3 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
86a7a5a19cb230e2c7738cb78c1507c22e0285ea4cdc297d2e2920331a59f226
BLAKE2b-256 checksum
How to use checksums
238d9353b5b2b8c436fe88746eda8cacf3ec78caf2b33b3e540a1e10170dddb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

0.1.3

9 release files

This release

0.1.2 This release

9 release files

0.1.1

9 release files

0.1.0

9 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page