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

This version

1.1.5

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.5.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

pandas-1.1.5-cp38-cp38-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pandas-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pandas-1.1.5.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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5.tar.gz
Algorithm Hash digest
SHA256 f10fc41ee3c75a474d3bdf68d396f10782d013d7f67db99c0efbfd0acb99701b
MD5 b2aec1f069a20d48c834d213148041d1
BLAKE2b-256 fbe4828bb9c2474ff6016e5ce96a78220d485436d5468c23068f4f6c2eb9cff8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 edda9bacc3843dfbeebaf7a701763e68e741b08fccb889c003b0a52f0ee95782
MD5 b82f3f3077117279fbd999f192009c24
BLAKE2b-256 46f9d78955c88e045fa220392cc311e41764f8decf868594b5f92d8fa1d1b39e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c94ff2780a1fd89f190390130d6d36173ca59fcfb3fe0ff596f9a56518191ccb
MD5 02678bba3327963ccf030f60e42ab1c2
BLAKE2b-256 19966bd84872fcdf082c4a60b2b996a96cce13295da7198f38abd01c92d04bcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b1c6cd28a0dfda75c7b5957363333f01d370936e4c6276b7b8e696dd500582a
MD5 464fb5905a46d6c0f3dba38091443266
BLAKE2b-256 d0e164f9c1fccd5eebdf177e917e5499b6da266c409b6eba75b93a8cd3b8ccee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c61c043aafb69329d0f961b19faa30b1dab709dd34c9388143fc55680059e55a
MD5 29e5d6a5542da12a633b4e68142825ba
BLAKE2b-256 69c1bf486a9d03e1658bbab5212315dd0df49ddaccaa69f81c0dc17820ede978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 731568be71fba1e13cae212c362f3d2ca8932e83cb1b85e3f1b4dd77d019254a
MD5 2c2dd30ae7c1306d5433107c46c61c99
BLAKE2b-256 b34f6a2bdef087388a59245976008e0e0b4297659fd9796112d85cce766c3cd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.0 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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4c62e94d5d49db116bef1bd5c2486723a292d79409fc9abd51adf9e05329101d
MD5 364ea399b4b3c12a2f97a0df5dce3d65
BLAKE2b-256 fdf52b5dc56305fcb4bf0c176035ca1a2ed4fc2652362a8eb58f5b0d9bccfe22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5447ea7af4005b0daf695a316a423b96374c9c73ffbd4533209c5ddc369e644b
MD5 634b49476740ed8f3d81e3fd518df29f
BLAKE2b-256 f4b063aa0d048e4c3be3f0d2c3851cde44ce644bac3f527f9239df5ca15947d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a643bae4283a37732ddfcecab3f62dd082996021b980f580903f4e8e01b3c5b
MD5 dde0789bfe319b45f440e147de4050f4
BLAKE2b-256 977f865e78beaac43e57b7dd066cc28cd85a2b5687334188dbeca439bf13845b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2c2f7c670ea4e60318e4b7e474d56447cf0c7d83b3c2a5405a0dbb2600b9c48e
MD5 431a33beb87dc13949e4ccbd8216eaa2
BLAKE2b-256 f9f4ede7c643939c132b0692a737800747ce5ba0e8068af27730dfda936c9bf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5008374ebb990dad9ed48b0f5d0038124c73748f5384cc8c46904dace27082d9
MD5 198f34217bc99f1c39698766ef99af8a
BLAKE2b-256 ecae416c4b26a1cbcc57640733b738189a66f1fc2be568bdc88a0356a5a7e33a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2860a97cbb25444ffc0088b457da0a79dc79f9c601238a3e0644312fcc14bf11
MD5 b4de66794822773027b38e36e3a6c54b
BLAKE2b-256 d7cefd9ccaf9c328ead3024950f0799d24fb4ad328d3949e21d68e2e2338df07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 24c7f8d4aee71bfa6401faeba367dd654f696a77151a8a28bc2013f7ced4af98
MD5 eb18c39ac0fec45992ab1eec9ee73c6f
BLAKE2b-256 47175c4b04caa8fe1dca2aa940dcc00319aa77c84fbdb71f83869a0900cac660

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 21b5a2b033380adbdd36b3116faaf9a4663e375325831dac1b519a44f9e439bb
MD5 a0220a678efb01e3b420f2998c20a0e0
BLAKE2b-256 e108b059d45fc7a14ff9dcfa010324a3e79ff24a333cc0a81ae097accf236213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573fba5b05bf2c69271a32e52399c8de599e4a15ab7cec47d3b9c904125ab788
MD5 1a5c47b94d9f3d3399967b1c6f96209b
BLAKE2b-256 821344c05005f9eafda56651b9f27c2b89c803d78ca2136e43b72c0e7a5033ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3be7a7a0ca71a2640e81d9276f526bca63505850add10206d0da2e8a0a325dae
MD5 e7520b3b00575b9a1b90c05423f2eab5
BLAKE2b-256 fd70e8eee0cbddf926bf51958c7d6a86bc69167c300fa2ba8e592330a2377d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c16d59c15d946111d2716856dd5479221c9e4f2f5c7bc2d617f39d870031e086
MD5 b63078a7d1476bc92ab0a2d6a84eb14e
BLAKE2b-256 12ce5da11d852dc0bacce86ec8abe802a6a55bfe20823845b4dc609b0280cf90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 10.0 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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26fa92d3ac743a149a31b21d6f4337b0594b6302ea5575b37af9ca9611e8981a
MD5 ed12905875a1352dd2021c4d501a1e28
BLAKE2b-256 b5ac5ec0601ce698235cad8559dfe0ae5ace903a359d617a8c4c033f9879faf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 19a2148a1d02791352e9fa637899a78e371a3516ac6da5c4edc718f60cbae648
MD5 fe0e28faad080f2f46d7d826c04bcbda
BLAKE2b-256 79878bb36bd4ebae147612c73d1bdc1385db7beebb9eb141c4bfefb33f52c87c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 70865f96bb38fec46f7ebd66d4b5cfd0aa6b842073f298d621385ae3898d28b5
MD5 5ae72e90e1ea82a965eae5346cd26038
BLAKE2b-256 922aa7825928dd0ddd81bd4b2dcd3723a7082c2be42645095d03cd0fe345936c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0de3ddb414d30798cbf56e642d82cac30a80223ad6fe484d66c0ce01a84d6f2f
MD5 1186124e30dcda9e67f1365cdb3dc1b0
BLAKE2b-256 ff87c57d699a65acf6522cf28a589874746deb495ba73caff207bb7ec0399783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b61080750d19a0122469ab59b087380721d6b72a4e7d962e4d7e63e0c4504814
MD5 db542181f746a3fe3ee1818520bbbe96
BLAKE2b-256 c3e200cacecafbab071c787019f00ad84ca3185952f6bb9bca9550ed83870d4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a780260afc88268a9d3ac3511d8f494fdcf637eece62fb9eb656a63d53eb7ca
MD5 1af1e2aa21e0fbb1d2a0b0b2a655448b
BLAKE2b-256 5034ac705c69f778bf96343a33633b009927669833ca58b86c26c64af8578cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pandas-1.1.5-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.25.0 setuptools/49.6.0.post20201009 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.9.0

File hashes

Hashes for pandas-1.1.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf23a3b54d128b50f4f9d4675b3c1857a688cc6731a32f931837d72effb2698d
MD5 7789ba0aabcd7b3d357ae7c92bcca8e8
BLAKE2b-256 c8df7b92d69566df6daf65b7db7c7112130def6cfbdc254c78d8addb80402d95

See more details on using hashes here.

Supported by

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