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 scRNA-seq datasets

Tutorial for general usage

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.

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.

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 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 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.2.1.tar.gz (148.1 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.2.1-cp314-cp314t-win_amd64.whl (466.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

gseapy-1.2.1-cp314-cp314t-win32.whl (441.4 kB view details)

Uploaded CPython 3.14tWindows x86

gseapy-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (632.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (610.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (560.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

gseapy-1.2.1-cp314-cp314-win_amd64.whl (467.8 kB view details)

Uploaded CPython 3.14Windows x86-64

gseapy-1.2.1-cp314-cp314-win32.whl (442.6 kB view details)

Uploaded CPython 3.14Windows x86

gseapy-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (633.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (612.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (562.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gseapy-1.2.1-cp313-cp313-win_amd64.whl (453.6 kB view details)

Uploaded CPython 3.13Windows x86-64

gseapy-1.2.1-cp313-cp313-win32.whl (435.0 kB view details)

Uploaded CPython 3.13Windows x86

gseapy-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (633.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (612.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (559.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gseapy-1.2.1-cp312-cp312-win_amd64.whl (453.9 kB view details)

Uploaded CPython 3.12Windows x86-64

gseapy-1.2.1-cp312-cp312-win32.whl (435.3 kB view details)

Uploaded CPython 3.12Windows x86

gseapy-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (634.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (613.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (559.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gseapy-1.2.1-cp311-cp311-win_amd64.whl (456.5 kB view details)

Uploaded CPython 3.11Windows x86-64

gseapy-1.2.1-cp311-cp311-win32.whl (437.1 kB view details)

Uploaded CPython 3.11Windows x86

gseapy-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (637.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (616.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (564.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gseapy-1.2.1-cp310-cp310-win_amd64.whl (456.4 kB view details)

Uploaded CPython 3.10Windows x86-64

gseapy-1.2.1-cp310-cp310-win32.whl (437.1 kB view details)

Uploaded CPython 3.10Windows x86

gseapy-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (615.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gseapy-1.2.1-cp39-cp39-win_amd64.whl (458.7 kB view details)

Uploaded CPython 3.9Windows x86-64

gseapy-1.2.1-cp39-cp39-win32.whl (438.9 kB view details)

Uploaded CPython 3.9Windows x86

gseapy-1.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gseapy-1.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (617.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

gseapy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl (566.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: gseapy-1.2.1.tar.gz
  • Upload date:
  • Size: 148.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1.tar.gz
Algorithm Hash digest
SHA256 f5292ddd4dd9c66ad4f4e5fa2acceeaaf39341b0a508bcbe62617c449f1e8869
MD5 5235e789c052d2179b0215c1ccc43fa9
BLAKE2b-256 f532a5307b9dda181c0f3dfbae435fa6aa0d6b66174ce2cd7a4bc81d8a006007

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 466.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":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.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 92bea48b7c78ba079c2ef29354fd1caf0716e5ad4d3384d35e7de493805cd052
MD5 5c0b2ae08c0112b464baa6a49b73c748
BLAKE2b-256 e27a68a515d2db354ebf2122070522af8494b9498882ed2e15d8421ac3e3c08f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 441.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e7f2ac6826a300128d3d993c05aa229ab8b0bbfd5f6f65da2e43de2ce66ae93e
MD5 2dc2dcd8d797f07c8925b010b9a891b4
BLAKE2b-256 b52dd7bfcd9fa3cbc4e1da456fd472ddf921ec4f9fcd1fbe78a85f29f412a683

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 632.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 483d5d830c9904348ec8cc1c71c7013c3b49e3ab958e8065652ca59a0b31e39f
MD5 f00ee849bf696be0d8394c29914a98b0
BLAKE2b-256 20c8c1ccd74640ac4ed74b422a47f1001b04e74391dc5e13d5844c1ada35ba4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 610.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 534dad534de6a3a16ef1712f5cf6c1bc374d850a2678b663edfa025eac3a1acc
MD5 56528fd343a93f0f770c1201edec4049
BLAKE2b-256 4f831148a9ed7bca819aaa3bace7f87dd4b1f7d7a79d952b2472a7aeeb5ce495

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 560.2 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27eb903387f819a492f63d23e1f5cb004dda567ffbae290ea0ae4fce45fefa0b
MD5 fc9c9dbdd3d3943319ec9a9442b66fd8
BLAKE2b-256 58e49b09622c787b08f06fecd4319141bae11e3cb5363eb97793c8a1213d608a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 467.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":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.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 897df74763e1e8874b84b1793dbd8483ccaae19fcc8ad33b23b1d3948260424d
MD5 451b8fb1e0fafc33c8fceaeb98ffd8e1
BLAKE2b-256 f32b35049681b8cdb3c2c0db7a216900c483984aaa6fae075443db6396c91b64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 442.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 29767fea57ecc82fe60681a201c17c434e037d80d55fcdd6cd1759fe3568a351
MD5 c00d7ac45d20d4ba638a6d4a348ff907
BLAKE2b-256 02e8a6e72a8a6b28d23c7fc03e0fc2ee97fbed5ed1a4bb7dd6ddddad52c64891

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 633.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7056fdb0e863c0b23a43947b2a50ddf22a4e62591c8e5d0bc587e496d4840a88
MD5 e897a4c0fd1e095e077a7767a88f55c2
BLAKE2b-256 3420240e3d18cdfb098953b510c12ff4e3a15e6093ab7308917124828526e7bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 612.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b998e7e6e81e4b1f4cd908583f735d4c4c2874766d2410b872011ca85853455d
MD5 b11c5a2ef0a78e332fa1d229898f614b
BLAKE2b-256 28b3be349a7952d116f420360fac6d709cb3217e692f631d9a2b79f56c3cac80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 562.4 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af8bf64c15345add7485db5b7cc5957837437fe0ecf83af33be7fbce579f758b
MD5 88b8793f31787e5e25560ae026ceb8e9
BLAKE2b-256 ad620404c66588e00fd2612b681e58546044bb7fbb4a16eb763090e6bb47dc33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 453.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad3c520c250404ac1b195f6b2f08443019ddc0533815574b1346cbe595c699dc
MD5 3a8e7e9665d7372d485c977960b2c0d9
BLAKE2b-256 447524f7ead9e367f562dccab06c154bfce336d01ded00258356241d92a8c1fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 435.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 42ed3f17fdf3a742b3c75deb67aafe5ac977d46d7e81b8bfbe1f5c7b841f6bc8
MD5 82ea8b7deebfe4d4986b194d02fee505
BLAKE2b-256 d3d908a0047467c9eb5379dfb0e92e7aa81410a5a5f564165797b7359e86ee5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 633.2 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c72b1ed92041e097af8018d69c799bf95909bfda48e827edc4435cc65b41697d
MD5 3b38ca3b856d1829f12bdcf0bd60c3cc
BLAKE2b-256 122cfcd03dffe5bcb16b392d812ee661c10d20f2493dbfec4741ac3a555127fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 612.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fdeebace80b3d5922a60c0bc1f806c08a0f18719f077209f19e80616c8543133
MD5 93fc5ef75295d5db12c0d97cf83f188f
BLAKE2b-256 fd45b58556597d69dca5cb6eafcee275be29f91ab1c252d3f0e35d82e7f1176a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 559.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aaf6fca0a93f9d9489556242fcf48547e71c3cf4c254873a6ca27972c14dcbe
MD5 6b056d7734103f7c8534a702b84d0b80
BLAKE2b-256 bb198a5f64bb6d1c01b4ee08e118e9b693c5fe9a0fc08cc53493f1480fc46f6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 453.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4584edb4ac3b04f322cbd27f93aff6b7779c102d93a1ae2eb7e9124ed08c318
MD5 67050c612f12e5551040ed976a2218f4
BLAKE2b-256 14ea574e7fa17e03a59ba99ae5b4e3b8117ea1804c38d0ded029a93e819803e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 435.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2d0a88105947cea6979ab75b4fa5a470587885f03fd1d88b175b390213fad8b9
MD5 f64bc23440935e9934e8463f74ec4846
BLAKE2b-256 4b27af1fef2cb0e5a802b38b8bca1d24f08d7ebe49b494c52080d24d1b91b44a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 634.7 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f8f8120d871ce0f6012c19f494c96b5fb4bf0f623eef84eb578c14ddcda8cce9
MD5 0a07fe83b39593190480fec951919e1f
BLAKE2b-256 8e3f72ae7aa02ba7891471fedfa24f246c3ea9748efdf9e49f48ca659ccd9a98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 613.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9e35c245ece853952155a57219cea6bcdfc7a438b4fd69ea1ee04312afd65fbf
MD5 c5ba0dc8d8e712b10b96599106017f6e
BLAKE2b-256 fb275ff37bd4dc446004c654598a4869b4c6a1c90d9b010acb40f5b5c42c9c7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 559.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 674330565f38cc3e792151aee3044c721ad634cfd886239f7e0515cf04128f2b
MD5 7a3c8f6ed2e0302f7acbd44843d432e3
BLAKE2b-256 1ff71300c56a491749d140e532d8eb0db7c72ddefed1b7ca3728ecd47c079cb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 456.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0cad101e63e3862c0f05d1f221a0ee04401b1ddfb207c3a354e8dd0b27a5a743
MD5 245a1d955a61427125e6909d4c74ade7
BLAKE2b-256 f5cee9026864d931e4d8e4f79e30a5ddf674253d3b86fed8971b70aef67463ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 000afe3a6f22326043a815b33d64b8b290967b3e1ddac4e471b5cc7ba45c5660
MD5 bbebe6eb2add8704caac69c36d52781a
BLAKE2b-256 efd8b430cb81a41d7cce0bb751ae1a570752f870d2b1c44753de65bf1a168f25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 637.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b22ae7c8a508b24a6e85fc47d8afb91e625a72052c8e70d63e4c9f5b5f61fa0b
MD5 e266c267688c98bda8320bc0751343aa
BLAKE2b-256 2467c6e4aab1162bf6fa4fb38986651793e4f30d96df2a68798d1e8441d7cb4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 616.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 029ab88bf6ec7da0bb2e8b0af93aefd17683f4d2bebbb4c0c3cd3ca18f3c1c33
MD5 33579ec91c2b622c736ee4a0fea92aca
BLAKE2b-256 307e296c3366d7b5956d58b58b8658054e0cb4f3296f85df8b016dbedc735346

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 564.2 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79b047e84ca41152b8d8a9c5eb2c0447f4ca2bde88672f098abea2ebb1d617f
MD5 6bf2ac67e685c55959b5dadd23134a91
BLAKE2b-256 fdb0e7ba2951607084795ddbfa0dcc70d388d56bf08c5b72a7649bc07cd16f3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 456.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 27de634392df71c52af421b40a194fa702a902f3b3e69b7100ba25b602e66a71
MD5 c1593078eb4d974d3411c8763714fa86
BLAKE2b-256 0295488f3efe5f749e7864f19db79f5bbda7f9658aa91d5676be64455c2afdd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e209d1fcaad1f892d3ded5d7808a18daf5850bab769e15e57721f78c6db14772
MD5 29fe71026a28745756c500ef8f9913c7
BLAKE2b-256 73b55833cd17b65882d68ea2b65832d32d18ed88be0d5f764fde359084086bc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 637.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e7a8d2852ca1646305038f8e622434b506478ac5d82247f254821a7c7c8802f8
MD5 03af67fcb4db841de0a1c1a16a2b4da8
BLAKE2b-256 5059c2b5f026bcb66ea6d1ce580e3493ff151d58a68b36c282cb8f0814f129d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 615.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3b90f3938ea0c8daa709ba304a9154f1866072c835689ecf5375fb35deae6278
MD5 c7080ca7bd8210d479518f360fe9ed3d
BLAKE2b-256 b5fcb34665a551e5ba673ca3e89b7dc16e815a00f2faf18afbb5446abc205327

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 564.3 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a5943db7cfa67c879e64679b4383cf994be011c4eb1cdf963b30369da8e850d
MD5 ca74d55718cbcbacf3caf70b8c6b11c6
BLAKE2b-256 8a4d28f4af7bf807323e1dd59c9b9bd99133476f03ed315126dba37a9c529648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 458.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 185fbbc3bbf92fe57833b2657eab89981f6174a3c8e82042e1647227a1278931
MD5 3f00f7d146825b8d730de1bdbe028082
BLAKE2b-256 4edc2d1d97ca15724150a3dd3075c0402f6384bc5d3cfe3b8f3aeaf3ab1c05fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 438.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0cd503a8144b2ffe39b4dc72b43f2561f02173efd9d1e42377041ea9ab13c7ce
MD5 e993863bc8bcd893fb8306c5dc5ba21e
BLAKE2b-256 33fcf3233b498dd7f79e085cad4851551efa6d52a2d03dc852bd5bbed1e84b63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 639.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ffa21502272e7cc91fd2afe8dccb46e83e6e434c0caebd2c5c7bff552f53f431
MD5 50cede4d5337cc7997d91cff5f722f8d
BLAKE2b-256 1c35bbe2532e2bf7549ccb18256b9d16a9fec7600b64d30c5dc074262343c5b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
  • Upload date:
  • Size: 617.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","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.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0c461a08410d674b242e8676c615c62e195dfafdc163e86c5d66ca0883062793
MD5 710d34fcc17e01f3aa03df456874451e
BLAKE2b-256 c12384581bccf342d9ea2269b4f00a59789e8b38d8c4a9c9457745ce5134de44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gseapy-1.2.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 566.7 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"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.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 779f3f801daa3ca40ec00c4863ea260f633570d0e559d6d4229911fe27587e64
MD5 44893fb01352750bf0d81223f7092ec4
BLAKE2b-256 2aba54712678994637bce6178d51a6d3ca37944cae781e39efa73fbccaf66305

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