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.0a1.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.0a1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfixest-0.60.0a1-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.0a1-cp314-cp314t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-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.0a1-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyfixest-0.60.0a1-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.0a1-cp314-cp314-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

pyfixest-0.60.0a1-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.0a1-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-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.0a1-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyfixest-0.60.0a1-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.0a1-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyfixest-0.60.0a1-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.0a1-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyfixest-0.60.0a1-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.0a1-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-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.0a1-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.0a1-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.0a1-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pyfixest-0.60.0a1-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.0a1-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfixest-0.60.0a1-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.0a1-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.0a1-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.0a1-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.0a1-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.0a1-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.0a1.tar.gz.

File metadata

  • Download URL: pyfixest-0.60.0a1.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.0a1.tar.gz
Algorithm Hash digest
SHA256 f6fb6560886c5b3ec191c8b979e41c394b6dea89eb28929c25146b3d940490c0
MD5 4e990bb60538337e1af1a1a1385f5734
BLAKE2b-256 b47c66a3e702df92dac8159ddf555b6b98e22e6beffdd66c119b07f4cea24295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a36ac295b82cba69a439c2636d3893f366f0bcf965e692de5ee5628e18a1a67
MD5 39fc19939ea483c0137952e5254a98da
BLAKE2b-256 8ef67f4504f4c12fbeaf41b9277c58a1944d0805d537e43817e9105aae24c751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a59def671c437741fab8dd5d96c2f78c32c480558ecbb0cf8dad6280a4a44d35
MD5 a7d5388947e44fee5b08aa7357552421
BLAKE2b-256 6dbf47f0065e103425d6c4c0bff9e082d74aaad91a762d2a991b7c180e5c515e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c490f2a0a8aa9bf697d7efb06d626a5318739e4652945218697957393c6e25ad
MD5 20544fd1aaa60c6e439b94b8df700ead
BLAKE2b-256 aeec35b9b214e0cd6ce9fec7c2b1856e8625711126f7e515432dcd06318ee35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b15920b6a1b3e5ec5604d96352c71283de4e73b791c9818fdaf80c8a6e2b40d2
MD5 c7c3dd03e4adeefaa6c1dbe448961428
BLAKE2b-256 25d01a0038441dff3ee07ea05bbfb88809f23d9f311dd4596faf3deea0779742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65069d0c528c38cbd25b30d790642ad4d5b110745f9d8099569175ca10375daf
MD5 c77834658dc867f6b4b190fa663255b7
BLAKE2b-256 bc7bae13ff306eee706e7c17ca9f148bf7c34fd675c9843f45ccb2f42f3ce4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f51ea544df6d9a2460ac6456d64830e3c2b29cba9dfeb45d002b2c4d165c24d2
MD5 80ba7445e931faf97eda1e59ff7d2757
BLAKE2b-256 f50198a193e35997721bde19a99e77448e6cbbea7499cc81082753dcd106a2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9f794a134537229c4f3554be71d161de26a2efbed681a58eb9a1a6c4299ee45
MD5 efcb02fb4eec1be1213489e2e6ef313d
BLAKE2b-256 3e1dfa1a21cbfef600e0bd94afcd9e73ef35bf1019c4cd3668e2cb165f7b9ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76aa7dd6f5c3c7046e7d8d70fabd8d5eb9b7a874232a756cebba51859d246eb6
MD5 3def697ea6cd9b03e59e422d18251f68
BLAKE2b-256 a87381df96bf35ef76f526327e5fcb4af448a0207b2c854c0fe2b888e2b84cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0051a9c84efa2e28a4f1023819688e79cba3359871bf2702408eea67e48c33e
MD5 c6380c205d2b9180631a76c49421ca36
BLAKE2b-256 d5c70835c32cefecfaa1ec713f9eeef5538f556249990c31e255d283a95ec4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08be8dfefd8809615aea4a8b3b6af45d97ff5e468b76e0bec329a1717063bb14
MD5 0c0ceae04f300ac11a7c9051b505e7c2
BLAKE2b-256 45023b0b6d12324761ab5140b33230964552ad10e2d88863ef2f3b8179416e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 413ab99e77a0f964fafacf76a3c754af68f416ecd8236f0c895728a1b54605f2
MD5 d9963421f706cc47b229db4f9e1f7d0a
BLAKE2b-256 1528386e11327d831dbba6bd1a3837d81c6a2757dc8456d5472853d4a6bb70ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1d0e32582a728dfbd4a25ba959fdbce675889892836a778e69f3723e9137dc5
MD5 2f03c87308eb88a4773a6ee9e5f31f03
BLAKE2b-256 8d8fda80cb6c26cee41968ce84e5f996355a05e669c011900320d4ea6942d49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05380e67fecfe0987381a3da035cc19adcc92d47077e1e7c9d9dafc61213f12c
MD5 33d9c3cee8d859a69011366575042119
BLAKE2b-256 4bb421739807e2a5360cbe2c4972117d4143cc6e311f4cf1de250488a5fa2cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff17c600fe22fe8340f2b857a1f212fd234a2e4f516cbe33b28e2ba488e08bd5
MD5 6edb9be48b6fd37694803cab4cc16183
BLAKE2b-256 2033522f2121f2f6047e2b3d3e57f30a15fe05beeb0947dcbaa3e8f607f3ddb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d186bf7145ba49e30894bb01bf08d5efd726b4b4de91a9057a1eb3f5ecff1b2c
MD5 5e078afc954c045a4d90e6156daef519
BLAKE2b-256 daee7a8de8df8ea1036bd53f2cb3527f0c5b4ad3a3c8fe82dbe1772e4bfde0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3b416c48f7bd529f6c1eb31f79a8b40b71472b817360e55e72380e4c69f4a29
MD5 582ef8fbccdb25004a9ebe6c59368fb5
BLAKE2b-256 945742dd4fd2bb6c6231d140137c4fac5bc875b65c45ff170bae49d8ee3978d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a8ee11a25c1838c480a9997ce961b61fb06178514f79afc1a26a98d6599faf6
MD5 3e14fa6420a0cd9a93c94b413b9a5ff7
BLAKE2b-256 b2912a07cb4095410d38e26e973d39431807665d20aef9b629e518d56f9426f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a560f13d24b19acd0b3b87b35614fbea92528747361d145f35109d3a6f7631ce
MD5 0ef17a9b5f294685baa17a40a7921f84
BLAKE2b-256 1778c48ac51181ffdbcbe487862a5d246975971df58a1a723b694b3542276441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83b3fe60c598e5cf0c6b5fc473b9bca624801f2897a39d27677316b741ae7c56
MD5 b1f7667254d87089814268ab223fa8f2
BLAKE2b-256 a6356e9d123dc6990419772efb6a3d32892334637945f9addcf795c6ad8da19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 492513091dcdce30b24141cb8981ed5cac65e72a0748da186949cd66c4616777
MD5 1a9db51638cde9978f9de4cbab76abf8
BLAKE2b-256 0b52f53361be4d4943ed979b5f94611c9d1cda51450d8382c5614b77d68cea9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9db10bd824cf33ecacc1bdb98afcd534c0c7dcc590703b7b5d1a100a5b5d194e
MD5 39efe1bf6c626a9111a960560d771a6c
BLAKE2b-256 49a7553326d6069ada3d89a790b36e6231609257200df077b3ca12df63270476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be90d2f8b8544d8ce649dc37fbc4e70cfaa4b27e8e024671fc3f1d79d4e2f70a
MD5 8a69ff302e6d5b20b4fb0385297d4805
BLAKE2b-256 be576b53b353f0f47c2867efd6b8e7e1a43c26738d7d19ee954826714f3f07ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9e38cb1b1cb8aae94b31f9218be55a29a33e79641c473b65d39fba0f521dd22
MD5 88c8d577fcc2f1f6b47e5e0cb1ea9b96
BLAKE2b-256 321297034e0880a4ee287e571c5b69235ca9c4db1af6e52d260f1baf408d4e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e9c32c92d1dd661ccffab1e8fbe0a8866ebfde2c0fa7b09cdbb22353c870f6c
MD5 facbb66e6468bffd75a57aefb52ff983
BLAKE2b-256 ae6271c98886155bff92f11b893ad9f128de7df1f34188940bae3525f3f1c827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 049a96d9c1eceabc5c2caf0d519ac1ad432b62849a09854933ff0d62ce85c40f
MD5 b01c6e1d03b65e63cea01c9be946647f
BLAKE2b-256 485fadbbcb2ecdf9e8e4a2710eb6dcb3299d020cf87fb042d455b197b782f1a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 182d104b584428fc70d348f83eb56324d02c6027522dbac7102670930a30b03f
MD5 c6d433d4c8d0f0e86af07b7a40103a9e
BLAKE2b-256 0d55d6f93912c5cf5e65e3c7711d7bcced92bb23f27b87907e707f922a742ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed49cb7a116abc8ca80737437bba4dac1e1ae1d7aa9059a15be03524a73268c4
MD5 41edf0328f05c8133d940c126f65fddf
BLAKE2b-256 eae1696431ff90f7d4db5fa151facab95bf4cc271e45af7782194332c90f99fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 42901b9593e7592a7299c634a8f48915efcd7bf4698b30b9188df33c29e1de2a
MD5 0c541feb49daead69947a1926087adf9
BLAKE2b-256 d29643ab22af0cd57af650c4097d958c258760c89c8a924a18dc4d32d5422961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fbe3f243009a30d4259024e0596f6fbcf93421f426fd21c33088e36d2255c9b
MD5 3f42e291793e028a7d3f0ce5801c15ac
BLAKE2b-256 4fe55ab77405218a036a6b7f6e133aacbfcc62f63634449daae7d209a14f1c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93df60030fdea426434dadb225031bf6748cb30789ecc8a3d80f0c1cdc285f7d
MD5 69ade6253d3a91ed74d52f0740b35900
BLAKE2b-256 f763767ba92c9d9552f5007d2f39997cf39d801150bf6005995531dd24e995d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d57b21ff8d5f07e79f26b577b7b9ec23c4ab46e50f5cedd4513a9346668e65b
MD5 785e68f67a4ee491f30712b18f45097e
BLAKE2b-256 9e483ff3f419f769c92ebffdea4b719921be864fe228adc881713f1759c423c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0204fea1604a501df87eb2024321bdc581344f05e43bced2e576c1542a15f92f
MD5 fb59d2c869fa8d1a1b43ffd0112a4228
BLAKE2b-256 ee2dffb4a0b42e1710301ce6d1abeea9c78d1727bddd4447de44185247f07338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79560df9d33842b7ae10f6e77d5e7c0c1f31e82fda1f748607fc9c4f74cdb448
MD5 21011d64c13592e7780e31e6805d7664
BLAKE2b-256 a973892b6a54cbb56ab55203da10fe519432c02144fc2698b086afb9e55c9bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d5578e1c3607d5da8fee8c4640750be37a7f9eda0b029eb26459067691a7233
MD5 d8978868d8b77ce0010e500d73541c54
BLAKE2b-256 9366f2824da5279a58e251e6514da607d4dccba6163e51e7a9f9afef01f081f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6dc92603f5da1f9270b32edf358d6ce3fc778eb0a86fd97bc06e4dec92aa2b8e
MD5 4289501ba7234aa56812f7db1a812fec
BLAKE2b-256 3c7b9a5d43ce8e832d844097bebfba1fabad5d3246333eb8a0639cc1f524e464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f5a5e758b636a76a74c1c08fac1f5ebfb9cdcabd434622d12e1eaf3c0a32478
MD5 c14fd9cb9ed5090519cde74640f36336
BLAKE2b-256 359adef4e7c8d3c2495a8c7d3fc83ca7888857f79a80ad0cb14bd519b6a4fce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 054df8cb6c9d7be108cdaa9a75895b4004519cbd781f56076f17c93624545776
MD5 ccd5672154d194ebda1c0f61e1c7b36a
BLAKE2b-256 debd6228ed557f85417734c1e5d1a9ff8bb28de2dbd67a435fd5249a1bd5e7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ecc44df58f927ecd2d3584b52c2e67495eff7f625a4e01ed4de1202714a6f94
MD5 c8614540492dae024fde20b8e36e5c8c
BLAKE2b-256 481db9c0ddfd9eb57d0a97c02b0de002d190ed887504d2352a2e31a79bc14bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21c34acb0cc9003c349d1ec0c770d6e3b9bc07db91e5cfc03d66527f2b8686a8
MD5 6ad65567a8aae20c081c1609b1228a9f
BLAKE2b-256 1f545a6c731f9d7566f1f8d449ddb6f1ac59c96f9fe4ec7efb5428a42842638b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a980c7c2167a4f29a04f64d25131624951f615ed2e6b3a4c18ad6fab649c9db7
MD5 0c176481ce73add0002c01de710d4984
BLAKE2b-256 5265585e6f72f240eadef4f9402df9693fa7f6b627b948ddea7fe0ddade01dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d87e902418a8cb31cf565c6d401ad5745f48e7c824e14498797b78f490c3b69
MD5 6ea42d5dc149df0159d5ba05ad963642
BLAKE2b-256 c9bab98966d781b232106dfdb79700dba171a2a708bb3384bb3ee7a117be19db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 143ee2dddbdc01985d63213602889d1fee7bd4aedf709c47edf4778b4224c606
MD5 17167b914624948dea968f3c5bfa2163
BLAKE2b-256 36e2e5536805c4ca2684286e273904025269b942f1f72edc6178f1c67da5fbca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1e56210034133f2ae31e42a88200334a1484dda2472b1af78a03d31034c16f2
MD5 f63dfcba30cde6f1c4fa86c8642ced42
BLAKE2b-256 36932b8206eb64c6d3590af871a867412c2a0dd9d04170d58eea9058144b5c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd53a9b23b1323860cdf7b9eba846d6a2ee51d071813ab6c86ea94a73faf8cd3
MD5 129941223b93881154bb67f1eea64217
BLAKE2b-256 5154bf9751aa109e20a5681be37db3957c5841b2c8f20ea51b9e10cf61b533e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b391fc645bab31a56abe57a5d24dd6bd8ce63af12b714fbbbb08ab95e6f03b3b
MD5 a576fdf959086ac26f28e1ae5923e190
BLAKE2b-256 d8eaae4db98fa4715a4a9aa6840ab18363435c899640ee1cbe58a0a80b43fc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2b8f5de5b0f25f59784898ec90626cc92f8dfc43ecdeb582e1daa728f9f2eee
MD5 40d7d9d87086a859669d528ebad7f30e
BLAKE2b-256 edd32ba27f67bf8f2ae711efae17df5b6b26e98403322d76a40249be934d95b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96d46314d24e5ae31ceb43bb6252a877a0e210585cd79165c03a1b6eee0ddb01
MD5 f9cd7d48ae9715a30128f2a3887159bc
BLAKE2b-256 e5a6fe836515272d188c895d3d541e87b4c90fc7e6b57ecbafe209884b2b4c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 446baba2109d7aa28ef75241018ebd3c74eb803a15951589aa6758816036c4ef
MD5 66538a5e8a099ddb2f6ad29890c84382
BLAKE2b-256 6585aba27853fab86f204acf2c0ebe97190bd5fa885eace0ef23acec9aae5ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4cefab3146b0e497f078e6d8f42e8e3532db3ba94d005609b588de3f87a92ec4
MD5 610cca5567b0fc9c5c25f256072139fa
BLAKE2b-256 c7ab56328b7753f941fd13f35e2a644948b9f6ccb13efcf287b0939894ab9722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81940b6cbe302d3098132760f0ebbf2613f76bcc3ef842b125fd01ea57cf5bcc
MD5 e4a600d880918b44a92590d45ef1b92c
BLAKE2b-256 a27a96d0d160e88d35c39d84cfbcf8715338179750b5496e2af67bbc05ddb7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e93369cb0c2be0643143a059db3e738bf6aa66037531fb1d65dfca36faa8e0e0
MD5 e33f43ad24096aac185c788ae8df4f30
BLAKE2b-256 def665f8cc687db33f8346a43f3770269be7f38f47d9019684dd214d787231ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61af85aa5bb9df3daab93e0513431ddf8132532271781be4d82b41d235a4a0b9
MD5 dc1ff5fbb9764a188c330087a301a466
BLAKE2b-256 9e1a0a592d2ce3132e44d8677272fb532347c5f2326883551e4ae9bcb4a074c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06dc604754cac9a3ead6b442ab47567a94b45bc7f552daf2144fd9faeef817c2
MD5 7a67f188af4cd36f53c72b43bf3d7a6b
BLAKE2b-256 cfff6216990639eb6eac3bea50872d7ff43e8ba05247b4ec84beca723bc8577c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9720e20c43752dc90adf1288aadb45aac69726b9a1907157d2d0cb848844473c
MD5 c9690f871fa06377e87aae9b1360ceea
BLAKE2b-256 325a6002e792cc66c2b579cf2443b114b3ca89b3302a74c6b1930e50c93029d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 270474b3a6c8b24f845a72bc72095e5340e08bf4c98e540941d7798ca2acdb8c
MD5 7837f5aea9e1d2d9d550068633ad6f98
BLAKE2b-256 b9621fd0df41bd19448a48337373583f9a4d288d2e3a1bc2616bdf9aa4e77350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4984c223157acb344e5a3d6948284b4af6b2ab4d843c6bf3bee986c8644ec346
MD5 c571c59f3f9ade3f9804fdb6137ef00b
BLAKE2b-256 bf76ed8e8f5b241bcdb7647989d51b605ea6f8bf15acf2c1fb99e6b18ab89639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c101dad67aa9677f6d59d454155c267298b28a8edd31f18e9452e100a570e9bc
MD5 b89e1bf3d6f2fd4b3c3b43763e9034e7
BLAKE2b-256 36fab19bd58857604cad35b7099a7860c0b6e277f980dbbbc8d59fe59b4cceb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d56d04d9086a0cdaf73c6c0d7198efd7441192b4ec489d35344dad3477c49247
MD5 39e352650321c9b054207723de959e38
BLAKE2b-256 e90a21816b4a1de220cf24548f811d645989ab72f3db134834ab157b8601b0e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7110cc4d343f4b155ce4d240250e358d6481f5cec87c74f2d31addbe15ac412
MD5 eaaba1fa90721ca3d90786c338f98a0e
BLAKE2b-256 3b23b42548d5458efdc87d10f8ecd84b6b85d3b3abcd43ded0297670004f42c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ce26d8b13746c24e3addba413d0dc6bba0b6580c81c45660e3aaf99487db6d6
MD5 680765fe50483dfde0f92924b0916296
BLAKE2b-256 78eef5740f5cc504a7e7ce44479f546de8c5c1fa107c4beb632948d3eae06912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2b0c23771072585ca8059bf1dc53662eeefd7e71f8c61b5302b168f883a3ced
MD5 27e45aadf8fcf3701749e352262287d2
BLAKE2b-256 7e9a5d3f6302e80681e16828908dd0c1e826544b076c13269d8536a11fd903b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5c3af53768ceddfdf206b2b9f75435343e4abea8f7513eef60c633367a05b330
MD5 9153f45a453800cc07b611f2bdcb42f8
BLAKE2b-256 2b16dee30fbf1eb5e4e362879f5f4eef65a7464c1b14b80f073881af4d79c5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bbb8715f6d36ac021619710eef51a7392ca2fb33b5e5b46265403caf4e226bb
MD5 b8449d45d22773d7d02aae45d58755d2
BLAKE2b-256 45aeb87ba31d6c50cf49a6a80f618f921497936e42dbd12a90f7c8ea713919e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbe0bd2de1e5fa2b93615b384bfc1a0e20908e95c1283385b72500d71e5fd20e
MD5 bf0ca8343825d96d9b83494639b4eae7
BLAKE2b-256 e360f8ecf3b1467544d6b9f82df5b8d3ea5621105ec631b40c242061bde7d654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c60df47de2a459f11b017988ef6837566dd3edce3c2c4aaa84a29930b61b297
MD5 49ac883e59f9b712ce6aba3cb9968702
BLAKE2b-256 12ec0cf751d399b33a966768f2b9db3bb1a25f997f4870dc96c833940acea95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed3a5661e96db7c4496f6481b369c899ec66a324c396e7ddaa65dc03b342d417
MD5 5a74f5db2a0c86c0ebb509cf13fe7339
BLAKE2b-256 bbaebdae5cdf70fe97a005eb35fbac9f195a8987b764bf94a27e1d791269243b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 138a3a12e04467d969a4aa7e28e20c97ffc2e119aa26c42dcb7022449598b4e9
MD5 15f7835b1e94dfa48fac8901a2e9ea26
BLAKE2b-256 f89e3b957fa3aa462406a28caf914e126b2107025bf9430e15894fda02d2d033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f46b87a22182e1c2a234ec51a322f4035d3164d6abf359a77439eb70906b5e9
MD5 52a80676aee9d9d309b34d330579353a
BLAKE2b-256 b070ef410b3ab5c5a0a3eb506dfe67bbf72938a6ed3e04ba1ac3eb553b69e4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76577003eebc37fd122bcf7f73b83d8b7f7c99ea82636159354f895b324ad690
MD5 66af80637da48d7e01232fab7901d678
BLAKE2b-256 ebd9144058bf3483c312e46b95a0f64bf3f041fb28b1dc57f6c2bb168476cd00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f06208e0009aca3f74a3839dfd91b6529741f09282b385de7486fcd2aaf47a4
MD5 1df8dbd15f603f479e14e81c6dfc8ce0
BLAKE2b-256 1d97f9a930466afe84b0255d377d46e1340ba90c4b8a1c6a8771396294c27756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99e3043e1bff1dd70ea23b3a6ddbd1ec87f1ad2102fc045648289921094afb9f
MD5 5bd7ab53351741bc94a417ee22e3a001
BLAKE2b-256 f2d618807337f28b897cedbf0d9cbcd223d70f0066709224a0a8b3c211a0e135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f610d9df34117d0de8b4e0f172a9f6d2bd7f315cec2dfd0bc75e117b3a260b8
MD5 ae2e34318857b1c47889d415c7cc5e91
BLAKE2b-256 85bde45a9f84eb2cf5460135abd296421a8560fd1573dca3a43e7ce333ac48bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a80e20df45c8c92e982eba9db0e12e81ba7edb43f26d184872b3fa105459847c
MD5 78b142f5510e584ab8792c14b50b9393
BLAKE2b-256 bfa49b64c18a2b3c06bcfe292265896264e31575dc29911154c6e2b4b2709c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a44401b005bf42b56903fae9f1c1714c300f52d049d4f9ec0a554b31cb2976da
MD5 6f9f61971ab596acc5696957fb9d4a58
BLAKE2b-256 edf66e3e02d3bb28457b16cbf35d85a63d324e7778c9356e694daf73b05881e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 28f49f6398ac6d839a19815891f1555469a8f77c5ce690da3e898a388bc2b1df
MD5 42314c232650563a235da676f187468c
BLAKE2b-256 660580b8451e69bbeabc5d1a91ace1f47b69c487d52978867ef9ef43043fb6f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d974f5bbd8af3d54d079d51f4506b07156c190d6207a98f6216d6683c45af7e
MD5 10bc907979249d99fedad2fdff2c8090
BLAKE2b-256 b3a59cc92eeb10f000f9a16fdc0b2b672bde51773ebd101b7c7585d617de2bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44a44f4dd27b6d8e262fbd9bff0b7147bb6ded160f4876e6d33b33016cdad8f9
MD5 7cd08386d9b548eea3500ae9e5428a7b
BLAKE2b-256 c69a571b5e92902d264fb656547ed74f14e1e05c092ead3182158980c5f55c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80b6602ab5e76c61f7e94dfc01cae88d3dd0d014aed47495adb4a4a46a136dff
MD5 0c9ca963c3113f2081cdb164f35d363d
BLAKE2b-256 aa098505f87bf1959cf8c6c3446df20d289e4f0a6bc56307344f4c93edbe33ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea27825599a57bb9b33913b21ec27d8b510964df8a2e6895f10f716de594c842
MD5 b981d5efd91a0d67328613e26e2b47fc
BLAKE2b-256 f50153c94507f1a07c587d5558bd72dfc00cf15b9b0ad3c7d6a76422efa4853b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00f5d2d192a46329be24e150e4016a6c2198b9a2e83447eab1e24413de7baf38
MD5 bfb1508c65a4d3429e830318bd88e93e
BLAKE2b-256 215ad849bc719e9682bea62800b84ac167b83bb121d6f127fae65a60064662ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f0ad3553dd01f715dabf38a37bee07b66da212df3410c42aaed7948af77cf1e
MD5 d7a5ef724b7c0d00d0f9a99c3c0fd186
BLAKE2b-256 cbec3dcaf64aeefe47e342124a14b0e2cc8c5ae706afbc454d28254b7b937c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43c2e467eb4c4a0250f9fe0bb461ccf7430b5bf7284845fb7db789faa16a2079
MD5 efdc2f3b090c3bda08c8a3e114fc2f06
BLAKE2b-256 3c21cdeb111912999e6dfd0decbf96c2394cb4fcd46a2a114680afee7d75bb99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbc634346d7412b9dbb30fa8eacef676bf0c629c722301daf73fd8cfcae649d8
MD5 cc4a298cc0c2502d6aa65cdfab6c2a78
BLAKE2b-256 ee2b92b4824f17f04b23a6879ec9de18768d3a530ea1e6eba3a20eb7ee718125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f005ca90af778c58d948e9fa7db4949fc668c78bcc33bca872f4ffce4a20ebae
MD5 977401ed9eba31afd953f27a5ffc5981
BLAKE2b-256 d07f2f4805ce6e941c021ebba484328a31c04e3156f2deb83bc27eeceeb704d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 417e253a83099f0719d672f6072d039e5d545b8409379f663f7e673d8f6fd259
MD5 98e834303966d42cdd3b6782197e9f07
BLAKE2b-256 446bfa4439156b4ea2d3eeebf1f9b2cbc52d67b101660429230c8b358b8bb480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb88ab26bbfc2e181b96bd44f7e516347b2fd6eb61b2e71254ab8688ddc6a422
MD5 2671eceb36c93d2a0c3fb18ed4562dfb
BLAKE2b-256 f8329cdc73da58ec6e7a1b659c796d2638c414c94f0822fa3ed5bae9bd3571af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb3d5b9fbe2edd3e927aa3c777b157857578e85ae444cf3e04ddc3bf178bba31
MD5 7c3a42c1b37231f8ce01da9fb214ea15
BLAKE2b-256 5b1631c5d965394ff8ecf04711793c55bac74d9f42e7d4abd084bc8ea4060e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e274323ccfa3de2dab78fccab6228b9cca050412a740a20ece6623879ad6f6fd
MD5 47db8b9794408c03baaa85bba77bc2f1
BLAKE2b-256 3792c675af17d779078ac616ac86213e5d4c5c7ade3f81766e1bcfe46aa84d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 743df0e5f81392c41edbcf0a829a83a2cac90cc88f9ce60a2a987e1b9e782662
MD5 d2ea0a7a5d1c6e438adb9419e6d5ee09
BLAKE2b-256 63791a8a02459e35a500e8afe071ba913399e5b376908f0000c2634f86d9819b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e270da47b3149b7dc41cc1fbe41e3009e7bd1ed4afcf71e911e21dd5b528177
MD5 cb4f06b516bba9023b590b27acdae2c0
BLAKE2b-256 8008989c27b90b65b24a46c8553b2f274f332a2a190baac00928c388d55b87b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b65fcfce2d4b24c5d9b32f750f08904b48e4537ff86fdd5eab43682e872651cf
MD5 45ccf69f42c07135c76aa5066e80eae4
BLAKE2b-256 a4c7e2a53c65f7e6b5e654628600a2ef644f5657d37286d808e991fdf06bce5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41c6aa636ea60f56f44bb25c08b9d0ff01e9085cad9cb96721a7c04eb733417e
MD5 c75566e23396c64e1c3a666be6c94072
BLAKE2b-256 03b8f625c526956e8271ed30ae0012f9527c98f3d00f3353757687af0b8f2067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89baead7f3d5af87170f626e9e6e03d33377ecbd3fae6f31da3bd53259334331
MD5 1b086321c48f4df26de7c870e58724f8
BLAKE2b-256 9e2b39339c71e7382864b2b480ae720a2290f2cc3b1a88ffd917d48ce401e251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ac5da9303d948d3c43202357683de0f1e0a3b2e82ea667eebf12259e4045272
MD5 18ce50e333db17f35f2a4b304609fc41
BLAKE2b-256 f479c6cd80a75423646017921ff68d94a0542fa53bcb0c630cf5ba87f91fbc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d56482674aada444e80a0b26b4880c53cd6b93670f69a8bf92ecdb2ff939dcf
MD5 2a33a1e7f1fc069268d53a9b226f1b96
BLAKE2b-256 683eef857afe71898fffd8efee6cbdb5e1eea707824391409955e73a69bc3059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d41fd2233107aafc01373136d9275564276c3348b52e05781d5d9eda28cfbcc
MD5 1841c817e15f77176aa507f000185563
BLAKE2b-256 668ae34c1bd06a355213e59a7b60228c2ed0a6e6e0048caf4b65486a85efd644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8b88395206b80a4cde9446fd2d3a38eed7319cbaabeb2893794829f30b89989
MD5 9a18c0209e4912d04112e09c08854089
BLAKE2b-256 3d2597e4a841689fde0437a7dc2f8a218338aee89240c5c1cc0a509e88e0ebb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.60.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 199f668dd5a9ee313f6879954cee7060f8fc6fe4d2c03a3dd0a8d9c9026db20d
MD5 9ebc4ffb0750ec8441adde61d12160d0
BLAKE2b-256 f379e219c9ab74b0f5fbc052b58a3ef2dfb657dcc06d345b9fbc3db6456da710

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