Skip to main content

Gene Set Enrichment Analysis in Python

Project description

GSEApy: Gene Set Enrichment Analysis in Python.

https://badge.fury.io/py/gseapy.svg https://img.shields.io/conda/vn/bioconda/GSEApy.svg?style=plastic https://anaconda.org/bioconda/gseapy/badges/downloads.svg Action Status Documentation Status https://img.shields.io/badge/license-MIT-blue.svg PyPI - Python Version

Release notes : https://github.com/zqfang/GSEApy/releases

Tutorial for general usage

  • A faithful Rust port of fgsea’s multilevel algorithm that resolves p-values far below `1/permutation_num`.

Citation

Zhuoqing Fang, Xinyuan Liu, Gary Peltz, GSEApy: a comprehensive package for performing gene set enrichment analysis in Python,
Bioinformatics, 2022;, btac757, https://doi.org/10.1093/bioinformatics/btac757

GSEApy is a Python/Rust implementation for GSEA and wrapper for Enrichr.

GSEApy can be used for RNA-seq, ChIP-seq, Microarray data. It can be used for convenient GO enrichment and to produce publication quality figures in python.

GSEApy has 7 sub-commands available: gsea, prerank, ssgsea, gsva, replot enrichr, biomart.

gsea:

The gsea module produces GSEA results. The input requries a txt file(FPKM, Expected Counts, TPM, et.al), a cls file, and gene_sets file in gmt format.

prerank:

The prerank module produces Prerank tool results. The input expects a pre-ranked gene list dataset with correlation values, provided in .rnk format, and gene_sets file in gmt format. prerank module is an API to GSEA pre-rank tools. It also supports the fgsea multilevel p-value method (a faithful Rust port of fgsea) via method='multilevel', which resolves p-values far below 1/permutation_num.

ssgsea:

The ssgsea module performs single sample GSEA(ssGSEA) analysis. The input expects a pd.Series (indexed by gene name), or a pd.DataFrame (include GCT file) with expression values and a GMT file. For multiple sample input, ssGSEA reconigzes gct format, too. ssGSEA enrichment score for the gene set is described by D. Barbie et al 2009.

gsva:

The gsva module performs GSVA method by Hänzelmann et al. The input is same to ssgsea.

replot:

The replot module reproduce GSEA desktop version results. The only input for GSEApy is the location to GSEA Desktop output results.

enrichr:

The enrichr module enable you perform gene set enrichment analysis using Enrichr API. Enrichr is open source and freely available online at: http://amp.pharm.mssm.edu/Enrichr . It runs very fast.

biomart:

The biomart module helps you convert gene ids using BioMart API.

Please use ‘gseapy COMMAND -h’ to see the detail description for each option of each module.

The full GSEA is far too extensive to describe here; see GSEA documentation for more information. All files’ formats for GSEApy are identical to GSEA desktop version.

Why GSEApy

I would like to use Pandas to explore my data, but I did not find a convenient tool to do gene set enrichment analysis in python. So, here are my reasons:

  • Ability to run inside python interactive console without having to switch to R!!!

  • User friendly for both wet and dry lab users.

  • Produce or reproduce publishable figures.

  • Perform batch jobs easy.

  • Easy to use in bash shell or your data analysis workflow, e.g. snakemake.

GSEApy vs GSEA(Broad) output

Using the same data for GSEAPreranked, and GSEApy reproduce similar results.

https://raw.githubusercontent.com/zqfang/GSEApy/master/docs/Preank.py.vs.broad.jpg

See more output here: Example

Installation

Install gseapy package from bioconda or pip.
# if you have conda/mamba
$ conda install -c bioconda gseapy
# or pip
$ pip install gseapy
# or uv
$ uv add gseapy
If pip install failed, install Rust first and build from source:
# install rust toolchain
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$PATH:$HOME/.cargo/bin"
# then install via pip or uv
$ pip install gseapy
# or
$ uv add gseapy

Dependency

  • Python 3.8+

Mandatory

  • build
    • Rust: For gseapy > 0.11.0, Rust compiler is needed

    • setuptools-rust

  • run
    • Numpy >= 1.13.0

    • Scipy

    • Pandas

    • Matplotlib

    • Requests

Run GSEApy

For command line usage:

# An example to reproduce figures using replot module.
$ gseapy replot -i ./Gsea.reports -o test


# An example to run GSEA using gseapy gsea module
$ gseapy gsea -d exptable.txt -c test.cls -g gene_sets.gmt -o test

# An example to run Prerank using gseapy prerank module
$ gseapy prerank -r gsea_data.rnk -g gene_sets.gmt -o test

# An example to run Prerank with the fgsea multilevel p-value method
$ gseapy prerank -r gsea_data.rnk -g gene_sets.gmt --method multilevel --sample-size 101 --eps 1e-50 -o test

# An example to run ssGSEA using gseapy ssgsea module
$ gseapy ssgsea -d expression.txt -g gene_sets.gmt -o test

# An example to run GSVA using gseapy ssgsea module
$ gseapy gsva -d expression.txt -g gene_sets.gmt -o test

# An example to use enrichr api
# see details for -g input -> ``get_library_name``
$ gseapy enrichr -i gene_list.txt -g KEGG_2016 -o test

Run gseapy inside python console:

  1. Prepare expression.txt, gene_sets.gmt and test.cls required by GSEA, you could do this

import gseapy

# run GSEA.
gseapy.gsea(data='expression.txt', gene_sets='gene_sets.gmt', cls='test.cls', outdir='test')

# run prerank
gseapy.prerank(rnk='gsea_data.rnk', gene_sets='gene_sets.gmt', outdir='test')

# run prerank with the fgsea multilevel p-value method
gseapy.prerank(rnk='gsea_data.rnk', gene_sets='gene_sets.gmt', method='multilevel', outdir='test')

# run ssGSEA
gseapy.ssgsea(data="expression.txt", gene_sets= "gene_sets.gmt", outdir='test')

# run GSVA
gseapy.gsva(data="expression.txt", gene_sets= "gene_sets.gmt", outdir='test')

# An example to reproduce figures using replot module.
gseapy.replot(indir='./Gsea.reports', outdir='test')
  1. If you prefer to use Dataframe, dict, list in interactive python console, you could do this.

see detail here: Example

# assign dataframe, and use enrichr library data set 'KEGG_2016'
expression_dataframe = pd.DataFrame()

sample_name = ['A','A','A','B','B','B'] # always only two group,any names you like

# assign gene_sets parameter with enrichr library name or gmt file on your local computer.
gseapy.gsea(data=expression_dataframe, gene_sets='KEGG_2016', cls= sample_names, outdir='test')

# prerank tool
gene_ranked_dataframe = pd.DataFrame()
gseapy.prerank(rnk=gene_ranked_dataframe, gene_sets='KEGG_2016', outdir='test')

# ssGSEA
gseapy.ssgsea(data=expression_dataframe, gene_sets='KEGG_2016', outdir='test')

# gsva
gseapy.gsva(data=expression_dataframe, gene_sets='KEGG_2016', outdir='test')
  1. For enrichr , you could assign a list, pd.Series, pd.DataFrame object, or a txt file (should be one gene name per row.)

# assign a list object to enrichr
gl = ['SCARA3', 'LOC100044683', 'CMBL', 'CLIC6', 'IL13RA1', 'TACSTD2', 'DKKL1', 'CSF1',
     'SYNPO2L', 'TINAGL1', 'PTX3', 'BGN', 'HERC1', 'EFNA1', 'CIB2', 'PMP22', 'TMEM173']

gseapy.enrichr(gene_list=gl, gene_sets='KEGG_2016', outdir='test')

# or a txt file path.
gseapy.enrichr(gene_list='gene_list.txt', gene_sets='KEGG_2016',
               outdir='test', cutoff=0.05, format='png' )

GSEApy supported gene set libaries :

To see the full list of gseapy supported gene set libraries, please click here: Library

Or use get_library_name function inside python console.

 #see full list of latest enrichr library names, which will pass to -g parameter:
 names = gseapy.get_library_name()

 # show top 20 entries.
 print(names[:20])


['Genome_Browser_PWMs',
'TRANSFAC_and_JASPAR_PWMs',
'ChEA_2013',
'Drug_Perturbations_from_GEO_2014',
'ENCODE_TF_ChIP-seq_2014',
'BioCarta_2013',
'Reactome_2013',
'WikiPathways_2013',
'Disease_Signatures_from_GEO_up_2014',
'KEGG_2016',
'TF-LOF_Expression_from_GEO',
'TargetScan_microRNA',
'PPI_Hub_Proteins',
'GO_Molecular_Function_2015',
'GeneSigDB',
'Chromosome_Location',
'Human_Gene_Atlas',
'Mouse_Gene_Atlas',
'GO_Cellular_Component_2015',
'GO_Biological_Process_2015',
'Human_Phenotype_Ontology',]

Dev

# clone and set up dev environment (requires Rust toolchain)
$ git clone https://github.com/zqfang/GSEApy.git
$ cd GSEApy
$ uv sync --extra dev

# run tests
$ uv run pytest

# lint and format
$ uv run ruff format gseapy
$ uv run ruff check gseapy

# test rust extension only
$ cargo test --features=extension-module

# build wheel + sdist locally
$ uv build

Bug Report

If you would like to report any bugs when use gseapy, don’t hesitate to create an issue on github here.

To get help of GSEApy

  1. See Frequently Asked Questions

  2. Visit the document site at Examples

  3. The GSEApy discussion channel: Q&A

Project details


Download files

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

Source Distribution

gseapy-1.3.1.tar.gz (172.8 kB view details)

Uploaded Source

Built Distributions

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

gseapy-1.3.1-cp314-cp314t-win_amd64.whl (522.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

gseapy-1.3.1-cp314-cp314t-win32.whl (494.9 kB view details)

Uploaded CPython 3.14tWindows x86

gseapy-1.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (691.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (668.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl (613.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

gseapy-1.3.1-cp314-cp314-win_amd64.whl (523.3 kB view details)

Uploaded CPython 3.14Windows x86-64

gseapy-1.3.1-cp314-cp314-win32.whl (495.3 kB view details)

Uploaded CPython 3.14Windows x86

gseapy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (690.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (669.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp314-cp314-macosx_11_0_arm64.whl (613.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gseapy-1.3.1-cp313-cp313-win_amd64.whl (504.9 kB view details)

Uploaded CPython 3.13Windows x86-64

gseapy-1.3.1-cp313-cp313-win32.whl (483.4 kB view details)

Uploaded CPython 3.13Windows x86

gseapy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (689.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (667.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (612.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gseapy-1.3.1-cp312-cp312-win_amd64.whl (505.3 kB view details)

Uploaded CPython 3.12Windows x86-64

gseapy-1.3.1-cp312-cp312-win32.whl (483.6 kB view details)

Uploaded CPython 3.12Windows x86

gseapy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (689.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (668.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (613.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gseapy-1.3.1-cp311-cp311-win_amd64.whl (509.2 kB view details)

Uploaded CPython 3.11Windows x86-64

gseapy-1.3.1-cp311-cp311-win32.whl (486.9 kB view details)

Uploaded CPython 3.11Windows x86

gseapy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (693.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (671.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (617.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gseapy-1.3.1-cp310-cp310-win_amd64.whl (508.8 kB view details)

Uploaded CPython 3.10Windows x86-64

gseapy-1.3.1-cp310-cp310-win32.whl (486.7 kB view details)

Uploaded CPython 3.10Windows x86

gseapy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (693.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (671.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (617.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gseapy-1.3.1-cp39-cp39-win_amd64.whl (511.2 kB view details)

Uploaded CPython 3.9Windows x86-64

gseapy-1.3.1-cp39-cp39-win32.whl (488.7 kB view details)

Uploaded CPython 3.9Windows x86

gseapy-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (695.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gseapy-1.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (674.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

gseapy-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (619.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file gseapy-1.3.1.tar.gz.

File metadata

  • Download URL: gseapy-1.3.1.tar.gz
  • Upload date:
  • Size: 172.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1.tar.gz
Algorithm Hash digest
SHA256 b4ac3958db15db5c9d1eaec95f4e96c709921d2415d2f3e678d2fa02469762c7
MD5 c8a4df6407afb3ebba36099ff2727789
BLAKE2b-256 0b54279224f1ceae22733754313460aa86f6075d82bbc6beea9a74a1f407bb72

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 522.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 02eec5a89bf4871d2d72b6d17200aa57659b513b08192529b42d3bb7c5d64ec8
MD5 2ed389046aa2ca7a92aa74a14723b281
BLAKE2b-256 70a10c59c9acf48242e1b579e7e47ebb15bc0f29472b3e3a121204afdf4b1cec

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 494.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9b79184f9ed142aa2203da49bfcd8b4a625443a6be962d3553e70ce5844cae0b
MD5 e8921b27bb26deabe6f4b362c2f20264
BLAKE2b-256 1c19f2330897c02016c2029c4e5a6bcbe98ebee4ca0ea227c6cce036f5efa0e8

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 691.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a3df931b2bf0c4e6f15f9486dfb49dfc0f2068b98dda907c35b6460a97cfa24a
MD5 256864eeeaf0d0403ed97a85b1a24cca
BLAKE2b-256 a5a483e8290fee6dbac62aafc28e7d13c4756f63fd47bea08cba4345c5c2be79

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 668.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 316663fc836093b14a6ba8dc3cc4d4acd70c5b6acf1b5c5cabe0ad5f69de9b20
MD5 99ef101b36082ec8ba453448a029ba44
BLAKE2b-256 aae0f7b36978be1ab983b11db9baab0c164b7cc5caa611e82c9f4bbb1541d875

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 613.4 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfb770bedcfa0279abcc355ba4fe2c5f7e11f5a7f8298f92e41ec8f651c93097
MD5 9eb62c932d5f9c9dd5217469cf400834
BLAKE2b-256 9b33a00f5e4170ca45382d6b29fd8855b03ad4e1677981c6f2d597c84b14668c

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 523.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c2a906cf6aa9e02c6cb6ae9a012fa39a0505c8fb29ace881b5b8115e74597aa
MD5 7c503bce801fd7975659648a75d3b7e5
BLAKE2b-256 25211de390baced094d6f1959c28e5aec7c67aea28fd42f1a149d9bd000267b2

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 495.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 27409f2bf7ee167d8806b759aa94386434e3f7aa7f2a503b9a21c125ca45cb13
MD5 b5fb4ad90b6c89abda939f5ffd759f22
BLAKE2b-256 0c80d405119e9d00311a8f21b12263e986f7336ceef19df85bfcd75a882e2217

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 690.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e1490e652822114c3443fdab2f94fadbb2b924f68272fb5859aa433a5d48bffb
MD5 e49beabe3195493077ea88a208c71b12
BLAKE2b-256 099cb2db3808526dac9dd3011835dd36a84b11cccb505fdd853a6ec96352d0dd

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 669.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9280ecf47eabfa52bbc889cff515673d58ca819cd9cb7291c50a05ec90fd4fb9
MD5 d0ba59e217e40724cac0818ef94651b8
BLAKE2b-256 32df1aae9fd1ec2cd1b591eb48a7029363af287dc1db1a2595c69aac7426c3a1

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 613.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 376c798ba7c7ecb4cf839f7d9497382137651cd70bf803675b7ff5921460399d
MD5 dc31d6471a40534c12a36c9c5e4eca4e
BLAKE2b-256 b05733ee1d19d25327673e82931752152fa765a2425937bed1e0795d5dc85567

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 504.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4d2a6cb94acd34458e195ea9e3ad07ac4a83722cf2b4a4d6d0905d587786d0e
MD5 16ba58b236286fced11220710d7056a2
BLAKE2b-256 1c9a2ca8f6ac8f8210c9d8ee43c53b49adf7df017a2e9681db98fa9b4c26a801

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 483.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b87bf022fa62d6987de7608c9e985468c6cdd8d786cdd6dba6ae2862210b6fa5
MD5 af87c65c9e9013e8b0d59bc9d09ea5ae
BLAKE2b-256 223b95943184de02bffa050ea7486be4b42daabff5dbac16887d1d400167e757

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 689.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 da7f4906e7002eb1e08c7a67b21aa31cfb32c575af2db2d9bdddce59e961a27c
MD5 5830cb2e8a4b10e7729009f5df24397b
BLAKE2b-256 9cbe8cea6d09910d955518eb1fdf45451ddb62af4fd33d03690219d650ef9858

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 667.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0c6238279284e5669ff7196fc29db204bd6e864ca2a8bf74b52ee67e6a2fba9a
MD5 8c83ea574672c8f6afbdb49491a52821
BLAKE2b-256 5f7cd4ed1567931292b426fd562e1f9d56ec489a4ddba9a921bbbfaf31cd58a2

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 612.7 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd60f82f5a4cb12e20d6c55a7674598145e8b49f6b3073dc7fb19cd1befc0046
MD5 a4829ed9d902781bb08b77109caadd7a
BLAKE2b-256 c5b6942234d9c9fc1ab87458f3f58d275876748504c12bcc451f84a71391fee3

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 505.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf153aba74c536055dbb0027b7ff05411f02b81d21b2e2d5ee024d7a0d0c45fb
MD5 01bc82a9b6ab0d0e0ab5b3bcc7782fbc
BLAKE2b-256 66367edfdcf5d512ceb28d6d236ac4d6a12dec91eda28df9fc768ba89a7d7764

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 483.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 34952e1160e104986995195a7f3ad8f4481a298fd3ccd6f70c8ffa33d5eda96d
MD5 ca67e82765391d49516a0dea9fa3db9b
BLAKE2b-256 c25957f8d25918e846175eaa40826eca5db1dea77cc37ab35f1aae8ae319c946

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 689.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f3ea62eed1b4f4fe668101ae54c61e049b372553a34e050effa51c0623fde966
MD5 36b36e9e31987f5d7c857064b52c4f32
BLAKE2b-256 db34691c78086798f5578d6705e0cc4f085c7645f4ba33e685da39369257ffc3

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 668.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 84a76ee300be5c5e6ada1aee2e8dc6b01fb3b55cc4d24eba8e67695e55dfe661
MD5 a6192589137b0d82c28113075cba2820
BLAKE2b-256 984d347bcb5413f8871716a0d81e96b0aea7f69eba2479507118ca53285b21cf

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 613.6 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e77bdf1a9f72d4b661bc44f1c579f0afc731ec18db214e9c344dbd117b383699
MD5 76509347176d6f1fb58b6d51ca77b304
BLAKE2b-256 aef5afddced797e4182354448df97dd2a16ddc3ac68e783117c4b8cad9079426

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 509.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd981d0495b77d238da925a137004a9f42488e22b49b795118457b51490fa1d2
MD5 f1f73c512fe0219fb2005700396a782e
BLAKE2b-256 98abae9915f285f5e85b3b031536dc3b20aab4dbd513484381311c63936b28cb

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 486.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 49179bb8757ab12dc18c822ebf6576f7483fa7b6837e828fb221ed2ed51c0c1a
MD5 7d9a4b88150412ef938271f098b5bf06
BLAKE2b-256 35a6449fa3f1c6adab3a038bad6ad5bef9f52b3fa9551b365fd9c12d4205533e

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 693.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fe3e24fb2b49cf54af1b2afb224a4af87cca1628b9c225fdb10eef60dcafcb08
MD5 35b68396c67d1807cf6c32838bfb0b62
BLAKE2b-256 f4a3ca21623386d4af866a0a11c8f6a8162266347c566ef68d2dd3101b2acd8d

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 671.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 62620a283306b36a96520fa57ee203338cad05cbf04d6766b7dd8fdaa3c6b015
MD5 a3913860e62d96d87f3f08f15e16013c
BLAKE2b-256 27518d02bde3a0dc3af5f34c78c6b149fd2f27f8b8c1887c8c79e7f35a393396

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 617.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be72a06cf249c65bf65651a2ea69e4fea1a078eb1851258e61d136bc1dff1b92
MD5 508985fa4c440764aec1070a891bec2d
BLAKE2b-256 f79fbf180bdbb357699f2b4560c52d39df4991a977bf2273e1e1722289e44433

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 508.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d50663eb8b65b47619fdf6e447b83e497f57207b56e5da84d2e16e84fbd82f6d
MD5 79eb21fc5ea3a03bec7cf22d9eec0745
BLAKE2b-256 b08d37ed17e38403ebf950e4671e90865464a2ad5fcafc99bb92706510c37503

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 486.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7a990542e0f2ae5ab6e8e2190acddf275d97ec2f0d888ff814f793e465e7c020
MD5 f3373c20d5e18ac4a160f9539e5b583e
BLAKE2b-256 0010f723b74efb96950630fd7d77fd221ea1498c424fcd95db3c80fd2aac6342

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 693.0 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b33fcf64c9da807ede2de730decf87437e15e71999e4e3b8ee837b2b0db0d9dc
MD5 e3b8ffd205017a902663920c98b5922b
BLAKE2b-256 897ed1e01365976183c0b8bec89f8fb0922141ac388e6274addc467cc49954d8

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 671.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f4d46cb98d3a16228c6b36323a83fdbd24567b1366e2f49ac3e2935b36d3e681
MD5 ce5a3734d9b6a3bac5219f970e2b7013
BLAKE2b-256 6b8bc23297d33adb8d886213813d3d47abb8607932d6db4c419320793d30b2a0

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 617.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f50042a9666000ca8c8593a6f0104e7d7665da55e173d8f0fab6268708627da
MD5 93d5d7703edd0c800b7664c8c81d7027
BLAKE2b-256 df4872c3ae1181a512660248185c3b63d92d92d6ca8ce5deceb528d870e62b18

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 511.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 055d1889c230c07a706237b8668b76eb76e8d411f2ded43941cf832fcf9a472e
MD5 7709ab4c8f29d2fbb227ff89cc4cde2c
BLAKE2b-256 f42e7e3e995d584309780891e21ee32385e53420496b72488a0c6d36df4410f2

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 488.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 424a089d7262b525f2a096ab5ac60d3d69c4c8d880ebf31200576b6850768ef8
MD5 0b981981e64b2c1f4dd2113786b4bdbc
BLAKE2b-256 f79d4a7a9fd4a8e7106173e610a51c1c18ac42d01e51a1ad988151a6d53d50b9

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 695.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2512945ff7b5816395363421854d2b104d9fecf4eace6246374b21544ae7ad10
MD5 07f61332aa70044977405221fd2e4b3e
BLAKE2b-256 f9b5d18bde97c256cbc82248e931c08330adb113493489a0be981a82249deb28

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 674.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 167d8b5cbf477c9e694b6f4a0c264e5b4a195c09bd52ae2d112f63e11a3c39c4
MD5 62064c3d2ff17068e21ea31c017619c0
BLAKE2b-256 f958cc0196ba5ed9a47014799a0ec53530e814bf7a7c3660d99805851de8c16f

See more details on using hashes here.

File details

Details for the file gseapy-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gseapy-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 619.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gseapy-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99e6da7486d16776b7a5dcc5b2bc5b3c54c62554038148aca05cba83389fe8ac
MD5 97ec08693ceaa5cdb55c783fadc5e6fa
BLAKE2b-256 077a4cba30f62310a7e01508dde54c6dc1574d7d45ebdc67571ef89613e15634

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