Skip to main content

Powerful data structures for data analysis, time series, and statistics

Project description

pandas is a Python package that provides fast, flexible, and expressive data structures designed to make working with structured (tabular, multidimensional, potentially heterogeneous) and time series data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, real world data analysis in Python. Additionally, it has the broader goal of becoming the most powerful and flexible open source data analysis / manipulation tool available in any language. It is already well on its way toward this goal.

pandas is well suited for many different kinds of data:

  • Tabular data with heterogeneously-typed columns, as in an SQL table or Excel spreadsheet

  • Ordered and unordered (not necessarily fixed-frequency) time series data.

  • Arbitrary matrix data (homogeneously typed or heterogeneous) with row and column labels

  • Any other form of observational / statistical data sets. The data actually need not be labeled at all to be placed into a pandas data structure

The two primary data structures of pandas, Series (1-dimensional) and DataFrame (2-dimensional), handle the vast majority of typical use cases in finance, statistics, social science, and many areas of engineering. For R users, DataFrame provides everything that R’s data.frame provides and much more. pandas is built on top of NumPy and is intended to integrate well within a scientific computing environment with many other 3rd party libraries.

Here are just a few of the things that pandas does well:

  • Easy handling of missing data (represented as NaN) in floating point as well as non-floating point data

  • Size mutability: columns can be inserted and deleted from DataFrame and higher dimensional objects

  • Automatic and explicit data alignment: objects can be explicitly aligned to a set of labels, or the user can simply ignore the labels and let Series, DataFrame, etc. automatically align the data for you in computations

  • Powerful, flexible group by functionality to perform split-apply-combine operations on data sets, for both aggregating and transforming data

  • Make it easy to convert ragged, differently-indexed data in other Python and NumPy data structures into DataFrame objects

  • Intelligent label-based slicing, fancy indexing, and subsetting of large data sets

  • Intuitive merging and joining data sets

  • Flexible reshaping and pivoting of data sets

  • Hierarchical labeling of axes (possible to have multiple labels per tick)

  • Robust IO tools for loading data from flat files (CSV and delimited), Excel files, databases, and saving / loading data from the ultrafast HDF5 format

  • Time series-specific functionality: date range generation and frequency conversion, moving window statistics, date shifting and lagging.

Many of these principles are here to address the shortcomings frequently experienced using other languages / scientific research environments. For data scientists, working with data is typically divided into multiple stages: munging and cleaning data, analyzing / modeling it, then organizing the results of the analysis into a form suitable for plotting or tabular display. pandas is the ideal tool for all of these tasks.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pandas-1.1.4.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

pandas-1.1.4-cp39-cp39-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

pandas-1.1.4-cp39-cp39-win32.whl (7.9 MB view details)

Uploaded CPython 3.9 Windows x86

pandas-1.1.4-cp39-cp39-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.9

pandas-1.1.4-cp39-cp39-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.9

pandas-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pandas-1.1.4-cp38-cp38-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

pandas-1.1.4-cp38-cp38-win32.whl (7.9 MB view details)

Uploaded CPython 3.8 Windows x86

pandas-1.1.4-cp38-cp38-manylinux2014_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.8

pandas-1.1.4-cp38-cp38-manylinux1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.8

pandas-1.1.4-cp38-cp38-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.8

pandas-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pandas-1.1.4-cp37-cp37m-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

pandas-1.1.4-cp37-cp37m-win32.whl (7.8 MB view details)

Uploaded CPython 3.7m Windows x86

pandas-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.7m

pandas-1.1.4-cp37-cp37m-manylinux1_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.7m

pandas-1.1.4-cp37-cp37m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.7m

pandas-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pandas-1.1.4-cp36-cp36m-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

pandas-1.1.4-cp36-cp36m-win32.whl (7.8 MB view details)

Uploaded CPython 3.6m Windows x86

pandas-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.6m

pandas-1.1.4-cp36-cp36m-manylinux1_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.6m

pandas-1.1.4-cp36-cp36m-manylinux1_i686.whl (9.1 MB view details)

Uploaded CPython 3.6m

pandas-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pandas-1.1.4.tar.gz.

File metadata

  • Download URL: pandas-1.1.4.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4.tar.gz
Algorithm Hash digest
SHA256 a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6
MD5 594e6a429f297c77470e37d3510cccbb
BLAKE2b-256 0939fb93ed98962d032963418cd1ea5927b9e11c4c80cb1e0b45dea769d8f9a5

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a11a6290ef3667575cbd4785a1b62d658c25a2fd70a5adedba32e156a8f1773
MD5 97ee917c821aff20cd8dcd7b4494af8d
BLAKE2b-256 c5bdc52cd94e7d10ca08238a29d65e727683ff063461aa56e6ee313dad1360df

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: pandas-1.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 09e0503758ad61afe81c9069505f8cb8c1e36ea8cc1e6826a95823ef5b327daf
MD5 2908094ca92728a3f25ce07571c4d53c
BLAKE2b-256 0c8dd2d074b6664dc6ead12b051fa5eda9e663253ed427ba91b89098b96dc698

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b1f8111635700de7ac350b639e7e452b06fc541a328cf6193cf8fc638804bab8
MD5 1e3c61ffe881d1ba6c24eda6c9f1ffcf
BLAKE2b-256 5aaf0a7e1ed95066ba8bcd65c0dde57cacbfc025f3f4a69878951df754787ec2

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pandas-1.1.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf135a08f306ebbcfea6da8bf775217613917be23e5074c69215b91e180caab4
MD5 928a3c4c909a0bcbba4ff940a59e8e8c
BLAKE2b-256 d2c5e1c2871472b9ec52930118f7aeff5d1a76de63f3070471818093177529c3

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 112c5ba0f9ea0f60b2cc38c25f87ca1d5ca10f71efbee8e0f1bee9cf584ed5d5
MD5 04b2199a2fff190c026e8c3e561ff7da
BLAKE2b-256 b85309800b6aab4c31fb33dc167ad73ec2cde67c2f3c371a3a1d0c590b07a9f3

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 54404abb1cd3f89d01f1fb5350607815326790efb4789be60508f458cdd5ccbf
MD5 4cbe68c5859dacbf33843343f76dbd2a
BLAKE2b-256 07c5b331415af20d49098250d923440e710e31e42d84ca0d071d5f7f29e95b2c

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a5d7e57b9df2c0a9a202840b2881bb1f7a648eba12dd2d919ac07a33a36a97f
MD5 0c9c9dad18e45d5d10b2e569d776fd57
BLAKE2b-256 cdad9248c5dac143c452f1f8a21e95a2ca0cf5c81a0124066fc588673c52d1bb

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fdb2a61e477ce58d3f1fdf2470ee142d9f0dde4969032edaf0b8f1a9dafeaa2
MD5 03b6049af507d4cc48275338f0116b44
BLAKE2b-256 f47d115d9bfdf1de7dbc51230d80de09e0af4d57af8a0e15418346787d1ea7c4

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a15653480e5b92ee376f8458197a58cca89a6e95d12cccb4c2d933df5cecc63f
MD5 9d45b0d707b0e6a5bfb78e56022c9b11
BLAKE2b-256 0555680d41e54222fa5454ac184a237a23329857f98ab2ccf58710d5f662b914

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 41746d520f2b50409dffdba29a15c42caa7babae15616bcf80800d8cfcae3d3e
MD5 77e94be86c4a864c53813e1fb09e2086
BLAKE2b-256 133375434c3782b4f46e455b71e9db32577364f4d37dee4b2ed87609fdaf3a4b

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.1 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7d2547b601ecc9a53fd41561de49a43d2231728ad65c7713d6b616cd02ddbed
MD5 d0051b58418169f763f8f8afdbab6a8a
BLAKE2b-256 18f0905058bd437423591491092d7e42244babd0c19861e6b1abdadb199a1321

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5378f58172bd63d8c16dd5d008d7dcdd55bf803fcdbe7da2dcb65dbbf322f05b
MD5 489aebc4b9eaaff963e2260ea3ac3404
BLAKE2b-256 9c4d4938a43970778cffecc10a82824a166f08d687d935afe7d04484cd489940

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 43cea38cbcadb900829858884f49745eb1f42f92609d368cabcc674b03e90efc
MD5 6d33dcae905096d6ae8106ea9069a9ed
BLAKE2b-256 f432e3d08b3f2d7ea5ec1eda9667bb6d59ba906d7fa45041065d7feba1786be6

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6613c7815ee0b20222178ad32ec144061cb07e6a746970c9160af1ebe3ad43b4
MD5 abd44cb67797c1bb4192f3de1ebdaa75
BLAKE2b-256 d2644c7c4a554193dcd464511c331380088a88f86056470d136657743e919ed0

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c5a3597880a7a29a31ebd39b73b2c824316ae63a05c3c8a5ce2aea3fc68afe35
MD5 3c66c87a7ff72375aa16c2e77d870f68
BLAKE2b-256 bf4ccb7da76f3a5e077e545f9cf8575b8f488a4e8ad60490838f89c5cdd5bb57

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c681e8fcc47a767bf868341d8f0d76923733cbdcabd6ec3a3560695c69f14a1e
MD5 836311f34128d8c405f8a8662aa52773
BLAKE2b-256 4ffca0aa8b03c4d853df547faef2f73ab8bcac7d53c61051426f8a4670d39975

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d2b5b58e7df46b2c010ec78d7fb9ab20abf1d306d0614d3432e7478993fbdb0
MD5 4088cd3bca649ef8a09c9fe3fbe7ffb7
BLAKE2b-256 6790a95cef3d819173b7dfdb8bf52b99409584a22bc73179801f6fd946e38f5b

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5dac3aeaac5feb1016e94bde851eb2012d1733a222b8afa788202b836c97dad5
MD5 5aac216fbaedc396f7bb62f50f459312
BLAKE2b-256 d7eb7dec8af25f078a86aea778fdc6e77f90e442a1fcc975817e15ee3132f5ca

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b4c2055ebd6e497e5ecc06efa5b8aa76f59d15233356eb10dad22a03b757805
MD5 9f6d4729d99d2514047e16d832d9f9b7
BLAKE2b-256 b9f65b640c2c70c9b321cca65aa75e15183180d4f6832c28b6313f595a91bdf5

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d9a38a59242a2f6298fff45d09768b78b6eb0c52af5919ea9e45965d7ba56d9
MD5 d56a3d0355005e885ab8b1eb7d318ea4
BLAKE2b-256 17b47902c00db45c793663b2f5ceb1873c555b20c5c2f15680208a028afa311a

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 185cf8c8f38b169dbf7001e1a88c511f653fbb9dfa3e048f5e19c38049e991dc
MD5 877dc24747cf059bbdcc860eaf2f2318
BLAKE2b-256 4d51bafcff417cd857bc6684336320863b5e5af280530213ef8f534b6042cfe6

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3aa8e10768c730cc1b610aca688f588831fa70b65a26cb549fbb9f35049a05e0
MD5 7c83e125a3b43d2ed4c01597aa0b7121
BLAKE2b-256 bee10788d740faf63d16096954b4aa3d06458c9a5f819c902f562af887c530c0

See more details on using hashes here.

File details

Details for the file pandas-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pandas-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for pandas-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2b8557fe6d0a18db4d61c028c6af61bfed44ef90e419ed6fadbdc079eba141e
MD5 b43dc5caed8fdfe6ae97e2288473ae36
BLAKE2b-256 3fa52bfd885118ebec3e3efdfe3527189b1857285006dca31dc408edbacfa226

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page