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 Project Chat image Known Bugs File an Issue Downloads Downloads Ruff Pixi Badge Open in Codespaces Donate | GiveDirectly PyPI Citation

Docs · Function & API Reference · DeepWiki · Report Bugs & Request Features · 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 a quick introduction, you can take a look at the quickstart or the regression chapter of Coding for Economists. You can find documentation of all user facing functions in the Function Reference section of the documentation.

For questions on PyFixest, head on over to our github discussions, or (more informally) join our Discord server.

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!

Features

  • OLS, WLS and IV Regression with Fixed-Effects Demeaning via Frisch-Waugh-Lovell
  • Poisson Regression following the pplmhdfe algorithm
  • Probit, Logit and Gaussian Family GLMs with High-Dimensional Fixed Effects
  • Quantile Regression using an Interior Point Solver
  • Multiple Estimation Syntax
  • Several Robust, Cluster Robust and HAC Variance-Covariance Estimators
  • Wild Cluster Bootstrap Inference (via wildboottest)
  • Difference-in-Differences Estimators:
  • Multiple Hypothesis Corrections following the Procedure by Romano and Wolf and Simultaneous Confidence Intervals using a Multiplier Bootstrap
  • Fast Randomization Inference as in the ritest Stata package
  • The Causal Cluster Variance Estimator (CCV) following Abadie et al.
  • Regression Decomposition following Gelbach (2016)
  • Publication-ready tables with Great Tables or LaTex booktabs

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

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

python -m pip install pyfixest[plots]

Note that matplotlib is included by default, so you can always use the matplotlib backend for plotting even without installing the optional lets-plot dependency.

GPU Acceleration (Optional)

PyFixest supports GPU-accelerated fixed effects demeaning via CuPy. To enable GPU acceleration, install CuPy matching your CUDA version:

# For CUDA 11.x, 12.x, 13.x
pip install cupy-cuda11x
pip install cupy-cuda12x
pip install cupy-cuda13x

Once installed, you can use GPU-accelerated demeaning by setting the demean_backend parameter:

# Use GPU with float32 and float64 precision
pf.feols("Y ~ X1 | f1 + f2", data=data, demean_backend="cupy32")
pf.feols("Y ~ X1 | f1 + f2", data=data, demean_backend="cupy64")

Benchmarks

All benchmarks follow the fixest benchmarks. All non-pyfixest timings are taken from the fixest benchmarks.

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

Multiple Estimation

You can estimate multiple models at once by using multiple estimation syntax:

# OLS Estimation: estimate multiple models at once
fit = pf.feols("Y + Y2 ~X1 | csw0(f1, f2)", data = data, vcov = {'CRV1':'group_id'})
# Print the results
fit.etable()
                           est1               est2               est3               est4               est5               est6
------------  -----------------  -----------------  -----------------  -----------------  -----------------  -----------------
depvar                        Y                 Y2                  Y                 Y2                  Y                 Y2
------------------------------------------------------------------------------------------------------------------------------
Intercept      0.919*** (0.121)   1.064*** (0.232)
X1            -1.000*** (0.117)  -1.322*** (0.211)  -0.949*** (0.087)  -1.266*** (0.212)  -0.919*** (0.069)  -1.228*** (0.194)
------------------------------------------------------------------------------------------------------------------------------
f2                            -                  -                  -                  -                  x                  x
f1                            -                  -                  x                  x                  x                  x
------------------------------------------------------------------------------------------------------------------------------
R2                        0.123              0.037              0.437              0.115              0.609              0.168
S.E. type          by: group_id       by: group_id       by: group_id       by: group_id       by: group_id       by: group_id
Observations                998                999                997                998                997                998
------------------------------------------------------------------------------------------------------------------------------
Significance levels: * p < 0.05, ** p < 0.01, *** p < 0.001
Format of coefficient cell:
Coefficient (Std. Error)

Adjust Standard Errors "on-the-fly"

Standard Errors can be adjusted after estimation, "on-the-fly":

fit1 = fit.fetch_model(0)
fit1.vcov("hetero").summary()
Model:  Y~X1
###

Estimation:  OLS
Dep. var.: Y
Inference:  hetero
Observations:  998

| Coefficient   |   Estimate |   Std. Error |   t value |   Pr(>|t|) |   2.5% |   97.5% |
|:--------------|-----------:|-------------:|----------:|-----------:|-------:|--------:|
| Intercept     |      0.919 |        0.112 |     8.223 |      0.000 |  0.699 |   1.138 |
| X1            |     -1.000 |        0.082 |   -12.134 |      0.000 | -1.162 |  -0.838 |
---
RMSE: 2.158   R2: 0.123

Poisson Regression via fepois()

You can estimate Poisson Regressions via the fepois() function:

poisson_data = pf.get_data(model = "Fepois")
pf.fepois("Y ~ X1 + X2 | f1 + f2", data = poisson_data).summary()
###

Estimation:  Poisson
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.007 |        0.035 |    -0.190 |      0.850 | -0.075 |   0.062 |
| X2            |     -0.015 |        0.010 |    -1.449 |      0.147 | -0.035 |   0.005 |
---
Deviance: 1068.169

IV Estimation via three-part formulas

Last, PyFixest also supports IV estimation via three part formula syntax:

fit_iv = pf.feols("Y ~ 1 | f1 | X1 ~ Z1", data = data)
fit_iv.summary()
###

Estimation:  IV
Dep. var.: Y, Fixed effects: f1
Inference:  CRV1
Observations:  997

| Coefficient   |   Estimate |   Std. Error |   t value |   Pr(>|t|) |   2.5% |   97.5% |
|:--------------|-----------:|-------------:|----------:|-----------:|-------:|--------:|
| X1            |     -1.025 |        0.115 |    -8.930 |      0.000 | -1.259 |  -0.790 |
---

Quantile Regression via pf.quantreg

fit_qr = pf.quantreg("Y ~ X1 + X2", data = data, quantile = 0.5)

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

💻

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

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

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.50.1.tar.gz (2.5 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.50.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pyfixest-0.50.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

pyfixest-0.50.1-cp314-cp314-win32.whl (2.7 MB view details)

Uploaded CPython 3.14Windows x86

pyfixest-0.50.1-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp314-cp314-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pyfixest-0.50.1-cp314-cp314-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfixest-0.50.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfixest-0.50.1-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pyfixest-0.50.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyfixest-0.50.1-cp313-cp313-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfixest-0.50.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfixest-0.50.1-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyfixest-0.50.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyfixest-0.50.1-cp312-cp312-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfixest-0.50.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyfixest-0.50.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfixest-0.50.1-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyfixest-0.50.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyfixest-0.50.1-cp311-cp311-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfixest-0.50.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyfixest-0.50.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfixest-0.50.1-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pyfixest-0.50.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfixest-0.50.1-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyfixest-0.50.1-cp310-cp310-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyfixest-0.50.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfixest-0.50.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyfixest-0.50.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfixest-0.50.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyfixest-0.50.1-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.50.1.tar.gz.

File metadata

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

File hashes

Hashes for pyfixest-0.50.1.tar.gz
Algorithm Hash digest
SHA256 12390d60fd0a858df53b3f6cb60a046a2cfcd17c2c5a6f079bea5d206b344d3a
MD5 b6775bdd2d544f8d8e8c3a3258c6a574
BLAKE2b-256 54246b5644b7885b525a340be8b4036fb8a742bb614e8c8f7b1db020bc95016a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 834b1ae14d074e6fab7f19c17d90b2e08074f625bd2c19fe9cc8ced59c59b668
MD5 c7e2a6cbf4cda8748e6c67b00cf7de28
BLAKE2b-256 c09c5919e28a880fb745c345f513513c80c4e8f55fdc2cc32a307b991862143b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 554a06edebca16e8957c785a0ed85abcfe85123a20f75cb6609c7854a2acd2ed
MD5 cb4f3af58b485efd87ba9c3eaeb3bfab
BLAKE2b-256 e5c4b388a0992cf10fde636cf36e9e85e3dad42d209769bd329771f2459f6790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 deaad4ff94ba2a6b2d4b8b52900064b095558a1f47ec826fe6448e8bae2aac71
MD5 923ccf8dd4170546a693acd17e24b908
BLAKE2b-256 38f45d3acf9cf69ff9c817588edf97ef90c63aaa1f5ecab043f078ebf6f1af93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6bbc18fd95e2f0dbdc79781eef9ad9be6dd2368affd6d5147f98c399855d94c
MD5 1b0c880a0c0f7f12941d94f2efd01199
BLAKE2b-256 de30b6f11b5a1f48b91036016da469a1de061605ed84937fb1f9f850ca7ed631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 937622c017fc29c5398f51be0ca1200c359a45b3cdbb82f73879efd32d61f10a
MD5 d0fe383ec6565bed20a23eebc1182862
BLAKE2b-256 c5c95ff6015bd4b22b4cdf1be356e7a9d70af074a239f0c2e63664fa508ea97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6412b2f308e07e8d1aa1c1dd524e2e1d69f3588123ae15ee96cb2bc0a990c496
MD5 d5881f6c86b8258d03c3477735064a36
BLAKE2b-256 bf9e650f9b992b808a3fe42d10b07a64367cd6b98128890df72d7f55d20794ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fa0d786e75e4827b4d132e8cd4790a3be5d7924a3e7912fe0917a73ae21fb6a
MD5 83c1c5da066df22df49b1cec74adf006
BLAKE2b-256 b780258cbc9cdade5f3f30e844ae4b8191994898e6bc0151e050dac07e03504a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18ab808c205c45935835726c889408f015628223a35d11373170b52af85de5d5
MD5 a0bb84d4a2d955b186b54eab152d6c4e
BLAKE2b-256 a2975c1bd102e97cff3ffb61a388ba6313137c5395f8238518a66c98e7d2ce80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a0cd03d0f992f891e356ae68523f3cb8828514b63ba94e8715e619f6be46b55
MD5 c150e79018bf92329dd1eebbd9432b38
BLAKE2b-256 db57309718c819988d5d378a8b47a7dfc4045c4718568f53f44746f4028c242d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 729b46234e4bbae75ea1de88a3e303d4d2a711ca0b58293f4bd36036f31ce93a
MD5 df603ef5daa589f2b22d72f92252c52b
BLAKE2b-256 304cbba3ce349aab5b1b7d5781875477bac97295b27bcdf5d81b5ec022fdba86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16d558d3e632363237496f911593767eb53e28dd42d69b0b45f59971349c5f47
MD5 85afce3922c1296c1b2a7665b76c981f
BLAKE2b-256 f835348c61595c21fa54d7537dedac4a57ea9d638386ca48507656ddebd9dfd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c04674ce6fd405141a69875480ce560f3175256b429c3350abfeca1d7b1663cd
MD5 d6722dcf6d4b21bc31771a5522e6eab2
BLAKE2b-256 d873c4c6efb69885f5692635d981cdcbc75ce01ad6bbeacc12062d0fab9f8a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65160bd518f996a78064f205b3dc90873be89d6318fa5a30f1299006a1f4afdc
MD5 22c762ea66fc30e4686ec5a383deee95
BLAKE2b-256 3bbd5dd6e1cdd28d29be2f3b2e40bf135a407d1f37cb0d270111cee2e9a9e9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca7f9b858119dabf38311bf730b03f9fc4425379343ab07da11f028b035e15d1
MD5 e9dbe93d749c4d41d214f7daf52a0c1c
BLAKE2b-256 f50e8bb247889ac81c661f18fc657df962dd4077392e092d1195d53006f92551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0054a15c391b31dbbf5bbc50a3013d49a2fcb28a285121330418af3f47ca8531
MD5 31dcd201dfc9300921c2af961634bc70
BLAKE2b-256 fc24a56d10e6fc7fe576e6c1b3fe4f900ab02a87a2fea0347e0b454563a662aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7154f348cbfce589fa4a5ae47b455d964fc0f36ee7102b9a73f8f2ede91db975
MD5 8d6301dfc9a973bbb0378bb14e100ca1
BLAKE2b-256 0c587edd6863b5dc05b433c54b6924905023f6b5c2891dba5852c7eb9376ad16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dd05fe20f0e45b860ba4a56389eb1968d695551d5cc5f45aadb73cef96caadd
MD5 4863ea00510fceb2674144a9a23a094e
BLAKE2b-256 cae61d94fcfa5c321ca0d61a10254dc86a5d34899d124bc5d39cfcfd1af6513b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1467ebac9022eab28b2d51756fadd8fcf3c60ba6e5576979b7a0db91b54cb5b
MD5 5bbf1f0ccb9822548fc199fbcdf7469c
BLAKE2b-256 740dff893fff67a2427a5de0247dc3b111a9b47873015ad0a75b9f1a45aa1f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fccce82d8d88aa0217b80ee2d2a2498191c81957b865bc25565528877671e394
MD5 0814bb8f1a50b3612643accba36c529b
BLAKE2b-256 0e5bf765a422ee5b63a8aa1856369d7dc701c7239074ad3edb354200a916c066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ccfa16c4c4997280d824fd7e796bda05526a613f45faed78922085867688676
MD5 be09bc9b205be05e97a96446cfd88e2a
BLAKE2b-256 e588d01a316c98506041036f620a68399e8eb3cfffc4ec40c1accf073e93c2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3015070af1487806e4719283b8351d80ff460f86ca5fb4a4d1c25188d8342a9e
MD5 93c58fb562f6c7e7ef42c19a373c6cb3
BLAKE2b-256 96ec7ed4dd0d7c023b1811d9b2d32e0a337b7b683be211d45180908434c0bf45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d3f7eea29d4b27cda4be15a45a43c2c5177928c711b5688e6189834bb2185f0
MD5 a6c18be262f9d19c5dae5984f70be023
BLAKE2b-256 13657e21ae3997935acb46a5b33584b43043d42c2ececcac22d64155636227f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad42c532cdcd9e9df043dfcb2bc82829822042eea58073890a0b3efb922f6fdc
MD5 4200a163aba18ac5eaa44d5e066fed77
BLAKE2b-256 1e72cd18a259bf8d3d9ee8d155e223ed632af4f118ba9d6a570f6cf2def04b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c34c380ef18d09502a2b17319ba9d24bd8cef2cc1649f9ad545e50e700fe790
MD5 22a7c0391089d13bb303b41de34668f7
BLAKE2b-256 6178d50562c91d6dd4db7e8564111876ebde2d7ebb482c416cd4c58a6724ef0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b619c9a509064ad11c1b9f25dba4dfd6acf2f58d08d06c8b57ee759e76f14796
MD5 cb5e03eda0f1e468bbd534038c708855
BLAKE2b-256 01123dc1315d34b9b28af58619ac5a4266e3534f38a0590550e0d7fc7711bd23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf058f16c8d8a8acb3180bc7131cc8a37e2ed60383b8715105dfd0529033ee71
MD5 923db27c356772b3cb4921f86e18f1d0
BLAKE2b-256 385d2108b0e193f8209738bc0ca498dce223b17df5110d69243ecb9774340198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 696cf5efc763d73c6ff697f796b9780c913814bf0416daeabbd6d0d21608a2f9
MD5 7886f70cb98fae4d23c14454ba387ab3
BLAKE2b-256 dd709d2becd1306fdae330a7042dea20051ddb7d465b90494ec1f602b1840260

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eb6dd7ec12d911675103d2f3dfa7c340444da62f343d23e9ee961e3c4c2af599
MD5 769d5807f91fd6277376a6b50ff804f1
BLAKE2b-256 1cbbc11cda09d3bd3345dcf3fab3a9a6edbfe99937b17a628572c9e9d9c66a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c58049f234a32b0d5fbb300457548f831b2f769404a9cb2d8b0b7fe98ff81766
MD5 b4a9cb1fbcb863f33d6e9d19d337f8f7
BLAKE2b-256 1d698891c3326d0603706edcd05dcf86ea86c0aab16b86e2d9aada9388c9f875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99d0f0809f2e13647628358111262ed0e342fe64cd3a067662bae8d0ab16b84a
MD5 bbe8c783093d5672875c06460d505772
BLAKE2b-256 e58b40d4e5e32bdf975d779a8c1d684a1190e1e6f264c58e345eaf59bfb1972c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b4818c15b936082054abd94c5aed039427d37f2cfd44c72df3fa8b80e508374
MD5 3b4947c1f07714b51d3b8fcc6582d4ba
BLAKE2b-256 aa4861f88bf261787a39b66279ba8c02b0cb88de5f8556f172702f501dba7c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08aaaa180396de2b549f762da532c595c8c5235389c9c47e4f3c725fb1eca432
MD5 b4292902a7db8dc5a4c12c7c429b1b42
BLAKE2b-256 24d34513cace9bd2fb6ee63ec92e29ca3f5b89fae5458b57b423afb8ddfc87a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4322123c271e901fc18456aa0c61b3a595dcde43c8ed2d5d05dd0f207ef1ceaf
MD5 afc0bd401849034588eabd6ee4531b19
BLAKE2b-256 18bcc85662330b9c68ee80d0fe1f133e56543867d01374bdff220a921c104f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c5841bcbb96e2465915e43db12eafe63a1f5e68a0e1fc5c946d0f2e1b844fb6
MD5 2b65d454e5b9b44b1e76f4600c53103d
BLAKE2b-256 c929891c5562a4bc465c29556ae1525d36475add5ef78c0823517e25536ec300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e93a25fe4b22eb7c4d568e4f63f70c82ec7db3c1b0c85a3a2a4e55fd7e298872
MD5 c718142cf509527538534ed8b38169be
BLAKE2b-256 2fa81c932a66daba38d748f5df48efbfd9088881c477ed4984985dc1128c9b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d2b0957a9ab1f7b792580313eb7c64be31ec628a9b44e053a533e5b430f6001
MD5 2207011dab3153c64fa0be1cd188713b
BLAKE2b-256 3863f851a2b306d08e3531a935200e6df30cfed6eb37e9446cda2f646be2e22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f201ead886b6e991f690af832c42f5b482aed3861502ec055df2f27a5b2469b7
MD5 c6403725f5a3dfb9c5ca9c4603a3e424
BLAKE2b-256 3a22d46bf93db518f8139692fe1956e16e81bb1b98d2fc6fd755194edd6c3d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0277895b347ab79e126419bb5c77a95d70e0943a0659d1e343802fe1c032b2a7
MD5 12075eca31eefaec1ac3861b2fefcc9f
BLAKE2b-256 616aa8eea7d9988aacce6dfb358667bfe9ec2718f78e2add02e7030829b02d2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b85329a025d6cb1eec34b8a60f7242497c84d6fad031ff692afc73cfc68e706
MD5 1481d9dc973a66c25f30c6c3b7203f6f
BLAKE2b-256 e9b6f072ce23aeb730d99b175d7bca484e7925fcbdd399712449966d0e84fcd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3582de0dcb6dcefd0d80093e67704098a4e8c06826ecf40e8be9b32c1b0f139
MD5 855777383928ce1e8111fc61bd9f3a32
BLAKE2b-256 35cc55a283fa8dff126a6f5b26e231ed117ba2227d4cc88cb9cb7bdecebd57fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32f1a6551ae0723104198c82d554843864b33223d0ba94820c15da73b7f20941
MD5 3f67fc8086b09e2c5ec6458bc9d07381
BLAKE2b-256 22cb4fce03693b4396b4c63e49dcf150934f34c563703fc647593dcecea2a235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1fd89c17db5fb5c276c0cdb73ba86fbc5201d7c56c0bc0b0f0d8048e8ac866e
MD5 edf0259a8dcdc35a8606727f767ee8fa
BLAKE2b-256 40d8e498098285e09b9e6b963f8b16b784aaa9c52047788a2e884717a9458305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a33cb3a0d410b044a1e3e4ab86536390b0065db2b59c9bf0f65bcd4590f65f3
MD5 79e5f07a91172b2e42d522a1ad556f85
BLAKE2b-256 106958167fce7e40bca118253ab9a53f394449cf9fd9847faffcb67e4251790b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66247e109fc125d03e82ee5ff268d78b35d8301ebd0a0d453c1da54386d3b92f
MD5 fd08cad8ea454fdef73d3b73ccc3cea9
BLAKE2b-256 7638e7a0d37b5d2c200a2a5440076ed65fc292134a190f45d65a8bb23b7153db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80f14c56d86099e4687a24df2237e0e4d63abe1a36ad287fc0a9d84d50c2d9a8
MD5 a51859d4a1a8e5e54267f9e9440421c7
BLAKE2b-256 2cf7061350f7ebb7f137033285de1190ee1fad71c15306f3f3bc3b257fcd476e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2bbbac2ceedeba72c5593a2354beff25438403b00a151fae77189bffc06504b
MD5 6515a62e699d9cfa80a90125f45c0d58
BLAKE2b-256 4ff4af37c813bb11f3d6c03c74d5371707a0ac5aae0a9b94f579f8322dcf7c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfd3d10e9a4f44d5b72d9e8fad2ebaacdb5fc7420f6e990c7fc06bec3beaea40
MD5 122a41ae04e325df66fd92cd8e8e6ab2
BLAKE2b-256 085260012b92263d3ff21fe93ec695fc062e474e3c2ac7ef9d360ebca02f2207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4498dcc5f96832b18056772e2da93f3350a9f277e1e57915a290c985f4a3b507
MD5 a625357db3e418541536a27a19377da9
BLAKE2b-256 074886ea05ea853516f6f7ffd6f997062a4bbcba78e4a93e9ed65a79b05e759f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e9caa44c008ecaae5283548488afcedef05b3ef7107449af5dfa9abd4e921c5
MD5 b38956e861171ab950c5f5ef92758153
BLAKE2b-256 600c915312a4fcb0792b94e0d4ab096dc7903e3c99ee35f01d01702fb1ec1312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4af1d8491e79ce906ebeea875ba3ea3b883d2f11a34b18f4bce2e211eef637fe
MD5 039f16462cd13b7a177c4325c36dd9b2
BLAKE2b-256 4f02698eb474e5e67a7373bb7a98f614457434d0ca29092045c6349cf18d26d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df7a7d8ec323ceb7e8a59c26c9e4bd375c4d86b94d009af597350d19707aeb6
MD5 c87e36ee6b2eb8748fbc49fc490e6ffa
BLAKE2b-256 763709f9cdd970095e62f5ed1745d7311dfc8e2035234635059dff87a569f356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 927376a47d2a00f633e4a551d46e946683b95bb776b751da6e398edf857b039f
MD5 5aa9ba6d355ad4c06de259e080079272
BLAKE2b-256 2d13cc65dccbd9d9b38afad1f9e7997a8ef021f5e9a0a6e2d451daced9f82f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fe25234927833f6bf6f9bb8db408f0683a6e6187bb4f2634d24ffd9b18d4e33
MD5 f8b8b0690a0af1a93c18835444daad09
BLAKE2b-256 3186c259aa7863b15502122a8f2a212cc3261d1c6e7ae9709a4b6fc382cbc236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 501519a8254699a1438772a1b74e3247c73aa183651008de3d3408bb52b5a18b
MD5 8cc9b6240b737e49d9896e08497677a1
BLAKE2b-256 eaa3535ff0b55bec71356d757ea3f24a7dbba0e9f0073361fe7df46ace6f02c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1415faca6be93d396bb486e03bf39b8e286c32d2cb4240b2e006d2552d4cf117
MD5 57f62144ce589ad5c4c0b86682ce315b
BLAKE2b-256 f9af0dbad089286a4afca436564e9c8257d0f2a4880aadbae17942b0b069fdaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d9f6f3c3502ae6224eab431c7124a8838ba43e97239a631bf69503971f1ad0d
MD5 342bb4f8ee4339a9516b8d636f19d79a
BLAKE2b-256 e6a31ffbc78b24a59f8ab76830cb1c370b63a8c7419d60b7437c1cc1982209a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97d7f841265b23fe6646accb0870f78ba40f54ceca0a8a7eb5d40b93c82ab2a5
MD5 ebea728bd2f0b18d5fc6d6b885c6fd11
BLAKE2b-256 8a7228146635afce397dbea06818d438f938738697169e4cbaa4d7e573bb6f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56b53d1491e607b78fe4b275462f501edb2b6baf1e05e27b1c79795424d72da7
MD5 028640c07f53e287d0a2fbb9883d5caf
BLAKE2b-256 3ca564fd84827fabc03be377bbb50532ccdc37afe29186f1c5e2a33abffb4f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b69c7abbf42a2d8e68eae7bdcff6207e86b15a69a9d8fac4af2b17874cb046e9
MD5 b59543c6def02237470ef7f9083bc09e
BLAKE2b-256 d7a5b361159cc0cd8ff90d33459d16c46dd9cf4395d040bd878f042f4fbe4e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d3c946659305b564b26c10175f26d908a7edf4d18bcfd3fccf6129961fc37a
MD5 759e2ab77a91d4486bf16ddb96987ba0
BLAKE2b-256 d6f39ea13c74041d4e80593cf498cb7801c853eb50ece7ca6bbbc31e8a717042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fe98a05dbc62238b89841c5dbee467b0a2dee65e67516f4565eb037c8aea8b5
MD5 f504b912db9c429ab6894a319cd299b7
BLAKE2b-256 dbe8a8f27ac63cd6b5dd2374514dd1d47a28a70fa8deea1a616375baf28a27c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c40ca4ee73825455cda4c3141d0e6ac461d112b91e851b0c877e6290d5ac3f26
MD5 38da2c1f4b4c797852a431616fef2c6c
BLAKE2b-256 0d2ab1acf6b6b56d8a92c6c2ffdd3d59c65041b0d966bdebba8efd86a378dd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9c3506e9f92fe99e060b252f94634a0c99043f16161036588bd856e9d035381
MD5 64b48e3052ff781ae9da8ade56213704
BLAKE2b-256 5c843df97af154245dad0c0f60ea164731a42ed24188e54b843f09492daa871c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b21e6ca109083b7fcd71c2fd9cf38d4d8843e125b3960d8f597b63663819363
MD5 1e9a67f4e5360372a4c66d99cdd3f5f8
BLAKE2b-256 aa47158e359fba2b6c261766c0f626c540ce362ed2da587359a4c5bca773a046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42531fd44b3a91754dbf3238a79de6f60425e20a608ca0461553781eaa9d1781
MD5 ffa3cd12deae0233e2df469eb30d3fcd
BLAKE2b-256 36c6ad06434b1c89b3f7aa37bc5a188a8630beebc510815e003e051ad91e6743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3da4b105ced4e70fa05e850e6759e8635fee156333fc98ad40e897c4264937b1
MD5 187e373e909bca9be357fa5c764474f1
BLAKE2b-256 255adf9741d351b4c11bfb33697d93868e9b75a06cb98a7f297322c0e051af2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed5f64e5443ba0279e741431f32f8e1302500762ac4c9d211fabc61ffcfd7692
MD5 e0fe3dba34d3095e4d118122da7b6590
BLAKE2b-256 d564513167680543f32f623877e071e6da260cdb65865919519878162d4b5362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20906f26ecc80b6e562e268f1e6672b49fcec0d108c1dbc84c5402f219e479fb
MD5 58269d4c77174e8164e9b99db01598fd
BLAKE2b-256 1c795482f5617ebee18fccde3f2adfd2427f6a7b73f99ec0ac0e751b3839bd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a888e20e48628b1c85decb3031261edc630b2403dc0bed507f5d3445b0a2b912
MD5 6e8516ac6383d1a0683c4995061d3e18
BLAKE2b-256 b57c4e3b39fbaa1ed9c36fd96f706146373f2537e1b7767563e0939acee726c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0560257d2b26c3b1f108dade93108f0ac50649d559487c00f315cca52168d614
MD5 75a61c5a71e2b65842d87624d29739ad
BLAKE2b-256 90aec8fb687f05d1866ff39ab8894006a3e40dc979100657fa7915f4a5f51137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2e6b0fdcd4e03f11d439ad64aefb016d0bee4168d1093b43b4dee58e8704a77
MD5 cb11c66d9cbed76a7cf6a7c34bc3a05e
BLAKE2b-256 957d5040ddb90350c0f84aa8914c3ad37eca8ca702961a13678ca0573d8a5a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3308bcf495590c7cd0661a453b0ecc0dbfffc362bde4546acdf16f2ba9e7fcc9
MD5 cbb4e3b06afe9b7f1f62111914188088
BLAKE2b-256 10ebc0a8e0bd54de86bfbf9d34a1fb24df096665e65a66ead10dbb4c92a32416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f3ec61d784bab0392b7fd18e6227d39484333addcdb2900a5a18553be37f685
MD5 7e4056216f66f8989e5de6b1d16163c2
BLAKE2b-256 ec3068624122f61780d01a60355d7a2047abba5b5c03ed1c7cc45930acfab296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03de4b1f73508865b15f6b022de7f385979665dc76d700f19de24209a4a4c715
MD5 30f453f9cd9d20832e6ba48c85b660ac
BLAKE2b-256 081f0f612b166f20d3880a9eda931423b4b6c7c668a5ee478601a031f60593bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b53e4b76b9ab110945e5a9be4a8fc5b3177ba985f2cdf47ab40c42c467ea5950
MD5 e23ef4f7c80c50efd56b1926f500bb42
BLAKE2b-256 a4bd77e8b106de4ed638215da167c480a01529c6ce3cb0fae4483b21f0f804c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea392754525da426ce6a42707cf277f876d2ee9984b9c01686535213df7aaac1
MD5 e8c54064534e61078ad0a399c1b7a907
BLAKE2b-256 15d8b62faf1aa5389b15bc3abdd9adf26bb982f40a4fa266fccfe2aa8679ba4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1e5d84488f2905a790ab113ca6e3b3e0c8f86aab84e20afbec13901b5867b37
MD5 e30a1807872f41e341e7b7e1b886376a
BLAKE2b-256 7b9e27c33f43b9f4d2c3a2593ad486b53b020e08015b13e4165d70d4aae6c9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2285afd18a3be506b73c815ba90df2d014e3ca47d5c3f237c520e67fe41ba89c
MD5 b397749847125b6b92382706942b7ce2
BLAKE2b-256 398a06befc73be8fd2f1d5f4066b3d612f63617ef43a73699da17349a6e817a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fec8c853862927b3ed5a8fc717e4e77a5228409a259d64a2b00bbbbbc3450681
MD5 f3544f393102820b19db2b63f9fbf65f
BLAKE2b-256 98f31835c41f92fedfc618cb2fa416c47909b9df855ca541b1cdc0926ee96b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db58d65f1d6b44428162cf1d1fb2c368fd1d55ef404eebdc30580c1592f317ad
MD5 b3fef4b4962768eb73b566aa7c7d97f7
BLAKE2b-256 a7c1965729e1211939661c3d2147ece3715a26c3dc711c267d001c8b286e8073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb895b9bef65029aeca03db4ce719999870aed11226652fb5ab1ba90392672fb
MD5 9c84202246f94bd0ca4c30633b5757f2
BLAKE2b-256 24f1ac718d220d29004b0361ab4d09d3d195d57162394e597e66c28a59a63231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73c6316c40fb8bac6e852c749d4bc015a13a1b83579878791828357bce7b94c4
MD5 bf3bff322f2d71b7350e134b80818204
BLAKE2b-256 9cd68d0917d6e5d73780c9123a6cb6355496a32d94f3677dff19d068c9fdd1d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaf31b395561e8a4bf4a567af4f3306414b0bb74172a5b50c1a1728ad0c62cda
MD5 b18b57a86e95dac80fb755eddbd5a302
BLAKE2b-256 e3048dccd0662bf2f97e4a1073d21f7a2a5189152d1f265f61859d6b1ed437c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8cd088a3be228a0c4cc4090eb444e097bd259bab6941ce86175cc20e01c3ad3
MD5 a8436996b4c703ab598aff9c47f576b7
BLAKE2b-256 42cb135354a523df71c1b67603aaac4df2166017b8ade6a2ea9653a9a07ec1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c1864ddf8ac1bbece6a704ce5b261ed7c7e33cb0e25fa9f0d680ba0e2e5877d
MD5 eda56dbe835d8252fdc9fae60a3a2241
BLAKE2b-256 e07385a217985946dfe3cc452e9ef466b3cf0cfc86ef2a2d4d6e6eeff2e4476e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d9a5044ed1e1a35c2b26f6531bbdb0a84e0eae90810c7884f9fc8f5e6685a0d
MD5 d796b33bccaebb8275e64d5d1218738f
BLAKE2b-256 c3fff7168004dde9571ba015be7e96f90f8737409bf161f1cc274a9077175ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37863d7bf766d2ad000c25833d244f8810c05f8872bb501fc19c3c40ae717249
MD5 aa2305c4164d07f79828566a4fd2abb7
BLAKE2b-256 c4355330dd6be5388bf6aa2a9a03dc6ef37d6d7d48e94261fb5619de0e94db58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ce3081f1075b96b14c0753439573ea14d00c39ed93d3adb8199b82d839f483f4
MD5 465adeb91a46806288db82b27e0ba437
BLAKE2b-256 56567c46d580e670c60f33c85ad3aa45b87f3669adbbbf39a71e528bb2d6af9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fd8d79cae9f69f6206004055ad035b2918587555fff615bbb3381e61859ae55
MD5 5d779cfe7a05db8042a0cb3614b7ebcf
BLAKE2b-256 63553ecc549694ca6d392c0144dbc41349a29e91453b0ba8484fde1d6ba84580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3ea993c0799234da6cb632663168063642a58bb8d131123078e3ffe4a5271ff
MD5 f81daeaf0b23dd13f72f4db7f60a0b6b
BLAKE2b-256 e1ec372d8e3054e0c53160709e62a8419d6ac97fd19dc4abfa5473a37395f2d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec27e62aa8d51e980dbb6c4c099d99039802c18c98a97ca5b98ed3f075803d78
MD5 33b8ab419657a5517fcb4a661212e0be
BLAKE2b-256 1d12c817965b5e27b45005d891ba7931b8b09122e5431e208280bf698914920e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6352e2118e174ee79da821e160ede6babcb170b1ebda6efc40fd7a9684e1b861
MD5 e099f3eaaa3b2757087b503cc5ad7745
BLAKE2b-256 a3b9e53f978ba96b049575c69e4cfa8b104ff07c450e9af74eb1271cc185ee4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec669ec207de3158ecfc2dc7461520788837d8f36ab50f5b220214bf6d80875b
MD5 c58289988f020218b61bdd8b1314395f
BLAKE2b-256 c51a3538ef275ec5731819f067dfe34e9f3c27cfa5a3348f11d52130218ff5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abb48abe268d62d9f97c8ff6989627efa6db52103f4ab8a6684faa9761ce0de6
MD5 67861318d68d7d44e9eb29c8820e20cc
BLAKE2b-256 d20e4684b702069b2562afa0f0769ae28d14d994634eb3b77cc2c19e9e48fe66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ccd2b0ae0ff1ecc07c6d202838b2449d5c3522baf4356e2c45fa1e6fffff329
MD5 d93d6486d33795376775986cc5eef8df
BLAKE2b-256 176bf698ad01b8d07cd8976feda91f3f3802ad0fe1f87360c2449715e1769e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cda4523fa4546f8bdc79b40dc26e288ebdb04cd7408320ca28606292af9c944c
MD5 9d6178510668a0f6571f900189c292a5
BLAKE2b-256 eb14cc4476ae69ad261866629c6388f46aafb5a70b9824e6725ac35cd0408520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61017ae94faaf5a5c75024cff6215a77fbd4c7e7f0a3f9acdf49d89dbb025e72
MD5 81734c7a497ba038fe8325a07fb46e48
BLAKE2b-256 cb2fb974c62798958514a74970d770b036f7e3325af63e77a8f50dc061e5a2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyfixest-0.50.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2e3c6a9791845f2762ce8143b502536733842978e35be30a50d034f1933f251
MD5 bb3fa8973c85f9ef1f3e489041f03584
BLAKE2b-256 ebf643988975c32809222080c7208661a071102016e849605d512c7564e8f0b8

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