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 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 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)

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 the 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

Available features

See the complite list of evailable 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
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 another feature extractors and apply them to pre-processed data.

Periodogram

A number of features based on Lomb–Scargle periodogram as it was an evenly separeated uncertancy-less lime series. Periodogram $P(\omega)$ is an estimate of spectral density of unevenly time series. Periodogram's peaks argument corresponds to a number of the most significant spectral density peaks to return. For each peak its period and "signal to noise" ratio is returned.

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

features argument accepts a list of additional feature evaluators.

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.

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.0.tar.gz (156.8 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.0-pp39-pypy39_pp73-win_amd64.whl (3.4 MB view details)

Uploaded PyPyWindows x86-64

light_curve-0.8.0-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.0-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.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (18.9 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

light_curve-0.8.0-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.0-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.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

light_curve-0.8.0-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.0-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.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

light_curve-0.8.0-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.0-cp311-cp311-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

light_curve-0.8.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

light_curve-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.11+Windows x86-64

light_curve-0.8.0-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.0-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.0-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.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp311-abi3-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

light_curve-0.8.0-cp311-abi3-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

light_curve-0.8.0-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.0-cp310-cp310-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

light_curve-0.8.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

light_curve-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

light_curve-0.8.0-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.0-cp39-cp39-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

light_curve-0.8.0-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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

light_curve-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl (18.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

light_curve-0.8.0-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.0-cp38-cp38-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

light_curve-0.8.0-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.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (14.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

light_curve-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7Windows x86-64

light_curve-0.8.0-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.0-cp37-cp37m-musllinux_1_1_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

light_curve-0.8.0-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.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

light_curve-0.8.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for light_curve-0.8.0.tar.gz
Algorithm Hash digest
SHA256 2ca801ac92025e4917714225b7d0dd62d9b4e7b4871af9b03ecaa596975d446a
MD5 4a129f5b3ddb72d580bf577bab53e3a3
BLAKE2b-256 3023789e4ac162828134b9c419921e7bf5f4028eff1d6f0c26db2150a67577ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6e21a57b6b87702327b11b731f88761c0d2aec1e756748dea097a8abbbec9ccd
MD5 246c9f6ebbe867289f43d60bfd171da2
BLAKE2b-256 b1d09faeb3176a8d65d45154aebdaab7a24b7463d3d54887b10b107e3a8844b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4833f3ee3194c4881f3c17eea823ed8af3de1f31d92ae89bf502c8c3edba598
MD5 ad17d339ef4da13cacbb87ab8b311c12
BLAKE2b-256 c9fb3e05d06b03fe84bd0024bd87b70961a6b528288ff2de99f61368a4cf5ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a182e19d78c5f75e8379d291bf216e162a3f2ff0452bce32ee864acc6ca0b0ff
MD5 41f280a2f9d85198ae4c950338876cc2
BLAKE2b-256 fc9e6cacbb2f58277b375ce636a073c85d03ceee5569cba3554a879dadc21ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2720b23720f2bbc16c60a0b53bfa06950dbcb48fffb1bad7e2f2394c4b523b04
MD5 9ed821d7561c3e324283b71ef6fa6639
BLAKE2b-256 687d402c2c869e01d90a9ddcc6356326e27643634e81429a827c3905400daf73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da3c344f8269a809941ab83aacbcf892a3cf1bcfa8a77cccc97c01442eb288f3
MD5 c6226574753bbb4713680c9a3c6e2b79
BLAKE2b-256 a4f615d3d342bc56549b5440a7df7f4d64ab236555060bbbdda7e1f4d0d0dde0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adc1fa4c0f6069047164b0bec4db5f390bf42dfe472118a5cf79fd2474814d60
MD5 65e574ee0be2253dc1c1559c38a9ef12
BLAKE2b-256 1fb872ce483cf9e18c62469ec8c69d7e2533853e3fd31641f311c490f75b0547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09ee21dabf3077927cd66bbdeaacf3abdad9efb9c5b2c6c114aba2eaa34df198
MD5 2b7d7e04c123ac87df51680e8495f112
BLAKE2b-256 b09f110d9c79fffdac755c61f2b4a1ae3b33e50da33223dfbf3a0b4e7bb7c86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ec53ca71f3cda9ad0285a81c282009b0595bbfdce59b2b9ef528b34316b9eed
MD5 c552cd8f948084f0c79f2d9570357b8b
BLAKE2b-256 571713f8eac87e5b17f6e804182df210b0f044ae65ba216a0856132dd35acb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4e9b51c0870b6a445351ed2e96e7224006dfdf1285b8ff1f52c31be6b94d123b
MD5 b32a51e694d02e23d2a98f593fec7300
BLAKE2b-256 21d1f7e6818896401f9d111ca07498485a117dfa6b86941dad21b9c4cb0d25f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f88146885d7765a7009fb0bdba6c76b27f7e34d853982c42e24142824846233
MD5 968e1962ba8c61468f0fc6222c5321ab
BLAKE2b-256 fcc200f25a506b494188ce9140c9300316f83e5fd35627820ca13709bbdc87c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ab3673b5232818f68f8c87760d50b13bd9f7900e586247df5f243078c1ebfc0
MD5 f91c720a7f72cc317b9481966f1a0a25
BLAKE2b-256 e7959e3e1dc4c7740643588311dadaeaa32ca147f198dbf0246f259875dda7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34994bc5d0692f592294d712c06d29cf85e5f7737e231cf217999c5f6174c746
MD5 39dd4c6159286d39d28f14ac989a9d88
BLAKE2b-256 116999431b4e5337070eaeda4f113db4505b0aabc636730449dd2a91c29abd07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2583fcf28a92a73e5b77978836ec0a6581c62bf63720265edf897d010a9e2c93
MD5 2b2aa03e9d19c8dc0bb0ac201d7e185c
BLAKE2b-256 bba5d5b24fbcbb39fd7a514f40c412b556465619efdcc2d600d069163bf25d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 215479dba817c9826696f868d866b9f986c5d7a476d0e7277e922186383cca15
MD5 eb63d2b78612b09eb3cf1b1c19fb2d02
BLAKE2b-256 4cd7fdec14ab0efbfecb5b11075611bb752d42c507c701cca9ad13c49e89baeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bd7a9ff022e637b1c52abad15ed40d319b67be40ee649573093310a76af62633
MD5 d7c40139d17a5817cbc3fba14d1b193b
BLAKE2b-256 4bd3af28d59a6b31b92cabe2d908013e5250720a4ce5a4350836c6d1ed51596d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22630a70f38b9d27ef12b74e5475bcb8a76a0a379894ae3d38b621284d3bea86
MD5 3974ef5b844e80e059812845b7d8bc42
BLAKE2b-256 bbb3d58a53c491623902cc4a5aeae71b2588ba4f5f556a220dfe10264c51f79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed253dbe9d62e83bf67331149ef991dfe56a5f7ebebae207c6795ef5d3bedb15
MD5 02bf3f18d6df4e55e87e4ebe85b2554d
BLAKE2b-256 87c5bb53fd7f1a939d2e81f0d3344fa3ecc9c93fea37ebe39f80b3765256ba1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b347ec3b6ca6f5a4667e63bc2bac695d5dab9e7760b205a9dca109e322be327
MD5 33912ee6b6dbe2ab84ebeda217e2d4ba
BLAKE2b-256 13937f8ccaba6b74ca85f3b21eca55ab8c5fee837f3afeca7c9b7650c9d2be0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc18440c9b2b238f8ff51b9b21608a4bef85cc36efb1bd4855a50bc2c3ec0095
MD5 9c68f58b6b39f5009d7f250afaaec160
BLAKE2b-256 9f2dca21cdd4dc159a6a0ae462e6057d00ba619b598fc2166d113240519db293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82fd7f02c57a05561c0a49f762b1a4b78ac676febe047cd7497f5204a38d4bf7
MD5 dd1f7e03ced22251dc502564023ee443
BLAKE2b-256 29fb67bd265d296cf372c4906d70cb3a42d67e8413d0df14e5e8bafd1dc62b97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 2e3b675c14284d061be8e2a62b6048250d860dc3eddd97bf8eb561d4d6503087
MD5 0aaab8a1b9d6ed300e8638e6860b2152
BLAKE2b-256 30b2cf050d97fe725bb765e38c5976dc3edfb2152cfa6de830c1192235b88ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78006adce88f6e76060c095c36f6f0dc33cd885345517f071d5ae28ea26a7064
MD5 bd7c099d82a3e1bdac633cec269d3c0c
BLAKE2b-256 f9edf2e557859e9f75bc18e1cac1596a87227f3eebb2c8cb0e3d60780c42a545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 79b6334b6572cd59bda34c90ad842831dd2f55a94f3f28fe2850636391eb3e88
MD5 dc01f42f473e650f082fdd96cd004489
BLAKE2b-256 98e668e8ac3148cd28f41c82831b61246bfe1f56c7fefe57e1eb92c998a17312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9aac06a66cfd974e11821b1c16f23055e0d83769f59e912dd34be448afc10ac
MD5 122341b56f7b4c8ebd36e79ecf3c95d9
BLAKE2b-256 19c1bb4a23a2cc531c60d1a9c522ea804321fad9859bcdcdbf43cbe56b3f3d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0752a3062e217f405365120bf97f3057c98e6b8ad7f786c885966231be5ea052
MD5 0a5c628f2901985e4b71e9087969be78
BLAKE2b-256 4f8b2f1b3523f62092bd347e5bd8ecc16b36e0c94d9e0ad555d2f564dd28c2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3073a52c8cf31d3856b8774518867bed0ab734145cfe5c43af5b72e2588309ac
MD5 e4b8c666ef7d4457b548bb595023d5d6
BLAKE2b-256 cf94c66ea39a75126928a713af4c0c1ad875adbf3654ac69ca025a2f977c24eb

See more details on using hashes here.

File details

Details for the file light_curve-0.8.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e19374732d23ab13d577a1881de51f03565f0c5a17692172fb46fbef1dae5e93
MD5 648f28d96abefc11cf0915567edc60b0
BLAKE2b-256 69fca990bb3c3e548cb6fd891c3b364a1978265e1bd474b194a6239c960f754b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c67a824e4113cd5e2350df31021a7284a3d2fe12b0adc0db6259bfad93f7d825
MD5 9c089c54c81446e47d8e1dd55e9559e4
BLAKE2b-256 77192bdb76e5ddd36df86ec4c5dd0dd0822d014616fedd8794073b0e96f99fff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1db7004cd26d26ec03dabcc92af8b3716af436b28e4e28d2f4ab0d994dfa39e2
MD5 ddce7220ccf8b34d060aedde8ee765a3
BLAKE2b-256 561cd0348c0f35cf2c0d5e20014069bd8cfa22b43b0265d6786448a80fa10d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 052c3dc41cafe853d81c65d023b269028143e873103d9d0c5f2702bb122d37ce
MD5 8c6fd7136b1dbc8be2572ec26a01fba2
BLAKE2b-256 aee0b21a0ed05b1e499091a145b842275d7821ffda8e6794a859e06a06be87ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf5dd0bcb6fc63dcd110d5aa949186b59150a685538fb6bca25024a446c0477a
MD5 fb750696e8ebe3e3849379c8228e1d79
BLAKE2b-256 eae9f563cfa0dd5e18ce8edae997edc296cf848149eb51b2f7952988e6d9e055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95b6a189351f160ae196204e6d502991f0729e6fef934badc3afa9dd675f8e9c
MD5 bfe28723933c44e9b86abfa78a806f16
BLAKE2b-256 b51420825356ee07552dc57cec4b65816d9b705396e4d4c161347395a42bee8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f18a557d60f4e148288eeed85f3d3792eeaa3b6b2ba71f877e940dde4fde7660
MD5 f55457a17e3786f6585f17023e4b5fb3
BLAKE2b-256 3659086cf420d0b2155cbf1a4ba6b301b69d794c0bc79f1e2670dcfbbac0a715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5ff3a476557790dd26b00e25591eb24c8c3d81b199aa7d544a4668b9208069f
MD5 7b7ebc7a0e4f9ca8e5b334586fa3d1b5
BLAKE2b-256 575b0e84191fca74ec4050424124ea6f65c6daaa1d752750639533ceb9ead058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71d0b32bb2bf527119e657c29dfcbed99e3df4a7b795ac06a19744c81432633b
MD5 7c6a0660aeeff492b6ce9ef2ae6efda5
BLAKE2b-256 8f80241b2d640e0a698185f44d95d5787ff599b4afcca586fbf8febdedf7797c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4832234c295f5fd8c6fa2af13f98f28a0f1f5ebf7c90a4451f4f4d8f532e272
MD5 8807f5370b3e95b26e9b9d7a95f5bb0f
BLAKE2b-256 f500a2ef48d654d6fe0408cd283600b5512bc99d57c6b412726d8eb1346a5c4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e8e2aed0d8625fd59525ad11cc640bd51b70db9ee6b8dda2c621c86b4161904
MD5 f09774df342952e5e825cdeacd907e99
BLAKE2b-256 36a10752a4609c8f0eb7ea0ae9933a65a232d1ae0d8e111c0158d288e6df4063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aa4c0fb64304743cb49b2fdfadb6607f65361fc4d3705aeb4f93ede6157933f6
MD5 a5ac1914fcbd58208cd0ba70f6c54895
BLAKE2b-256 ad12d43890476c08564eb1f6146ec691158595ed7bf338148ea8c8d6ec7b5164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1abe16181fb85ea6a24586cda445a8413b7407084112500e4afade5992f3a91
MD5 ca53512a5876bde6537a0e855eef350a
BLAKE2b-256 1593dfe98fc93eeb00366410c0d0ec607cab0e02e3f7d6a36c362febbf6090a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d23581fe7e63245f97ba4a984639e1cfdeb27d290a2e02c2ac23ad7e7d8097dc
MD5 5ca8defbe8be8ff3e887fa711a6af686
BLAKE2b-256 f6fa225275d77d356172d8b981e3694ca8de88db75f3f655ed1eea243a1192d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b4bd7c6fcb5eacfa66b726c76446a6d85997d6fde902cbe3f943a98d37525fd
MD5 abaa6d9bd662d9ffe7627346e7a8e6be
BLAKE2b-256 99ce664eb05a69ac9b331abdb6cb99f12537966de670e7eafc465e91923d0f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54027f1c945b82b030f8286f47634be0fc6df6aef3e0a0bac6b4a3d3fd0d87bd
MD5 2dcb2f045d47c3b64c722ecad82a2b61
BLAKE2b-256 825552f2694ae60027db9c61ed81badab6687aef1f2e6042e02910f526203ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdd27c1f41f922e6a97658851f8bf95cfb58d11d2abebaae2ac2d4a26f57a5f5
MD5 fdaf98b79cffbb20ad44ccda4e1d9f18
BLAKE2b-256 b61b289e0e34a6d09324e730e6067f094ac49e20ddf7095b4939d515785256ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58b556ab713bbec6d759ce120ad95ca469749ccd717752023709742f68868f0c
MD5 47b09096a6a01bf7a292984f7bcd3502
BLAKE2b-256 e40f0ba83058ec5c1b652829f75244be0b86965ab100731e1a0c194c4ff32181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5cbc0ed4a7e2c0b983d943cf7218fc20d551a2525b0cca92322140859cb28594
MD5 2b8331831c7e903c8b30b711b3432c22
BLAKE2b-256 2aaae32d75165eb38285d585ca3506a6deb1bb4cbe82b447ca1b239f853bb932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17f9ee364d08685d1de85055482acba46d165e1c612502d165b910dfa3e320a6
MD5 de7aa4a6a3dafd5531ff64b112a4c4cc
BLAKE2b-256 a6658717cb68243f0911a399b5ee4279b44f08a201403916ccb752f62d6eae6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef22f259ad0c0334e3a8becae747ad423552f02e8efe0227a23f4ee8f475a66e
MD5 93ba81df5191381b3eebcc7a878d1458
BLAKE2b-256 335bf2cab4f4011efdc2e2d6c538ce40d6a5e739ca617f28daac45adb6cc9abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3513c599ef1ab287799b762bf5e087d432859d8c1f97d21fa440b6638635e098
MD5 c937a34b5b83e36bda66d8da058967eb
BLAKE2b-256 333bcb8a199beaa4cefaec751068add94ab29740cf143564977612f724495ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33ca9d274f3bd603f673acb16ff6f8c0f48538cf04ad2ba9b0a47adeced317ab
MD5 ca3c213fa5d33ca632d600c07de9efce
BLAKE2b-256 95287c4b38cefedb8dc2ff44be08435501a5ec296f8d8c92ba68239ef5243951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b04612c6e2b07c318edd64cd2f35f93b61fb6245b5b3da5f55e2834963585d0b
MD5 05b0e70213cae158e68330ea0961a2ef
BLAKE2b-256 e67c36372b0a2c6fc92949eae375a9d8675649b0c56380165688cd80e97ffe6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a040bc2cc3cfd16a86eb9166ae9fcb150a5c8642d72cc30bb5740b337664e24a
MD5 5715d72c36d288e11f663fd21ed0f197
BLAKE2b-256 b062ec7ab59a95a4cdc1af2f2d3cf33458d0ffca1f8848ec8de73a30f14d6cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3aeb10ec5308ca88a5ff6b22c68a12e8213b0126636d1ef316d1c6aba261c01
MD5 5916f75374e75872b0b8e65974889e53
BLAKE2b-256 987b7d6554ec37639f70b84f2a9b5a0ebe2100a57d740cf367880167d92a7971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: light_curve-0.8.0-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.11.5

File hashes

Hashes for light_curve-0.8.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 54f0caea1a2c3f7f2b432dc0bd919ad371950277b746972955f13b10c7aaa83c
MD5 6ba7ede7758ef4cedb2105a8a51acd4b
BLAKE2b-256 c9e61db06b8794be61b6b799f451ce8fa0229a778ce90056c027d688ba3fb55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48d30c3527c761c83cd6edcabaee2414903764e2a07f256082e1575458984857
MD5 35ac34459c6672d3d57b1198a6f521d3
BLAKE2b-256 67b37266f1a26ef28710fed0061cf3efc64561ad868e23a25a2aa5b5afdc2a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fda4f85b13bc41df87616a73fc414222f29b06ba36476a998e4687efaea6fea3
MD5 d88c48940831e6147e00b749ee827972
BLAKE2b-256 907dd147a9f04e92089e592e59b29f24e427fb22fd3cd6dc64067cca618ed38e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cb0ac2a2e08daf0c9df8e39a0c2b0411356696b17290b97f9257760bab8adcb
MD5 8347344683e9647aee72c192047f7cac
BLAKE2b-256 5446b1829e49f57ec16ce0bc41be65f634635ce020d5d4d1b279b4f935d829e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b421cf2d16cf19bc67f48ceafc6641c5ccfcd8e56ddde05b8e7f763a2cb5cf79
MD5 e33e171f1f74b519a6d4e46f5cc71a1a
BLAKE2b-256 8ce3bff09deb52d4b7b39b4301ed78e48d0f28dcbb9d57a0d3537bd6abb8d654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4078c381bab0961607ee5f128e4780f85a6fcd2cea40e8105ee932f134eb504a
MD5 eba413fc74bac66fa58568f3bc903934
BLAKE2b-256 f05a69ab5ed0e2bb0c4bffdde738ce42a9b45eb80d94e64139d5cf55c9221f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for light_curve-0.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c74e2a99dfebe594cd3dbea33254d17310a244fb55a63cf8ec4cc0c155a5f34
MD5 e37e0cedc5c4c75735582a6b5d12cc97
BLAKE2b-256 c4dedc8de468fa6ce293fabf18b3de98f3b188588a11d5396d1f7b65a0979732

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