Skip to main content

Fast high dimensional fixed effect estimation following syntax of the fixest R package.

Project description

PyFixest: Fast High-Dimensional Fixed Effects Regression in Python

License Python Versions PyPI Version Coverage Downloads Downloads

Project Chat

Docs · Quickstart · Function & API Reference · DeepWiki · Benchmarks · Contributing · Changelog

PyFixest is a Python package for fast high-dimensional fixed effects regression.

The package aims to mimic the syntax and functionality of Laurent Bergé's formidable fixest package as closely as Python allows. If you know fixest well, the goal is that you won't have to read the docs to get started! In particular, this means that all of fixest's defaults are mirrored by PyFixest.

For questions on PyFixest, head over to our GitHub discussions, or join our Discord server.

Features

  • Estimation
    • OLS, WLS, IV, and GLMs (Poisson, logit, probit, gaussian) with high-dimensional fixed effects
    • Different demeaning backends (MAP, within LSMR, torch LSMR) on CPU and GPU
    • Fast quantile regression via an interior-point solver
    • Difference-in-differences estimators, including TWFE, Did2s, local projections, and Sun-Abraham event studies
    • Regression decomposition following Gelbach (2016)
    • Multiple estimation syntax
  • Inference
    • Several robust, cluster-robust, and HAC variance-covariance estimators
    • Wild cluster bootstrap inference via wildboottest
    • Multiple hypothesis corrections and simultaneous confidence intervals
    • Fast randomization inference
    • The causal cluster variance estimator (CCV)
  • Post-Estimation & Reporting

Installation

You can install the release version from PyPI by running

# inside an active virtual environment
python -m pip install pyfixest

or the development version from github by running

python -m pip install git+https://github.com/py-econometrics/pyfixest
Optional dependencies

For visualization features using the lets-plot backend, install:

python -m pip install pyfixest[plots]

matplotlib is included by default, so plotting works without this extra.

To run the LSMR demeaner via PyTorch (CPU and GPU), you need to install PyTorch, which you can do via

python -m pip install pyfixest[torch]

For GPU acceleration on CUDA, you additionally need to install a CUDA-enabled torch build. See the PyTorch installation guide for details.

Then use the typed demeaner API:

# CPU
pf.feols(
    "Y ~ X1 | f1 + f2",
    data=data,
    demeaner=pf.LsmrDemeaner(backend="torch", device="cpu"),
)

# CUDA GPU
pf.feols(
    "Y ~ X1 | f1 + f2",
    data=data,
    demeaner=pf.LsmrDemeaner(backend="torch", device="cuda"),
)

Note: The cupy / scipy LSMR backends and the jax MAP backend are deprecated and will be removed in a future release. Use pf.LsmrDemeaner() for the default Rust within LSMR backend on CPU, or the torch-based backend for GPU acceleration.

## Quickstart
import pyfixest as pf

data = pf.get_data()
pf.feols("Y ~ X1 | f1 + f2", data=data).summary()
###

Estimation:  OLS
Dep. var.: Y, Fixed effects: f1+f2
Inference:  CRV1
Observations:  997

| Coefficient   |   Estimate |   Std. Error |   t value |   Pr(>|t|) |   2.5% |   97.5% |
|:--------------|-----------:|-------------:|----------:|-----------:|-------:|--------:|
| X1            |     -0.919 |        0.065 |   -14.057 |      0.000 | -1.053 |  -0.786 |
---
RMSE: 1.441   R2: 0.609   R2 Within: 0.2

PyFixest also supports multiple estimation syntax:

fit = pf.feols("Y + Y2 ~ X1 | csw0(f1, f2)", data=data, vcov={"CRV1": "group_id"})
fit.etable()

For more examples, see the quickstart, the formula syntax tutorial, and the Poisson & GLMs tutorial.

Benchmarks

The DGPs follow the "simple" and "difficult" designs from the fixest benchmarks. The figure timings for regressions with k=10 covariates and plots the median runtime across three runs for PyFixest MAP, PyFixest within, PyFixest torch on CUDA GPU, fixest, and FixedEffectModels.jl.

Fixed-effects OLS benchmark for k=10 comparing PyFixest MAP, PyFixest within, PyFixest torch GPU, fixest, and FixedEffectModels.jl

Runtime comparisons are hardware-dependent, especially for GPU backends. For the full benchmark suite, see the benchmarks/ directory and the note on difficult fixed effects problems.

Learn More

Acknowledgements

First and foremost, we want to acknowledge Laurent Bergé's formidable fixest, which is so good we decided to stick to its API and conventions as closely as Python allows. Without fixest, PyFixest likely wouldn't exist - or at the very least, it would look very different.

For a full list of software packages and papers that have influenced PyFixest, please take a look at the Acknowledgements page.

We thank all institutions that have funded or supported work on PyFixest!

How to Cite

If you want to cite PyFixest, you can use the following BibTeX entry:

@software{pyfixest,
  author  = {{The PyFixest Authors}},
  title   = {{pyfixest: Fast high-dimensional fixed effect estimation in Python}},
  year    = {2025},
  url     = {https://github.com/py-econometrics/pyfixest}
}

Support PyFixest

If you enjoy using PyFixest, please consider donating to GiveDirectly and dedicating your donation to pyfixest.dev@gmail.com. You can also leave a message through the donation form; your support and encouragement mean a lot to the developers.

Call for Contributions

Thanks for showing interest in contributing to pyfixest! We appreciate all contributions and constructive feedback, whether that be reporting bugs, requesting new features, or suggesting improvements to documentation.

If you'd like to get involved, but are not yet sure how, please feel free to send us an email. Some familiarity with either Python or econometrics will help, but you really don't need to be a numpy core developer or have published in Econometrica =) We'd be more than happy to invest time to help you get started!

Contributors ✨

Thanks goes to these wonderful people:

styfenschaer
styfenschaer

💻
Niall Keleher
Niall Keleher

🚇 💻
Wenzhi Ding
Wenzhi Ding

💻
Apoorva Lal
Apoorva Lal

💻 🐛
Juan Orduz
Juan Orduz

🚇 💻
Alexander Fischer
Alexander Fischer

💻 🚇
aeturrell
aeturrell

📖 📣
leostimpfle
leostimpfle

💻 🐛
baggiponte
baggiponte

📖
Sanskriti
Sanskriti

🚇
Jaehyung
Jaehyung

💻
Alex
Alex

📖
Hayden Freedman
Hayden Freedman

💻 📖
Aziz Mamatov
Aziz Mamatov

💻
rafimikail
rafimikail

💻
Benjamin Knight
Benjamin Knight

💻
Dirk Sliwka
Dirk Sliwka

💻 📖
daltonm-bls
daltonm-bls

🐛
Marc-André
Marc-André

💻 🐛
Kyle F Butts
Kyle F Butts

🔣
Marco Edward Gorelli
Marco Edward Gorelli

👀
Vincent Arel-Bundock
Vincent Arel-Bundock

💻
IshwaraHegde97
IshwaraHegde97

💻
Tobias Schmidt
Tobias Schmidt

📖
escherpf
escherpf

🐛 💻
Iván Higuera Mendieta
Iván Higuera Mendieta

💻
Ádám Vig
Ádám Vig

💻
Szymon Sacher
Szymon Sacher

💻
AronNemeth
AronNemeth

💻
Dmitri Tchebotarev
Dmitri Tchebotarev

💻
FuZhiyu
FuZhiyu

🐛 💻
Marcelo Ortiz M.
Marcelo Ortiz M.

📖
Joseph Stover
Joseph Stover

📖
JaapCTJ
JaapCTJ

💻
Matt Shapiro
Matt Shapiro

💻
Kristof Schröder
Kristof Schröder

💻
Wiktor
Wiktor

💻
Daman Dhaliwal
Daman Dhaliwal

💻
Jaakko Markkanen
Jaakko Markkanen

🐛
Jonas Skjold Raaschou-Pedersen
Jonas Skjold Raaschou-Pedersen

💻 📖
Bobby Ho
Bobby Ho

📖
Erica Ryan
Erica Ryan

💻
Souhil Abdelmalek Louddad
Souhil Abdelmalek Louddad

📖
Demetri Pananos
Demetri Pananos

💻 👀
Patrick Doupe
Patrick Doupe

💻
Ariadna Albors Zumel
Ariadna Albors Zumel

💻
Martien Lubberink
Martien Lubberink

💻
jonpcohen
jonpcohen

📖
rhstanton
rhstanton

📓 🐛
mdizadi
mdizadi

📖
Tim Mensinger
Tim Mensinger

🚇
Nicholas Junge
Nicholas Junge

💻 🚇
Abel Abate
Abel Abate

💻
Jan Teusen (né Boelts)
Jan Teusen (né Boelts)

💻
Marie Garkavenko
Marie Garkavenko

👀
Brad Hackinen
Brad Hackinen

💻
Julian Budde
Julian Budde

🐛
Felix Schmitz
Felix Schmitz

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pyfixest-0.60.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

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

pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyfixest-0.60.0-cp314-cp314-win32.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86

pyfixest-0.60.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyfixest-0.60.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfixest-0.60.0-cp314-cp314-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyfixest-0.60.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyfixest-0.60.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfixest-0.60.0-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyfixest-0.60.0-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyfixest-0.60.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyfixest-0.60.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfixest-0.60.0-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyfixest-0.60.0-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyfixest-0.60.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyfixest-0.60.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyfixest-0.60.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfixest-0.60.0-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pyfixest-0.60.0-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyfixest-0.60.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfixest-0.60.0-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyfixest-0.60.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyfixest-0.60.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyfixest-0.60.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file pyfixest-0.60.0.tar.gz.

File metadata

  • Download URL: pyfixest-0.60.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for pyfixest-0.60.0.tar.gz
Algorithm Hash digest
SHA256 ec4f4759b5b53c19aaf6ea81ddc745d57c7c8c5577f8d859a2fc9ca2c73e3aa7
MD5 552c642a5c8f191f4ea186f264680b04
BLAKE2b-256 426861b5e117fa0b0ac3ef17e2dde4722ea6b3b1218020661fedc312087e59cd

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8eebbaf9647c9a5bccdcc0806b51ba903292748b0604125c2a80ac5a427c1299
MD5 ae9558f9d91c0057907d4e56e1f5b939
BLAKE2b-256 ac413955ec519ef50d7f14580b96ae0b916e74ba056d3172680f41781204201f

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 143d516487a9ce54965c579122a48153f205c638c1ff5d933c151097b0d33665
MD5 fb0bb43dc9fa4ecaafd79040ebce7bd4
BLAKE2b-256 908b9210c7ab326afd2b30113c12a79842c1a09213bce99ecfcf9b12c69a5c05

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0ac25851595dd7b5dfca7970a663f389fe04546cf15f87a92da79c4b3d6ba27
MD5 aef3f6534e4ac4b4d4673efd8321d1d8
BLAKE2b-256 6357cd560a0664cc393f65ed0d90a62e98428006b102b3ec3c35ebe2609f5f09

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85445b919ec663385282e3fa2f2bbb6f0db46a7416e08ffa4f251cdb1ef3131d
MD5 f96ba4dde3364857b9fa13574cef7d17
BLAKE2b-256 2658c8c7f126e16aca9d62a7e9824b5431326861e3a02393b93b9c3332a38cb1

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e3bf4f730451931e57605bbe712aec81658e912936617d7a7d52b4ac928e442
MD5 a477a09af95b608001b30d5763dbf302
BLAKE2b-256 76b9972ed0ceeccf65471ea896eacf3c9ec3a254575e67c4ec0c27b8c682af5e

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0b279e0bde5a7071c61cdb6697861f50aadb6136405100bd9814001ec2aaa72
MD5 181cc13f40350621017a21da4ba572d1
BLAKE2b-256 cafc163db34dfca1714c08855ea1167188b31927ca7c7bac43a57fbcd3c1fd29

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 283c0227639dec9a884b7f46fb539f384f1370137137ef19ec6a36af67c4fa88
MD5 eccc8ee935bc2020138858055bf1ae1e
BLAKE2b-256 3b7d7d49e73bc702216380d8d0cb85bc1e1bd9d4d72e5504bfe39c297c3e68c4

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ca0e7ccc592d251fc2954635a5fcc9410db45795a7baef2d477697f9a600704
MD5 4cc3b55dc2c39a348740973b4eb54776
BLAKE2b-256 bb0b06eb97d560254ab39187a376aff1656cdad9590574e03ba0c33949a96bf8

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32fb8891e241cad7ffc8dd4cb40639e748eec17390fda35bc905360a0eef47d5
MD5 71df6c17a235a4000c5d3caa5ff1f148
BLAKE2b-256 d3860eb8e25bebef16992accc280bf4b0aef1ec4bc683dc9e624e0b43f5cdbdd

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c3521f2c360c5efd8b91c7129cd42f9e1594e97be94745272dcffd21fb1933c
MD5 33393de0973a4fb368d3d2c2f9f5c32c
BLAKE2b-256 eb289fb3bc2159ae93e2bfe485533c87d8025674dda6a9eabab6a27056cf652f

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe8881277943b6477f3b2c3579c1ae3b494f1f1b7f3413b2aec89a8796281ce7
MD5 3eac02638c639beb13105390d485fe5e
BLAKE2b-256 a8db43d246612db149f115aafead0e07903b6cbdd859c750a5c8c13391a45981

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf74e90fd311897c5f73d80ef334591af2c202000096822fe45daec8a08c0710
MD5 95b8afeb3bb624d90a25e2532e5a3779
BLAKE2b-256 e52a3040b51127d9b42e5d14e870c5af02ba0cda05f13c61560211d40026c2ab

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 797e32a7631f5e7c20df6a7ad13cc6fc621f215a9f2ec2e07d1b5ce025119970
MD5 bee9e9f9bd3a5c7936ac85c2ef3b56c5
BLAKE2b-256 45568871c269e3d377807b1efc0fa799be3e85640148d28beebab8a89276d0aa

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7cccb34203bb77a8e36d6b5239f0ac4b54fec4000b68e069d194f10088e15f2
MD5 ad1780c9bdb0d781b89fc7ad053c553c
BLAKE2b-256 6e30ec7a5ca372ddb5999e5b6364dbbddf79733f6bc62e3c9f1363447bdc7d75

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd4665832b077ae09341a6f70b283617fc00ccc13cf6f703d0d5a485417dd2a6
MD5 1c5bf298b6b48add2ac7bae7019f2732
BLAKE2b-256 56ff90721e3dce757e8aefb6ee049c3ec45e20960f5d37055e248ac75273378a

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a423e568301934e372b9ca5fd03e2e7f0cb37c20f1975ccbefbd2da1b16a670
MD5 a570c6cae59da60bb71bc8697b2396cf
BLAKE2b-256 28f11e6dd6fea29df7bb66c8969378aa8045faf10af57342d03f7584aa488445

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92dac02521b228e942a2d59f56f970c2c7057bf9cc985d989b344fef6e48ccd0
MD5 68bbd11cdb2466b3d6d88f830dfa5fbd
BLAKE2b-256 c93010076526af47c4ffaa13688bfa294d0108a650216e4056991b575fc063e4

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4970918f49c24b3a21269f3e98db6fa56e664f52aac6fa75c50d4fc7872fc17e
MD5 8e9c95e12c7f2e07c43ce51c767db046
BLAKE2b-256 4104e9247942fedcef583785812a1adb39d2f9d8d81d6ae51b17de1b81575674

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d45e9b3872178bfd24322aabd4d9718b676272039ff5ad30a06c019155f7361
MD5 f234e3e17e6f67f96bd43ea8a3258e99
BLAKE2b-256 0b737e608a5d2c72e4c9649ff52357956c954333b06aa74bfb02be7c88d8695f

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f07def1575af8ae7d9cdb96c72690c83b36524031034167fcb237c8a6526e53
MD5 9bd0b39eb47b64777571af1e9309e7f5
BLAKE2b-256 16382d6068fd9e56eab1ed602011f86acc02a8e6a2b1697b013457cf93b739db

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 845ff46053ef73d7d2bcd7233e663a9f24b1f6c8db88602711f0b622a5ffeb63
MD5 b95f8741819e86efce9ee76100f8bbc0
BLAKE2b-256 3658bdb92d1c3ecdc9b3d00de18e95e23cfdda653636f16e60a50942f270c5f6

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bab39fcd20290a5762e9ed98a3db099d8978fb896763c3ab1157fbf9ad8701d0
MD5 a3c0eb5042e5744cafb4e628350ab4f8
BLAKE2b-256 279367a4c70cf0e476d44d144364fa72d59b2af123f12db27651eafeffb417be

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbafebc399bfd6d5dcbc4b87eb06df37317cb1895da65ef9675bbfe8b8f55f38
MD5 a0ecfae7b6d1a50a20c7720440d0f7da
BLAKE2b-256 8b5947b43be2326fe3d026423623aa6d2c895564b065a72fd0e71b96dffa9483

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94ac0e373bc9ce7b2993cf0a08dcdda028aecea00277b3f443fa7ad57a284080
MD5 f18f53085ce0e2d47abb992ac8acd217
BLAKE2b-256 100393a8497890c101f0d9ddd0d75a7c480a8c6b971f4c8811b8ee36d4e7e87d

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f0544a32661f6c0a5b9396f039fed05d00d52d405223e2f131cb7b389f990a9
MD5 dc946997709065bbaab9a9cacaf148f9
BLAKE2b-256 a6a0267be13be7b0e83aac7e699e25bc18407b8c282b78149d005afb05f40efa

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 408c29df79b5a2443167b23562679de50ffb750554339739b6910f2f3964481f
MD5 6dfffd5af2bf46d90f62d74ac97987f5
BLAKE2b-256 50ec0bc294031b64c6f1406dc7c58f6adb9f82411699ced2e3043c15706298ae

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9dbf24d980f8436fb284d4dfe25e8433ffbfa83d564bad08132140bebb4ba634
MD5 a290245a47ad6758414e605e8df5af3f
BLAKE2b-256 a409b32ed6e716607b2492019121062c3f4f3c72ead31ef6f22f0813e80fcfa2

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyfixest-0.60.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 91616c50fe04a8f0ad92b471f286a957fe9d1b209aa0d93555ec5d007bfeca1e
MD5 a6512dfabb8961c17e377d71e6ec9dea
BLAKE2b-256 81705ee7cf0e40ef6c7733e1d330710e2333a5ab87435143cca08155ad11af33

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1635437c4930d755b8432244d671d7490190be60ebca3257442296f3c6d06193
MD5 8605ed53161f9e6d8ac1714501b9a48b
BLAKE2b-256 33b83f629158e8cd797c6d272579a8ca07f27b44b911dee562c2b9e56a5d7d4b

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7944e87dd78191741a43ce3e66d52dbad6c6b2cfe6405ae0a07b43116680736
MD5 64d7315b22d97f6701087eafb1275580
BLAKE2b-256 b34786efe92bcc4c8ba11dbb098b60b0dd61216845525dcf70e43488bf2788a8

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0acb2b42da6b6fa34c7bf5be9ec5c6b7de2e6e81d1aeaf5387cbb40930e567ad
MD5 5fa826ab66c54bbd5440adac911ca3c9
BLAKE2b-256 b38fa3d3dfeddd93083432d090bbb2c118302c0a934a7e7c6358e96ec5b46171

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14ab333b365dcf8f816a7dfd880736d990ac47833a1b0fc6a128569cf925d332
MD5 5759d5d53f1391c5a0f6aea989a9e2c5
BLAKE2b-256 ea5bc401c1d3790d58cdca116860b6128cabdb5df6733699924a096686af74fc

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 571b3eba93ba5fd1de9d9ee8650dcd31400e7d15a243f6f9f22b7a9e9f280e08
MD5 9871b7eb4868ba0b3cea00d1e8de4724
BLAKE2b-256 3b9c7dc5f66ad5e1938b84fc52295228c115c63076c11cd49cd03b6d2010907b

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 938e6895c24cdf42c02a3a2d1596a15fbe4c22ca85237c55616ca0b1a5154fdc
MD5 3bdbc08d5152a418c15f76aacb0a4f03
BLAKE2b-256 2d549d762ee81ef883344c8702151f5f5da6d8bfe8089064abb783fce09b527f

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 878e68d3f3086ccdf00135b047e8a9ea57aec80521c8321aa86d632091196102
MD5 8c9b65c14fd54ae6d47ed1d309fc915e
BLAKE2b-256 b93dafac4c415a71d4d44fcbcdf346c77b7c567ee1f9b3c296f50f26added3a5

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b75e71e79faba105c571c28dc196304ce62b9585a0416422ce08220ebdd640f
MD5 258df7054cbcaec166f6ad6ecda68328
BLAKE2b-256 e0d3ba0f32e8843638968a95c6f05b2b1b2b5825c91d2bec63b7320373ade927

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91bcbbf45f2944a683f6a0edb965e37e8416bdfe8dabf59101df46f3bbd751cf
MD5 733e066399c9f8b4812e850a39d31e9a
BLAKE2b-256 ec6f7758e2ec46c50aab30c70d9c1e7653d52ae925f2ded2c2bd063c4434ca86

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3a77b1f7d59361b5b31ceae306e5fd27382ca2df6dd6ece7aa08e7062ec9aca
MD5 8814c48c99e06ad03fd5225fbfc462be
BLAKE2b-256 f99fcca860b2e5f5878c7bde39a7e853d60a03f9bbf395165ec051ce5dba6113

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c76e98f375a4eafebcc27bf504b1f4d7e97bc2e207a9be7c8c0a4d06d0514d38
MD5 4cbb1f808c4dd34797fee3a62c9b4c64
BLAKE2b-256 c1e6421940d8114487590a4a587b45db9652fc0280a8a62365076a2cdb148f76

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4b35fe319486f81bd6e350bacadc6e366316654ae81b78df024ff810afe0e2a
MD5 6e98839ce471f46a99b01a820c227fe6
BLAKE2b-256 38b270e856af947f1c4d581adbf4617a165a1350b90e9fed52b329859d170eeb

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 649051e8e4b778ef1a7930707d6720c0555b5abcf9403f872378456e46013d9a
MD5 5612234281c2e4327349a9f4d254e793
BLAKE2b-256 0edb3f930ad36260654e595b120224bcac3d76876c6292160fc526c284ab14dd

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbb7614caa7db53df225fe34557270aba7da2d836e677bf284bf411a17205145
MD5 845db06180cb19962dead2bf668e5e26
BLAKE2b-256 ed140492d107568a93eab78cc30ef4d77440654e448954a926c8be10c9d4e267

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89797195a2f0b512be387b4ca5ad57e2af4176f701d1d2d4845522ced3fcc613
MD5 7d0a6f568cf8e50b7c0cc13a64db8dd7
BLAKE2b-256 c34f80b2d9459c76a42a60848877160bf985c3b6d82dba20083b3920742f59de

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c6b9e639c916675b321fcedcc7e3b7db668dbb7d7a2863fa0a174496269906c
MD5 0d4354c9dc20938df6bd4044ec77610a
BLAKE2b-256 b8711f8e11a08b990e8efe33e8c2a3e02355c577cbfedb494ad0dd91f13aeb34

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13867add7167e65549836c252d72f0593a4e31981dfb33a6c683ce958a1c854f
MD5 9731ee3635e67e667f0c20ea6c99eab6
BLAKE2b-256 179a641d1e7c84914cf1fcb3df1ebbc53a57ae499707d7e4bb8cfedbff7c0c4d

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 411e75df8e71757ba17550a81704b6c667b263768b92933a7ad8be475be02299
MD5 3ec21da5421cbd8447b0f0d7dd1dc5cd
BLAKE2b-256 a288f0a32fa8dcf398dd0997313acb79c85c28b5f86c0a2a379d11841379bf38

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 769563ae478914cab77c8b2eab5c745438ed09c171c3c4bed38e923b2edef272
MD5 af15d3c04e75a7e93511134f7e911a5f
BLAKE2b-256 1933c66f15bf9c5ab71298ee3c243beb7b10676469ffee8f7a3ab3c853410c1b

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbf9695aa68256a7e175176674b24e18da4b5341ad62bab9f1cac2af8df39ecb
MD5 02ea4de6048aaddd909a4269e19c1dbc
BLAKE2b-256 c56de793b5547d49ca6fa3c208fe4d0d90f9fd0c58624ba521401274fdd4e4d1

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ab01111be3b5bdc7ebec5123c2ac91be53c7981082c5cbd33cc3528102d8ad4
MD5 f2a939da0b926314d65876f97072e821
BLAKE2b-256 dcf02938e4f00f8553a81d50f0f2f8b7cefb7475b73520a5f858919ac11708c5

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2ad65ff560a94d0c3ad7b42f278de6ba723c62af6bf2d549b7f10cd8a8ab07f
MD5 1067318a93f07b5ecbeaa1e97a1a26f6
BLAKE2b-256 577cad0062dd6acd97cc1eca3cb241f9244781ef1e767a6f72ec769ba88b74aa

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2807c8655713e6219468db72d627ec226ab5b62fc355a1918b2c424c91d2eb46
MD5 94db7008cd9af5256894c348e39847b0
BLAKE2b-256 c4830dde250c3d45f6b3d908d647409fc199d624dcb948c6b8edc1a7ce4b46dc

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 723dd07d7826ea2703ac1829a2a5305114f979a5bb5a5eebe799603a9bb17a2c
MD5 2bc68fe88f41512baea4e7f0ad5076c4
BLAKE2b-256 b49201f9750ce22d6fa32cd58f3465f30ce7656fd5f86a5b0bae4ddacad5a064

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07db7d6a6a72b91ab24c24994707f4f792a03bf86debea5ffcbb7ffa4f302583
MD5 3287c75664fe23dfdf990f93df3254da
BLAKE2b-256 fe0341f24c85143df27f0684207eb695beb0630086bde293c1fe0dea27131e96

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1fe12537c01b72874748e1326e33b8c96e3dac498a57bf519bf20e240ee77b7
MD5 75fb52b4df34b9c17b9901d76ae8ac85
BLAKE2b-256 251b3737c3e66ff06650f0a2ec6149bef21ef6961c5fcc1d76850ddb5af1f01e

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d64f5e9e82cc27bbe37a0d1a85145cccf1118ef38705b1b32cd1bf7247a27e51
MD5 a5a69af80d8220292577a7905c6881a1
BLAKE2b-256 53cf44dddf62697f9649f00d7c1451d244193dfeb1eac6ea395fcf1a92ae95ec

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 887f92a88daa7c07565e3edd0cf9dece3a5d39b3295d5f8f4990a605fd670434
MD5 f8754080007577b1c3cea680d2f45959
BLAKE2b-256 deb0854d3f5560772b85f31cf2a58feaaaeca57ccd59207d4702375fdf7d20c0

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae999817c1d41e363c1c3f7518f4e905195a61e05ac830b66b64832594fae064
MD5 8603ca883fd2efccd8433a418f72fece
BLAKE2b-256 492f34fb473335c289e6b863c7f36d56a2db5fa763ff378081448ef265c1c375

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c78ff45e7c6ec634d2e068bd52c8af9561db7811460e2ed4f33880aade30fc33
MD5 9cb4682c3c56024f9f6cccd71821b1bf
BLAKE2b-256 81f5b2526e0bbea735365f49cbb06f0d3be4d6d536b5fd1aa0eee5f212f22930

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69dc3884a9a81a251ae774fcbf46916898a8f16e4debda98a929cd2a813e45c3
MD5 0370dde867015eb1eb772418a3e513bf
BLAKE2b-256 a2549be263ecbd12de2f2fe16dca06763e1ac5958112cb637ee1c3a6fa2ab5b9

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5ae48bbf1e6f2c280502fe64134eeed80cdc298179b64e1b37d277fc15350e1
MD5 b3ff5a3a145498479e5e1f522389190a
BLAKE2b-256 5c7ee25287af81526d7b48c7f211e301702f9f95c1616b9542c1506f3cdc8047

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c7641f275757fd9fc93aa351c49e91161d0b51e87454b55a55559163375492c
MD5 101f4a8653677113b932cdb49fca64c3
BLAKE2b-256 4e82f95e7940605e5fb5c70ecc99811b5a0a51bcd7f3ada31a8a07a77b209ba4

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad2498711231f0d1457ae14351c68f7cd87dfb5f4da63737ad945a9ab03c1efd
MD5 fcc96c81c283020ddc925b0de89433dc
BLAKE2b-256 e927cbb72acb991867ff61394895ca1652dcd4c4a0ec14f4f8fb0ac8a3f5a0b3

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce065d81f948cdeab2ec2add92d25dc603c112b7630106128e9c3fc450be4458
MD5 45aa61c70dff7dfb2c5c951208edaeb6
BLAKE2b-256 8802d426260c082b60bc309536c7ea605eada90c63bcd2f8f37757460d2abb33

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90b854d094602aa3435e8b2b2ecfeb6e00acc0047c60a7e902316c7dbd05b67f
MD5 06c53c539a3f724ca0f4d1d551bc8d6d
BLAKE2b-256 d123257dc5945b1c79af96e26df6812ac85c08cb89f532b27e821e080ac1e9b7

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdcf94771ab9857c48c8344d3316863dccc77e4b8d4bdbf4f08caa6a33e4076a
MD5 c844e93ca35b6a29c8764754fd67ff3f
BLAKE2b-256 9265ee40a9b5bc4dee8186cb042e21d44166fca6709214d0359100164cbaeeaf

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea32fa51853cb94ecea2794415e0cbb8b09604a4bb2c0b087b7a671c2b2415ff
MD5 77fa86fcbe461846ef3058d372901849
BLAKE2b-256 66581e0f390e1c6e1941d5e788949e68e4dcda867225a003c3505a7920565934

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d14c4f41a54534cbbd448e6dd87e9ec9dbe5ae79c15fed8c37e3f0eee58b349f
MD5 d88fba456f04bbe32cb7c36c3f59f488
BLAKE2b-256 874a74d5c8ef7bc1677b5aec3b5f353b0c51917e79ee6d12d7cb7cf4ed4fb0f0

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fccedfd401d7170deabf84844f3221c59576b29b848d7da7cde11cbb34775952
MD5 24ec2508144180a136bab231896cd81c
BLAKE2b-256 0f4c44f3b35165c92daaf2599285ec86b35e2c2277682fe316489b525ea5ab30

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5aecb2724584e2c8920ffb31eeeecee230877abba2ef04e229143f2d926e319c
MD5 d3ea4eed675a71ca1e3ef68d8a326135
BLAKE2b-256 be7c0695445ce9e026471fba162b80957db91d9ca2c761db685094e7ecdccc41

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 207467f1fb77611895cc98feecf7c4f626695468cdb5acd8203525331fb795bd
MD5 2a76c191827fa26d47334d0b3fb9bb47
BLAKE2b-256 4773493fcdd9c73a73aa8ee5022a38889903684b7135076b16e35846a786d034

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c0af86e9838880f517c5338d4dbe936baaaea8f325a4fd038b4b9adae43661e
MD5 be1aa3c7dd65352cef836fdb4c1638cb
BLAKE2b-256 7236c50bf278683fb7c9d25b3db8b50ccc88b1d84c41b41c74a0a563554334f4

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3a82bf756bfaff35a015fc49bd51e9c0573618c9caa21be6aabb51dcc7ae0fc
MD5 3ed49312fbffd302e3a2efaf797cf1d1
BLAKE2b-256 9845f5d4953e1cdb285116f7313c69895acc712a281b9b2e470b62ead6711f01

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78c924713d597c28fd55193ed327022140ce3f911777695fad84ab35e17878e1
MD5 1fd2be89d7b83b139ba94236614fd559
BLAKE2b-256 6f120ab3920643f52eb21271b952b79998b374bf2e68a651f5201b4ac8aa044e

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7f9e5088e850393860c3f7c3d6659e92b6091355c8cb07888485177ea6607b0
MD5 2556f4151e3aa68bf81af4818c8bd1ed
BLAKE2b-256 0f266dd0eccad8e21b0a35a46c6b8ee0c75c77b9b6940ff98c4de3e68d8f07b0

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd8d36846418c572040103c94bd65070fe76576b81a00f9224bbaa34e9dee137
MD5 c22571e690f04473ce12f5b2ca8f232f
BLAKE2b-256 9c2f641cb0eb7945b81c546d7cc4b0749d2151180ceebffdfd9e67904c2e48e6

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff1a0aff2a2d6ad04c75728aa212ddc69e67575e2f5a4572b58c1680eeb6627d
MD5 61e5d069494b8258e473bf17193b869b
BLAKE2b-256 f6591c46bc8145521e45e16d194141a39f47efd4d64bd7d70122663d03633a9a

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a7a2922b8686765edb159fa78e57a3578e8cede2df1387233bcec4945127b09
MD5 a48597e1d3a6e7a790349288967e0c88
BLAKE2b-256 9dc3039754a3d442d6a75a143b04058e41e0446ee53694c6085e1c77a5b44681

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c90dad21e1f35cb46a3aed03ce40a0a59b7e24c54a2188d967319d5cea925f9
MD5 4a84060585b6c6968ca07e42a30fcedf
BLAKE2b-256 f1433bb5d1ede3f6d06f0d5b15cd7b75124d646578e9c10ee9cf309688dd554c

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11f3b89ffcff61ae6ea95009e74d380c4b9c858f0a0e39bac972fa7b3308bd11
MD5 4b281ff3ba875476c89273d989dce401
BLAKE2b-256 0f30fe5ff1af9a5fa3e5f5ef50b98f9ce5237d9044ae1651ad15cb9a77af2eb6

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb4d4b4730ce2b751601ea9c48df945e26e2dd71e786a1e54d186497ce681355
MD5 8730cd06e016207a4eb714a03caa0467
BLAKE2b-256 6b26978ed03515cd2739f6731940c98a00dd5c3e0956b47c5d1e845269c86112

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b0b1ab12b2d91984d544b723b53bf11cf03fcb80ed4c33957be8309799ca83d
MD5 cfafaec32dc790da93df213fda9c2b7d
BLAKE2b-256 a91ad89f9adb7a45e2283498bcf7c0a9524310e94f9f704474e7e111e349c78e

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 133dbef0270628e9277125c90759fb92b6f1dc1559754aca926d81ea2be820ae
MD5 2027cdfb6adc7843bee8b8f0b94fd188
BLAKE2b-256 def9c99a77b82f930e421f005c325dbc11b619bc7afa2530611d7307651bc410

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a892d90e4aac5f8b525d1f7aec6083798e29e6d672274fc0cb99426b4a3c202
MD5 db8ced23c00ad6da6d52f58ef6d0c999
BLAKE2b-256 dac4aa01ec0f68530fa564f4663e4a772cdc85e8944470c78c635ce6c37318aa

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a867180214de8b27b81baccb666a9943ea5f73e48f81b147a69bdbed0b0fe34f
MD5 3f40bc237c00a744c4bd6f6d3a12a0bf
BLAKE2b-256 26c9b743a7e136a9a954688c509602e3ba1ebcbf98647b79a689a545d3c830c1

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 482d391f498fc1c386552c2c767460311a78a5a9607b6a3a4ed89973bd75ba28
MD5 eb82476621a9afb4e96d638aaca745fd
BLAKE2b-256 477777ff01a1061f80a09afcc008005f0e1b83484a25a85aadaf9d19b9fc872c

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92b9b42327e1c40ec68fa0b33cbc021ec950c81a6f4e6f01a6f2f307e6cbdfab
MD5 540790f89f4c316c958848675f691f5c
BLAKE2b-256 89b032e803870d50937dd1f4d5b4a8cf2acf960757fa4612131e76d77d550ec6

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2eda76750d376ced2715cb2a69fb26e09da2ad35b22e7162c1f31a5f57feefd
MD5 c3a86424500c75c0a11ab37eda5aa128
BLAKE2b-256 ff4754b7fc18917b50d58a85e1cfefd4da7de8e00a0ec7e84438170d04838fd1

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07d4e2140a83ebf0974e6e49cc4e32db589c5bf16b133ef4875f881a7180b408
MD5 502979b95031d510218ceabe9c5c8fdd
BLAKE2b-256 f91a1f608ce02d4f78d827079b20998844f66b0aed4b08bcd57ea8ba0d3c96e1

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 323c16d1727df8a63b8017002ac626d80fb70f80a1b644ccadefc62bebd53702
MD5 4b0b530bf4e3c1e3d1f05159002c42e9
BLAKE2b-256 f4408f0c2b84a9b61198fc64009bdcfa03b66bf7e860f1eeb50966223c67a282

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 854cd422115764aea36440514de89d3fc199f924c20a1b06ac4a13ecb0ccc232
MD5 442a7e90989d0ff6f2ca015360660042
BLAKE2b-256 a7df882bdfad2b2e5675c158aa720d62d75bc3ef3b1431684d504c1e624140eb

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18c7454a2b3db262b92efd372af1f18527e45ee5bf3ec50c1811d47f1dec0666
MD5 e98cd80ddad1a6559558147926974a08
BLAKE2b-256 55fdd61e3a317501e91b10eee6fedd4833f69e293698eb7b3a077b3ae9b584d8

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6444d66c5e6d3cae07fc01e04d783c0770b02bb4a115711ec4d3e4fe3b895f6d
MD5 89255b3719383fc428ce3650d3d68637
BLAKE2b-256 e64406dca22ec032268b50a7d24a023b055ee025a63c90f4f80b70b2d77c4e00

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a757e0bb923e6bd46baba8f0df5e3d8cc19900220be313116ccad293cba7040b
MD5 ae6a4361f7188a62469560984725c719
BLAKE2b-256 fde49e6bdf90f1dbab08cd65cd57b3e037fccdac67505f37173fdbb5d8b373ff

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c86a97620d6152dd21cc6509f01869abde75524fd5638aa3ea1f194866523834
MD5 36e52b9a4466ae9129ca183851da2cdb
BLAKE2b-256 8e577a9c156991880fc0d60df25e52ac8f5a7618bf71c96e8b1105dcd5f8fa2a

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c62d60b87d7d7bf32aa17792f333a72731f6f1fc6ff5df9e49741558aa4d0d00
MD5 9ed64fc4dd734e782d75644806d4ae00
BLAKE2b-256 eb2261ff4e972fcd4518054fc859d4c61e64aab069ec3e5568a6a7b17588485b

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa1c22a31675c97ee7f8baedf6202ce8535d23e3700eca8c70d80ef10ae9a972
MD5 a3e7c047fbc712aefb0f764a59aee941
BLAKE2b-256 33363618d8b9062eb2745cc3467ed8a48c64fc02cd2d457f43ff57b71d5d6e13

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 741b4628331928735cb2df48e14aa1f1dc317b433443fbc3411db4cd521991b4
MD5 edb08dc493117e23297fb05b08a24349
BLAKE2b-256 57c16f0f7de23d3e37d14792e21c5705898601ffff19e3ee4ea3559bc198e35b

See more details on using hashes here.

File details

Details for the file pyfixest-0.60.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfixest-0.60.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8899f2f9e4dffe8ba61a7c3a2127b5e58ef85e2f10b9060b45513ebd4f2b0ecc
MD5 73a18c1b0d3741386a1b5c1a5dbff053
BLAKE2b-256 c66bf0fcaa8d51510c8ba73c1adc69381f99255d692e67d0094dd3ed2d1cd3f7

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