Skip to main content

Feature extractor from noisy time series

Project description

light-curve processing toolbox for Python

The Python wrapper for Rust light-curve-feature and light-curve-dmdt packages which gives a collection of high-performant time-series feature extractors.

PyPI version testing pre-commit.ci status

Installation

python3 -mpip install 'light-curve[full]'

full extras would install the package with all optional Python dependencies required by experimental features. We also provide light-curve-python package which is just an "alias" to the main light-curve[full] package.

Minimum supported Python version is 3.7. We provide binary wheels via PyPi for a number of platforms and architectures, both for CPython and PyPy. We also provide binary wheels for stable CPython ABI, so the package is guaranteed to work with all future CPython3 versions.

Support matrix

Arch \ OS Linux glibc Linux musl macOS Windows https://github.com/light-curve/light-curve-python/issues/186
x86-64 wheel (MKL) wheel (MKL) wheel wheel (no Ceres, no GSL)
i686 src src not tested
aarch64 wheel wheel src https://github.com/light-curve/light-curve-python/issues/5 not tested
ppc64le wheel not tested (no Rust toolchain)
  • "wheel": binary wheel is available on pypi.org, local building is not required for the platform, the only pre-requirement is a recent pip version. For Linux x86-64 we provide binary wheels built with Intel MKL for better periodogram performance, which is not a default build option. For Windows x86-64 we provide wheel with no Ceres and no GSL support, which is not a default build option.
  • "src": the package is confirmed to be built and pass unit tests locally, but testing and package building is not supported by CI. It is required to have the GNU scientific library (GSL) v2.1+ and the Rust toolchain v1.62+ to install it via pip install.
  • "not tested": building from the source code is not tested, please report us building status via issue/PR/email.

We build aarch64 macOS 12.0+ Python 3.8+ wheels locally and submit them running this command in light-curve directory:

rm -rf ./wheelhouse
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y
brew install gsl
CIBW_BUILD='cp3*-macosx_arm64' CIBW_ENVIRONMENT="MATURIN_PEP517_ARGS='--locked --no-default-features --features ceres-source,fftw-source,gsl'" CIBW_BEFORE_ALL='' python3 -mcibuildwheel --platform macos
CIBW_BUILD='cp310-macosx_arm64' CIBW_ENVIRONMENT="MATURIN_PEP517_ARGS='--locked --no-default-features --features ceres-source,fftw-source,gsl,abi3'" CIBW_BEFORE_ALL='' python3 -mcibuildwheel --platform macos
twine upload wheelhouse/*.whl

Feature evaluators

Most of the classes implement various feature evaluators useful for light-curve based astrophysical source classification and characterisation.

import light_curve as lc
import numpy as np

# Time values can be non-evenly separated but must be an ascending array
n = 101
t = np.linspace(0.0, 1.0, n)
perfect_m = 1e3 * t + 1e2
err = np.sqrt(perfect_m)
m = perfect_m + np.random.normal(0, err)

# Half-amplitude of magnitude
amplitude = lc.Amplitude()
# Fraction of points beyond standard deviations from mean
beyond_std = lc.BeyondNStd(nstd=1)
# Slope, its error and reduced chi^2 of linear fit
linear_fit = lc.LinearFit()
# Feature extractor, it will evaluate all features in more efficient way
extractor = lc.Extractor(amplitude, beyond_std, linear_fit)

# Array with all 5 extracted features
result = extractor(t, m, err, sorted=True, check=False)

print('\n'.join(f"{name} = {value:.2f}" for name, value in zip(extractor.names, result)))

# Run in parallel for multiple light curves:
results = amplitude.many(
    [(t[:i], m[:i], err[:i]) for i in range(n // 2, n)],
    n_jobs=-1,
    sorted=True,
    check=False,
)
print("Amplitude of amplitude is {:.2f}".format(np.ptp(results)))

If you're confident in your inputs you could use sorted = True (t is in ascending order) and check = False (no NaNs in inputs, no infs in t or m) for better performance. Note that if your inputs are not valid and are not validated by sorted=None and check=True (default values) then all kind of bad things could happen.

Print feature classes list

import light_curve as lc

print([x for x in dir(lc) if hasattr(getattr(lc, x), "names")])

Read feature docs

import light_curve as lc

help(lc.BazinFit)

Available features

See the complete list of available feature evaluators and documentation in light-curve-feature Rust crate docs.

Feature name Description Min data points Features number
Amplitude Half amplitude of magnitude:

$\displaystyle \frac{\max (m)-\min (m)}{2}$

1 1
AndersonDarlingNormal Unbiased Anderson–Darling normality test statistic:

$\displaystyle \left( 1+\frac{4}{N} -\frac{25}{N^{2}}\right) \times$

$\times \left( -N-\frac{1}{N}\sum\limits_{i=0}^{N-1} (2i+1)\ln \Phi _{i} +(2(N-i)-1)\ln (1-\Phi _{i} )\right) ,$

where $\Phi _{i\ } \equiv \Phi (( m_{i} \ -\ \langle m\rangle ) /\sigma _{m})$ is the commutative distribution function of the standard normal distribution, $N-$ the number of observations, $\langle m\rangle -$ mean magnitude and $\sigma _{m} =\sqrt{\sum\limits_{i=0}^{N-1}( m_{i} -\langle m\rangle )^{2} /( N-1) \ }$ is the magnitude standard deviation

4 1
BazinFit Five fit parameters and goodness of fit (reduced $\chi ^{2}$ of the Bazin function developed for core-collapsed supernovae:

$\displaystyle f(t)=A\frac{\mathrm{e}^{-(t-t_{0} )/\tau _{fall}}}{1+\mathrm{e}^{-(t-t_{0} )/\tau _{rise}}} +B,$

where $f(t)-$ flux observation
6 1
BeyondNStd Fraction of observations beyond $n\sigma _{m}$ from the mean magnitude $\langle m\rangle $:

$\displaystyle \frac{\sum _{i} I_{|m-\langle m\rangle | >n\sigma _{m}} (m_{i} )}{N},$

where $I-$ an indicator function
2 1
Cusum A range of cumulative sums:

$\displaystyle \max(S) -\min(S),$

where $S_{j} \equiv \frac{1}{N\sigma _{m}}\sum\limits _{i=0}^{j} (m_{i} -\langle m\rangle )$, $j\in \{1..N-1\}$
2 1
Eta Von Neummann $\eta $:

$\displaystyle \eta \equiv \frac{1}{(N-1)\sigma _{m}^{2}}\sum\limits _{i=0}^{N-2} (m_{i+1} -m_{i} )^{2}$

2 1
EtaE Modernisation of Eta for unevenly time series:

$\displaystyle \eta ^{e} \equiv \frac{(t_{N-1} -t_{0} )^{2}}{(N-1)^{3}}\frac{\sum\limits_{i=0}^{N-2}\left(\frac{m_{i+1} -m_{i}}{t_{i+1} -t_{i}}\right)^{2}}{\sigma _{m}^{2}}$

2 1
ExcessVariance Measure of the variability amplitude:

$\displaystyle \frac{\sigma _{m}^{2} -\langle \delta ^{2} \rangle }{\langle m\rangle ^{2}},$

where $\langle \delta ^{2} \rangle -$ mean squared error
2 1
InterPercentileRange

$\displaystyle Q(1-p)-Q(p),$

where $Q(n)$ and $Q(d)-$ $n$-th and $d$-th quantile of magnitude sample
1 1
Kurtosis Excess kurtosis of magnitude:

$\displaystyle \frac{N(N+1)}{(N-1)(N-2)(N-3)}\frac{\sum _{i} (m_{i} -\langle m\rangle )^{4}}{\sigma _{m}^{2}} -3\frac{(N+1)^{2}}{(N-2)(N-3)}$

4 1
LinearFit The slope, its error and reduced $\chi ^{2}$ of the light curve in the linear fit of a magnitude light curve with respect to the observation error $\{\delta _{i}\}$:

$\displaystyle m_{i} \ =\ c\ +\ \text{slope} \ t_{i} \ +\ \delta _{i} \varepsilon _{i} ,$

where $c$ is a constant, $\{\varepsilon _{i}\}$ are standard distributed random variables
3 3
LinearTrend The slope and its error of the light curve in the linear fit of a magnitude light curve without respect to the observation error $\{\delta _{i}\}$:

$\displaystyle m_{i} \ =\ c\ +\ \text{slope} \ t_{i} \ +\ \Sigma \varepsilon _{i} ,$

where $c$ and $\Sigma$ are constants, $\{\varepsilon _{i}\}$ are standard distributed random variables.
2 2
MagnitudePercentageRatio Magnitude percentage ratio:

$\displaystyle \frac{Q(1-n)-Q(n)}{Q(1-d)-Q(d)}$

1 1
MaximumSlope Maximum slope between two sub-sequential observations:

$\displaystyle \max_{i=0\dotsc N-2}\left| \frac{m_{i+1} -m_{i}}{t_{i+1} -t_{i}}\right|$

2 1
Mean Mean magnitude:

$\displaystyle \langle m\rangle =\frac{1}{N}\sum\limits _{i} m_{i}$

1 1
MeanVariance Standard deviation to mean ratio:

$\displaystyle \frac{\sigma _{m}}{\langle m\rangle }$

2 1
Median Median magnitude 1 1
MedianAbsoluteDeviation Median of the absolute value of the difference between magnitude and its median:

$\displaystyle \mathrm{Median} (|m_{i} -\mathrm{Median} (m)|)$

1 1
MedianBufferRangePercentage

$\displaystyle \mathrm{Median} (m)\pm q\times (\max (m)-\min (m))/2$

1 1
OtsuSplit Difference of subset means, standard deviation of the lower subset, standard deviation of the upper subset and lower-to-all observation count ratio for two subsets of magnitudes obtained by Otsu's method split.

Otsu's method is used to perform automatic thresholding. The algorithm returns a single threshold that separate values into two classes. This threshold is determined by minimizing intra-class intensity variance $\sigma^2_{W}=w_0\sigma^2_0+w_1\sigma^2_1$, or equivalently, by maximizing inter-class variance $\sigma^2_{B}=w_0 w_1 (\mu_1-\mu_0)^2$. There can be more than one extremum. In this case, the algorithm returns the minimum threshold.
2 4
PercentAmplitude Maximum deviation of magnitude from its median:

$\displaystyle \max_{i} |m_{i} \ -\ \text{Median}( m) |$

1 1
PercentDifferenceMagnitudePercentile Ratio of $p$-th inter-percentile range to the median:

$\displaystyle \frac{Q( 1-p) -Q( p)}{\text{Median}( m)}$

1 1
RainbowFit Seven fit parameters and goodness of fit (reduced $\chi ^{2}$). The Rainbow method is developed and detailed here : https://arxiv.org/abs/2310.02916). This implementation is suited for transient objects. It is based on a Bazin bolometric flux and a sigmoid temperature evolution:

$\displaystyle F_{\nu}(t, \nu) = \frac{\pi\,B\left(T(t),\nu\right)}{\sigma_\mathrm{SB}\,T(t)^{4}} \times F_\mathrm{bol}(t),$

where $F_{\nu}(t, \nu)-$ flux observation at a given wavelength
6 1
RainbowRisingFit Six fit parameters and goodness of fit (reduced $\chi ^{2}$). The Rainbow method is developed and detailed here : https://arxiv.org/abs/2310.02916). This implementation is suited for rising transient objects. It is based on a rising sigmoid bolometric flux and a sigmoid temperature evolution:

$\displaystyle F_{\nu}(t, \nu) = \frac{\pi\,B\left(T(t),\nu\right)}{\sigma_\mathrm{SB}\,T(t)^{4}} \times F_\mathrm{bol}(t),$

where $F_{\nu}(t, \nu)-$ flux observation at a given wavelength
6 1
ReducedChi2 Reduced $\chi ^{2}$ of magnitude measurements:

$\displaystyle \frac{1}{N-1}\sum _{i}\left(\frac{m_{i} -\overline{m}}{\delta _{i}}\right)^{2} ,$

where $\overline{m} -$ weighted mean magnitude
2 1
Skew Skewness of magnitude:

$\displaystyle \frac{N}{(N-1)(N-2)}\frac{\sum _{i} (m_{i} -\langle m\rangle )^{3}}{\sigma _{m}^{3}}$

3 1
StandardDeviation Standard deviation of magnitude:

$\displaystyle \sigma _{m} \equiv \sqrt{\sum _{i} (m_{i} -\langle m\rangle )^{2} /(N-1)}$

2 1
StetsonK Stetson K coefficient described light curve shape:

$\displaystyle \frac{\sum _{i}\left| \frac{m_{i} -\langle m\rangle }{\delta _{i}}\right| }{\sqrt{N\ \chi ^{2}}}$

2 1
VillarFit Seven fit parameters and goodness of fit (reduced $\chi ^{2}$) of the Villar function developed for supernovae classification:

$f(t)=c+\frac{A}{1+\exp\frac{-(t-t_{0} )}{\tau _{rise}}} \times f_{fall}(t),$

$f_{fall}(t) = 1-\frac{\nu (t-t_{0} )}{\gamma }, ~~~ t< t_{0} +\gamma,$

$f_{fall}(t) = (1-\nu )\exp\frac{-(t-t_{0} -\gamma )}{\tau _{fall}}, ~~~ t \geq t_{0} + \gamma.$

where $f(t) -$ flux observation, $A, \gamma , \tau _{rise} , \tau _{fall} >0$, $\nu \in [0;1)$

Here we introduce a new dimensionless parameter $\nu$ instead of the plateau slope $\beta$ from the original paper: $\nu \equiv -\beta \gamma /A$
8 8
WeightedMean Weighted mean magnitude:

$\displaystyle \overline{m} \equiv \frac{\sum _{i} m_{i} /\delta _{i}^{2}}{\sum _{i} 1/\delta _{i}^{2}}$

1 1

Meta-features

Meta-features can accept other feature extractors and apply them to pre-processed data.

Periodogram

This feature transforms time-series data into the Lomb-Scargle periodogram, providing an estimation of the power spectrum. The peaks argument corresponds to the number of the most significant spectral density peaks to return. For each peak, its period and "signal-to-noise" ratio are returned.

$$ \text{signal to noise of peak} \equiv \frac{P(\omega_\mathrm{peak}) - \langle P(\omega) \rangle}{\sigma_{P(\omega)}} $$

The optional features argument accepts a list of additional feature evaluators, which are applied to the power spectrum: frequency is passed as "time," power spectrum is passed as "magnitude," and no uncertainties are set.

Bins

Binning time series to bins with width $\mathrm{window}$ with respect to some $\mathrm{offset}$. $j-th$ bin boundaries are $[j \cdot \mathrm{window} + \mathrm{offset}; (j + 1) \cdot \mathrm{window} + \mathrm{offset}]$.

Binned time series is defined by $$t_j^* = (j + \frac12) \cdot \mathrm{window} + \mathrm{offset},$$ $$m_j^* = \frac{\sum{m_i / \delta_i^2}}{\sum{\delta_i^{-2}}},$$ $$\delta_j^* = \frac{N_j}{\sum{\delta_i^{-2}}},$$ where $N_j$ is a number of sampling observations and all sums are over observations inside considering bin.

Multi-band features

As of v0.8, experimental extractors (see below), support multi-band light-curve inputs.

import numpy as np
from light_curve.light_curve_py import LinearFit

t = np.arange(20, dtype=float)
m = np.arange(20, dtype=float)
sigma = np.full_like(t, 0.1)
bands = np.array(["g"] * 10 + ["r"] * 10)
feature = LinearFit(bands=["g", "r"])
values = feature(t, m, sigma, bands)
print(values)

Rainbow Fit

Rainbow (Russeil+23) is a black-body parametric model for transient light curves. It uses Bazin function as a model for bolometric flux evolution and a logistic function for the temperature evolutiion. This example demonstrates the reconstruction of a syntetic light curve with this model. RainbowFit requires iminuit package and Python 3.8+.

import numpy as np
from light_curve.light_curve_py import RainbowFit

def bb_nu(wave_aa, T):
    """Black-body spectral model"""
    nu = 3e10 / (wave_aa * 1e-8)
    return 2 * 6.626e-27 * nu**3 / 3e10**2 / np.expm1(6.626e-27 * nu / (1.38e-16 * T))

# Effective wavelengths in Angstrom
band_wave_aa = {"g": 4770.0, "r": 6231.0, "i": 7625.0, "z": 9134.0}

# Parameter values
reference_time = 60000.0  # time close to the peak time
# Bolometric flux model parameters
amplitude = 1.0  # bolometric flux semiamplitude, arbitrary (non-spectral) flux/luminosity units
rise_time = 5.0  # exponential growth timescale, days
fall_time = 30.0  # exponential decay timescale, days
# Temperature model parameters
Tmin = 5e3  # temperature on +infinite time, kelvins
delta_T = 10e3  # (Tmin + delta_T) is temperature on -infinite time, kelvins
k_sig = 4.0  # temperature evolution timescale, days

rng = np.random.default_rng(0)
t = np.sort(rng.uniform(reference_time - 3 * rise_time, reference_time + 3 * fall_time, 1000))
band = rng.choice(list(band_wave_aa), size=len(t))
waves = np.array([band_wave_aa[b] for b in band])

# Temperature evolution is a sigmoid function
temp = Tmin + delta_T / (1.0 + np.exp((t - reference_time) / k_sig))
# Bolometric flux evolution is the Bazin function
lum = amplitude * np.exp(-(t - reference_time) / fall_time) / (1.0 + np.exp(-(t - reference_time) / rise_time))

# Spectral flux density for each given pair of time and passband
flux = np.pi * bb_nu(waves, temp) / (5.67e-5 * temp**4) * lum
# S/N = 5 for minimum flux, scale for Poisson noise
flux_err = np.sqrt(flux * np.min(flux) / 5.0)
flux += rng.normal(0.0, flux_err)

feature = RainbowFit.from_angstrom(band_wave_aa, with_baseline=False)
values = feature(t, flux, sigma=flux_err, band=band)
print(dict(zip(feature.names, values)))
print(f"Goodness of fit: {values[-1]}")

Note, that while we don't use precise physical constant values to generate the data, RainbowFit uses CODATA 2018 values.

Experimental extractors

From the technical point of view the package consists of two parts: a wrapper for light-curve-feature Rust crate (light_curve_ext sub-package) and pure Python sub-package light_curve_py. We use the Python implementation of feature extractors to test Rust implementation and to implement new experimental extractors. Please note, that the Python implementation is much slower for most of the extractors and doesn't provide the same functionality as the Rust implementation. However, the Python implementation provides some new feature extractors you can find useful.

You can manually use extractors from both implementations:

import numpy as np
from numpy.testing import assert_allclose
from light_curve.light_curve_ext import LinearTrend as RustLinearTrend
from light_curve.light_curve_py import LinearTrend as PythonLinearTrend

rust_fe = RustLinearTrend()
py_fe = PythonLinearTrend()

n = 100
t = np.sort(np.random.normal(size=n))
m = 3.14 * t - 2.16 + np.random.normal(size=n)

assert_allclose(rust_fe(t, m), py_fe(t, m),
                err_msg="Python and Rust implementations must provide the same result")

This should print a warning about experimental status of the Python class

Benchmarks

You can run all benchmarks from the Python project folder with python3 -mpytest --benchmark-enable tests/test_w_bench.py, or with slow benchmarks disabled python3 -mpytest -m "not (nobs or multi)" --benchmark-enable tests/test_w_bench.py.

Here we benchmark the Rust implementation (rust) versus feets package and our own Python implementation (lc_py) for a light curve having n=1000 observations.

Benchmarks, Rust is much faster

The plot shows that the Rust implementation of the package outperforms other ones by a factor of 1.5—50. This allows to extract a large set of "cheap" features well under one ms for n=1000. The performance of parametric fits (BazinFit and VillarFit) and Periodogram depend on their parameters, but the typical timescale of feature extraction including these features is 20—50 ms for few hundred observations.

Benchmark for different number of observations

Benchmark results of several features for both the pure-Python and Rust implementations of the "light-curve" package, as a function of the number of observations in a light curve. Both the x-axis and y-axis are on a logarithmic scale.

Benchmark for multithreading and multiprocessing

Processing time per a single light curve for extraction of features subset presented in first benchmark versus the number of CPU cores used. The dataset consists of 10,000 light curves with 1,000 observations in each.

See benchmarks' descriptions in more details in "Performant feature extraction for photometric time series".

dm-dt map

Class DmDt provides dm–dt mapper (based on Mahabal et al. 2011, Soraisam et al. 2020). It is a Python wrapper for light-curve-dmdt Rust crate.

import numpy as np
from light_curve import DmDt
from numpy.testing import assert_array_equal

dmdt = DmDt.from_borders(min_lgdt=0, max_lgdt=np.log10(3), max_abs_dm=3, lgdt_size=2, dm_size=4, norm=[])

t = np.array([0, 1, 2], dtype=np.float32)
m = np.array([0, 1, 2], dtype=np.float32)

desired = np.array(
    [
        [0, 0, 2, 0],
        [0, 0, 0, 1],
    ]
)
actual = dmdt.points(t, m)

assert_array_equal(actual, desired)

Citation

If you found this project useful for your research please cite Malanchev et al., 2021

@ARTICLE{2021MNRAS.502.5147M,
       author = {{Malanchev}, K.~L. and {Pruzhinskaya}, M.~V. and {Korolev}, V.~S. and {Aleo}, P.~D. and {Kornilov}, M.~V. and {Ishida}, E.~E.~O. and {Krushinsky}, V.~V. and {Mondon}, F. and {Sreejith}, S. and {Volnova}, A.~A. and {Belinski}, A.~A. and {Dodin}, A.~V. and {Tatarnikov}, A.~M. and {Zheltoukhov}, S.~G. and {(The SNAD Team)}},
        title = "{Anomaly detection in the Zwicky Transient Facility DR3}",
      journal = {\mnras},
     keywords = {methods: data analysis, astronomical data bases: miscellaneous, stars: variables: general, Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
         year = 2021,
        month = apr,
       volume = {502},
       number = {4},
        pages = {5147-5175},
          doi = {10.1093/mnras/stab316},
archivePrefix = {arXiv},
       eprint = {2012.01419},
 primaryClass = {astro-ph.IM},
       adsurl = {https://ui.adsabs.harvard.edu/abs/2021MNRAS.502.5147M},
      adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}

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

light_curve-0.8.1.tar.gz (159.9 kB view details)

Uploaded Source

Built Distributions

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

light_curve-0.8.1-pp39-pypy39_pp73-win_amd64.whl (3.4 MB view details)

Uploaded PyPyWindows x86-64

light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

light_curve-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

light_curve-0.8.1-pp38-pypy38_pp73-win_amd64.whl (3.4 MB view details)

Uploaded PyPyWindows x86-64

light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

light_curve-0.8.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

light_curve-0.8.1-pp37-pypy37_pp73-win_amd64.whl (3.4 MB view details)

Uploaded PyPyWindows x86-64

light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

light_curve-0.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

light_curve-0.8.1-cp312-cp312-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

light_curve-0.8.1-cp311-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

light_curve-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

light_curve-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

light_curve-0.8.1-cp311-abi3-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11+Windows x86-64

light_curve-0.8.1-cp311-abi3-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp311-abi3-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11+musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

light_curve-0.8.1-cp310-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.10Windows x86-64

light_curve-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

light_curve-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

light_curve-0.8.1-cp39-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.9Windows x86-64

light_curve-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp39-cp39-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

light_curve-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

light_curve-0.8.1-cp38-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.8Windows x86-64

light_curve-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp38-cp38-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp38-cp38-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

light_curve-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

light_curve-0.8.1-cp38-abi3-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp38-abi3-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8+musllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp38-abi3-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.8+macOS 10.9+ x86-64

light_curve-0.8.1-cp37-none-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.7Windows x86-64

light_curve-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

light_curve-0.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

light_curve-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

light_curve-0.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

light_curve-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

light_curve-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl (19.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file light_curve-0.8.1.tar.gz.

File metadata

  • Download URL: light_curve-0.8.1.tar.gz
  • Upload date:
  • Size: 159.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1.tar.gz
Algorithm Hash digest
SHA256 d535c86d5bfd54819143ce2fdf0dbce266e0e66ed8219c8b9b5f1422888d7ce6
MD5 b5224dc50aca5aef94fc5f0dff16d8f7
BLAKE2b-256 6d2d06978362312db11e9e78e5866cc60071b2201ac3be07ea1e1b23db3c8d91

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8d8128aaae43ba426febe3408af44f531d01e88bcde4a8bc7128db8474043ade
MD5 73dd361b225f20ad31b7f2a0097bd159
BLAKE2b-256 8881da0d8d56d7e314e084012c8c553792d8e98dedd4fbef6c24b8f7fd7270a3

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07da374ec691bf6f4e07b1d26274487160ba4d758199ea23c208e08a8c4d8aeb
MD5 e8ca4d11fee93839e1131898ead51675
BLAKE2b-256 b61361d2a25b5e7f93bea9bfe38112924e9c7bf07f45c334c2665b83001aef6e

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af26158b6bdc578d28eba79568cc01f6d3e491f547954d308811baa00bed7997
MD5 64476934004fc3022e61d377ab1d66cd
BLAKE2b-256 141775b175a71045877207bc673ae966df52340008e4a717728dfa3928730b84

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fe9635f58fa41931902bc11ac11c35d6cce62173513ea05d232da2d8e55c9cb
MD5 942ef0b8144690b0b8049f5625f2579e
BLAKE2b-256 b62d4d0bb8cac4ebeda5c85c57493ca4d48fc60013aec8b2be563aae66a2852c

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f604556c79ef5cde6d17e840bdc4dfc2c7f7b80f6898297d749987b585550152
MD5 2ebe20875aceb99e72298ed145a943dc
BLAKE2b-256 5bc7dda94d5b5b4c293938ec692e01e6466101afa5e414147b0bb7546b7deae0

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcd39119e20ce0502246b9ea369f780368dd33e353e165ecca6cc15624f4df2c
MD5 a4916eb210a41d6670978893d9a8dcf9
BLAKE2b-256 45ec0feceb3e3bca7bc4c007ea996b52df873351e62b357aef9b22c36f57ebc9

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56a6e66d82b0f9afabcab9eefd03b379f392d1dcc7af9b7814aae1d4a3489712
MD5 804f1da7087da27420397551b159552a
BLAKE2b-256 c6c8c60a06eb63acae36eab2d750c0911677044b86172e96addb239d6dab895b

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e77f31b5380a608cb31f0e3ecc6e0f08c442ef7e6381b5e99c849e4d8f94c2b7
MD5 9ecc4eb4870c4ac63c872c617c148a26
BLAKE2b-256 38805ce4cc4ffb2622b743b571ca196c274921d8838469002b3f3dfcea764474

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 50d77b1418050219c6bc59c9d28cd802f5308657865d3c673f35ff8c3bd2a7e0
MD5 c9c169284ebb45708a9ee92d5cf1fec4
BLAKE2b-256 e04f498eb3a23aa96149c33c615afad0665e0a44a9ed8f1086566a1ef2e728f7

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0be6bb11883fab20a76a8e15bf65b0a02499201969e8512444c236c8eb9f9766
MD5 35fe1c45b420da12f2a28810afce8db9
BLAKE2b-256 25eba253930de6b1df2e38f397dc35c950aa6502c07b62a2891bcd2e091afb85

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41e303fcd758a8d708a10e66e4a24866be2f7c47974e91510a0c50ff77c00195
MD5 4757bc1e863fec364d44bd62b4c79561
BLAKE2b-256 f48ae41e8dcf58b7e802a67973cce11ce2913a3f513efa1bfed2659d122dc011

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f971c8a18e76766fb351a50da4e4383cf3f5a00359329dbeae9708ea5584dfdb
MD5 f5820da1cfc696e4db637d8c64da809d
BLAKE2b-256 9afc58591d971448ff30b3e0473c388efb07a6d4c944fe90673990e350ff76d5

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ae47c2e13deeff6dae74891eefb72856105c35673f95f4d0d841a9fded81271
MD5 8ee6d4dfd18e1348cc019c4c6b2fb200
BLAKE2b-256 c408076567791fd67f9bee226923cd5ba9ddd2c6aeadf755d8f6ac736ccec368

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 890bf024404093e90b9df9cf09fd3a3214a6f658800369d995583e4b186a1355
MD5 e6d70d78bc344e37bbadc6447904059b
BLAKE2b-256 49c0069f920270d6f88e285b4dc6cf62734096cdfa8eb5352fc2e0a2bdf65e70

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71aa932ca29e95cbe5a4ea1eb6c8583ea395ba1150a5e836cb21d5546fdd9ca0
MD5 1ae0f2b1e22ed8ebe92dbb826ca982a3
BLAKE2b-256 d55c12b82319f16f1ffb1a4242d77fc4dcf7a42cd81af0d76b12dc4893d91777

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2db11096ca986cc352513954fb162ce193476a82e6ab333798be91f678dc46cf
MD5 96e8cd34d75f6a443da7af28b5a24289
BLAKE2b-256 94b7f12ec7d0db5630f742b3643f81960ab331934dd06f68512730fd078ded06

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c59aabcca394e8c156846b6377e577485668fba88ddfb42c35c22dd39eda28cf
MD5 5033987104c0e1f0cc37f0066d5b936f
BLAKE2b-256 a5bfa2a88ddc0b6e40041600b6d49e65c9c97b474206864deb69d62c81a7a3d2

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a2949ce417ab777abefe53ea705718ba156163ebe9fba52a3b7e69e0920109c
MD5 63c448e9e15c3343f0d14ce379edbc68
BLAKE2b-256 7062d4448ffecc40292c437cc727e98922e53022097e899b318f00e88c59ff0e

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47c643eeeaca1312db85a8c64c65c6313025340d4f1c76b796d1ffcb67532393
MD5 bd13d813c380574b2e68233238470573
BLAKE2b-256 4786c724fecc0c62a5b3709699eb825c8e9e7db7f1395bc573dad77a682a2876

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c87b1c9273a3ee8844b71418e68a25c9b25a970af448040d97fc8d304924ce60
MD5 fad5755cd3e50cc7ffa85a818f64ae3a
BLAKE2b-256 af3d9e0fdbdfa6a68635568f78d545ca4f9a2a7d399d396a019a9ca51bef5c56

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51b801505353ba66360935f578afc6f841c024d3957ca7122c30580d746055d7
MD5 ea49316dec6292990acc9c6b9ef73a55
BLAKE2b-256 41f8f78e64341bd414046e4744b29bdba516c2354e4dc66276ca3e4eb19d31a5

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 c445ca06879dd8c9134fa7fa2895f5e151d192634006259c2329ce8085f41ba3
MD5 6e5b6edc25ccdc8c5a573eed1d4490f1
BLAKE2b-256 98fb3e943634ad973248813ea9abbea012ade2235d35a694de9735ad47173d39

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d94d29a373e477d251a1d525d2504bcb14cb4cdfe88e702c319153563b313ec
MD5 60ea92c9bd0e61cead4d250bf2c96194
BLAKE2b-256 b8360e2b4055f08cdcbeeafff9969a7d7db8dcb2d3a44bf393e0f1a354807ccc

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 99ab6806bed4a2de1bce17aea18809b5f97375a80d9b1efb381fd144a3d2acd0
MD5 990b561fbad1c6fecd3d830ae8b8a41a
BLAKE2b-256 b3b3314a16a4503e1184dda09e5f1aa9ec7ea337f1372371d2eca8f0fc6f1684

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfd2aa1c705d2fc11484f3cf76dd467de4881d74dd8894212cdd5fdab7c17a86
MD5 9d475d2e90b981fa9b880bb6b9671f78
BLAKE2b-256 6391495955dfe7b0f179421beeb83100197749f51801fa04a5ff1528575e43a8

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 590c4ce34a737c046be118210659c036aa932529319c91bbec528a141ac432ad
MD5 4c95fc9815dab8287f24e946849b00a0
BLAKE2b-256 a052b7e776c95cda19bc6611597e83b3e8bb3b6a99cf08e753a17c767d561795

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7544a543f03698355f155a62258d1eeb1637b8402bb0a38428a2961c7d2e3d02
MD5 0ec37789f5e09457e9a643ab6201315d
BLAKE2b-256 5a0d17a7408cb619d3f8b352aeee706146032b6f0fd30a596ecbf23363aa5a06

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e105185b7284e5b0129c8672edcb1afa3e2b7bfc7b072b5fe74e64a12c08efac
MD5 cbf4d3dec9b840b5cbf5c00861ea4af7
BLAKE2b-256 4bf0b1453eb29bfc91ea72968f545d4a886c1ef4e1ac4c805a2a4d3a6b369725

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a777881f6fe2a8aad2a1c37b26baf6ef1a370410985bccb64fd30e6a896c344
MD5 4e6578638401659f997831bb852f0da0
BLAKE2b-256 76b6b89d706b0208741a46e88c6c2ade493547528f47fcd6d6fb323e644981a4

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10b3531e482d9e94aa71cc95cd4adffc1548a036c7ebe8e21ad8e4d266181844
MD5 66c452c960a62b8c351697328a34af95
BLAKE2b-256 7af4a082c29c08429bc04bbe5698b974648b426791393d32c34a0c591ae6a351

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fcac2a1d932015bde85a71f2bd124bb66b8fabb7d02fa292f39e27731e25aac3
MD5 95a8ebbd7c53003a1b4d0decac868d0f
BLAKE2b-256 cf36271429748edaa09adb7b1f24527681caccdc3bf3618e1118d4db82c9b1eb

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6987cda133b38d31f2e15b60cd607935d0a97389939959aaf50e20157c07a7a
MD5 36b249c6d2be722f0e60bd83d094f982
BLAKE2b-256 81995bc1aa1b20b5f4a8627caeb27fa7e4aa81e4584f7179367ee85a1591e749

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c9ea089eadbaee4c98b6998e91a02541e6c6f7c09b5fe7b3746172f67817239
MD5 ccac524f0a36152cbcf1733766856eb6
BLAKE2b-256 80a885c766206a53011e989c8884e1b445e99e1c5720b9e42712a0e0e3366e2f

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61efcfc1920d7fde0ed2761cc5bbc6e84e4e67571ecf3976db1e8ce2ee436a49
MD5 76de796c718daa04422cd5d92be82ad1
BLAKE2b-256 4781a7120ebcd8c5d0ef8e35cfa35f8e7c7d07da050bb85b5bac6a236fd59899

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e066122a4b48be2b310c8e6b5f581bcc1f408125fe8c10fa231d80106b65f280
MD5 dafcfb23c750d9299f36002b5df991f1
BLAKE2b-256 7942d953e77c53618ac969e4860e1a79ee6a2c3996e9ec407dd87dc5b18f4521

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4221ab64fed9b374d7f73f5098850bcd1a0653d2a1390811dba3895fa42fe1dc
MD5 e6cf8ce15f9d528bfb65ae75990af0ad
BLAKE2b-256 9574fd83d6d7327daea1ba887eb494e7e087a6a7355a062aa039a00a19496faa

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0ec006290052a39e114a3b4ba209e77169781f5d965793f3b9d255e58cc03caa
MD5 05c31f5df87b3f9af3539ae975c8f68e
BLAKE2b-256 be6aa08b6f4b5a6a992b5b0848b61679e326bcabc94140808cd37f836f0ab060

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff724a78c5f4aae4799e704e2a95258e4b705d81a176b02b8820ad26437f2080
MD5 b479f364ce61fa789a77fec490a32baa
BLAKE2b-256 6cc3b6556fc28d07a7e9f6656aef60d807ea92091c93ea29ee2fe51e54b59f07

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6c3a7df69af071b7c4dc82f0cfd2c7cbbba5e749e0c45ecc4d088577fd3f5b94
MD5 af5bfe1a09d21cfc9a2e8c0cbc27c10f
BLAKE2b-256 c47646bedf320e3012ce6623722133621fc73d245fbdc1865a53582790efed92

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1e2f22b64e500e30452f559d447affa595dd970089543e2e26c27e7de0aa1a3
MD5 6a7385f6f3884a97757e226064b224a1
BLAKE2b-256 cff32bd512e8e8628f655554158aa1492aab8624b881aa2fa843c745762f66e3

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0404dcd8ad716135f633c6d23631693fc3ea07233bbdb3e262b913fbce588a2f
MD5 daf4cc4e0a11957ab464606e9a4f7326
BLAKE2b-256 942ba160a0ee37cac78f312d21674db02c24980fb67baec0f6ad636d0d14b359

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a648bd09548b07788986f88fd62fa35a3224db5e94c74f69be6707672e9612cd
MD5 c0757c53a689abf37dcdd24111e88e82
BLAKE2b-256 74e927c88c525624e13c96558c4a52f9634b98dcec1837d1066b1baa9f7ebcc2

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3c0be821191d05e9c77fbe0d4be52933a5acc6c88bf38738b6f520ca0178c30
MD5 2119e6830deabf95c6a919ff090a4224
BLAKE2b-256 fdf7e68af9e16fc960603e4a1a04289aedac43af683bb84ea239b8011b75b289

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98ec73b9b6cc9eac9ac809a76b1a5bf6d7cb6c697dddfe0430412aa0c5db2724
MD5 38193d2da512294760bda98814d26404
BLAKE2b-256 af128f3e714db1a56e1222ba42dd62f6016c5e093cf4492a342c3f054d34cf02

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ba15d1ad6caa8bf776dfde145b81173433785c4c48bf031319d67b5880f438fc
MD5 435be855604443a2e4d840b5f87ed019
BLAKE2b-256 4ad434e495755855cb09a0a541891753af13e025c53d3d11161a421a43bebb27

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 159fb0e7114753bafa6dc141181e21869df72800678d5c160a0c51f80e2ecba5
MD5 c7597ac66849fb5fe7636a2a6649f72b
BLAKE2b-256 193c03bc65e4dad8298ca423a129aff8e978a6e122cc0625777f46ecc5560074

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59fb772c61291be9e6ca88edc2fc4d081ee6c4e591ba7df78e2cdbce93aac626
MD5 af6965be4448ee988502c5b084884c5d
BLAKE2b-256 0d9e9e6bf832be8f3abbe85dee56ec70bdabb3c33680941078c73ccd3b0f8dae

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d40a3271824c4b4437d974679ab98f7c68e8d74ce74535cf27c180277c39984
MD5 af0e3bab1ffb8af670f35ba09e2283ff
BLAKE2b-256 8f43ed854f513e7184a3bbb10b03d8a11b0044d06541e92cde15c5abb48824f2

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0677ecc724b1eb9d6f7fda5bacd36c2e6beec2a8b435e8e8d73764aea6ffc056
MD5 55fac2d26626b9fab7b7ed4a4b91ca52
BLAKE2b-256 c6ce08ab51c347b9de41bfdd3a9a0c4d9b7d2f7f6b35b7988e81f99d345b78bf

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5842082962f69c5fa008968613b787f954c7add15821ef1c7a34cf570d8fd733
MD5 f95103e2f4fc3b768c5d5f8d027a1747
BLAKE2b-256 1a7aa4e402b8a2b05a08f88e264c8c185c72e6a2b515644a3150e708f5cc17f8

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44e985b657fa4b1fd2c38ef4462806a39ef2e9d4c7fcd17a0da2f86056c0bba4
MD5 82baab19368baa4fca2bd10c889c07d8
BLAKE2b-256 9fa975b47833e6d78ddc5058df1f4f6123acc08675b3ba74979368a24aa9a0a8

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c75e2dc86724acca42b83ca3b929ce682a85651af8f2417bb1753865bfd3425d
MD5 de36ed751097a5fa293e8526f9b83b8b
BLAKE2b-256 4d7b66a1fcdd1270551132a2551a92c52c8560836192a564e6fa6b726028ceda

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f66ebe73459f08de46c3f6ffa2a889e08f8a53986542ba8d547816c05c2555f2
MD5 0329d6de1028a7805d644657f86c81c6
BLAKE2b-256 11335418eaad1218b8fd9e5e058eea5c5ebf00f4b05228e8d4f6bf99ac441548

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9e9d3a1503f52b752546fc1569c32d38963bd0d2d5526c71b268f5f3b802952
MD5 55842c66e3dc6818e6eb14ddc638abec
BLAKE2b-256 3b8c62906939397d924a725b9874cf5bfd2156240342fdd809b9cab39284f750

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed06895a3fd1d19646e843d909f61a07daa28c280235cb4dc2775da4a2bdd613
MD5 91d3d0be99e5809e164a1af91e641e10
BLAKE2b-256 582fb48c4f6a7b4a316bbca6143e9e038ef12f171dc1ffe7ad3eab16805e4cba

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9b213e4f79c184433fbd798f462d15780de39dda9d2609ace261b3876d11254
MD5 40c9ec9b27ddcfabbb34a52a99bdb5e6
BLAKE2b-256 bd5bdbbf6bcdd6ad23eb192e000ab1312c517e579d8913a0160b526e9f437992

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4dbd722e3444ae710955cc689e9ede3981baaab4c46a7385a4a7d9d3d24aad0
MD5 5da57dafe2346bd5695b20cfe8cb419e
BLAKE2b-256 548d90edabdf8a7282aa234e45054337e5dc88358acc24afa01c514f36b847af

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp38-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp38-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f63f64f86d801e4206e925424c486596d8602fea2fdf13b978104261d201c4e
MD5 7b2d54458d1f98f4fd234f9fa180da22
BLAKE2b-256 7c062d467042b3476c833a8a832faaef29a810cc3c4c00e726f4579d80260b2c

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-none-win_amd64.whl.

File metadata

  • Download URL: light_curve-0.8.1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0

File hashes

Hashes for light_curve-0.8.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 49f18f17585cb9e292761bf215aa2931d33b0fc567990e9ba7b8feeb276414e5
MD5 2266521d1b4ccce59d784c3f536f3911
BLAKE2b-256 2f5ce1fdcc2bae0df338cce683ac45dbd74191e28172cc78568010b236a16ca3

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cbab21febfe0f8a5e3551aa96746cea1a18b37e1ad1cde11f2eeee2c29329bf5
MD5 8ed931e151ea083c3679ffee65d69911
BLAKE2b-256 e1bf12ef2135ea512711597eb65091879c7cd875d799d34b086c5e519bb84e75

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a5a2ff754dec33c6799fafa7f69a8c53a41c141c1273ab761483af1250f3fb6
MD5 b24d6c5ed1b689cf542aca5f5110e018
BLAKE2b-256 2fe3340da3ef7517235f422071241095cbe0fcc6211370d098a5af3a7a28feae

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39c0e3d4da0c5f72872e504ef0ade107c74a3b546e8136e3009f2dd58435193e
MD5 9ed8b78043dff96d919824ae1a701f26
BLAKE2b-256 387340ae854d89696a3bf32bc01f229599fb8c3f25c2be1de6d45b483756054c

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab1c3064a2a82852bf00a6de1a9ce2a7dbaef7bea0924e2b909660f18cee89f0
MD5 a89d2cdb24e6961558845e1f149a3dca
BLAKE2b-256 c121d050753e776f9276066755951f5d39c51e3cdc751c82b01ba8fd0c6caacc

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d806916332e68e5afe6ff7a3f3424fa86e30b30909222eccc34fa24ca0093a60
MD5 577ba54f7f5fbb1a75812c770e766fe6
BLAKE2b-256 9a0df193c19e6d2913be75c97910bf8092d9362bede02123653f2d7b41d09d47

See more details on using hashes here.

File details

Details for the file light_curve-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9643fe3a4724413faeca5ee30658b78a7c39497f212a283252270952b47ab5db
MD5 3060dd4237eb9644e413599608ada3cf
BLAKE2b-256 9b642723deaa4182d71f3a0847bda992320f5f970a10e0fe28a4396f32290c0d

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