Skip to main content

No project description provided

Project description

popgetter_py

Python bindings for popgetter library for searching and downloading popgetter data.

Quickstart

Install:

Create a virtual environment and activate (e.g. with zsh):

python -m venv .venv
source .venv/bin/activate

Install polars and popgetter:

pip install polars
git clone https://github.com/Urban-Analytics-Technology-Platform/popgetter-cli.git
cd popgetter-cli/popgetter_py/
maturin develop --release

Examples

Search and download data with popgetter using text, metric IDs or search params:

import popgetter

# Search and download data with text or comma-separated metric IDs
metric_ids = "f29c1976,079f3ba3,81cae95d"

# Get search results
search_results = popgetter.search(metric_ids)
print(search_results)

# Get data
data = popgetter.download(metric_ids)
print(data.head())

# Search and download data with search params
search_params = {
    "metric_id": [],
    "text": [{
      "text": "Key: uniqueID, Value: B01001_001;",
      "context": ["Hxl", "HumanReadableName", "Description"],
      "config": {"match_type": "Regex", "case_sensitivity": "Insensitive"}
    }],
    "geometry_level": {
      "value": "tract",
      "config": {"match_type": "Exact", "case_sensitivity": "Insensitive"}
    },
    "year_range": [{"Between": [2021, 2021]}],
    "country": {
      "value": "USA",
      "config": {"match_type": "Regex", "case_sensitivity": "Insensitive"}
    },
    "region_spec": [
      {"BoundingBox": [-74.251785, 40.647043, -73.673286, 40.91014]}
    ]
}
search_results = popgetter.search(search_params)
print(search_results)
data = popgetter.download(search_params)
print(data.head())

Download data with popgetter using a data request spec (see e.g. test_recipe.json)

import popgetter

# Download data with a data request spec
data_request_spec = {
  "region": [
    {"BoundingBox": [-74.251785, 40.647043, -73.673286, 40.91014]}
  ],
  "metrics": [
    {"MetricId": {"id": "f29c1976"}},
    {"MetricId": {"id": "079f3ba3"}},
    {"MetricId": {"id": "81cae95d"}},
    {"MetricText": "Key: uniqueID, Value: B01001_001;"}
  ],
  "years": ["2021"],
  "geometry": {
    "geometry_level": "tract",
    "include_geoms": True
  }
}

# Get data
data = popgetter.download_data_request(data_request_spec)
print(data.head())

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

popgetter-0.1.0.tar.gz (52.7 kB view details)

Uploaded Source

Built Distributions

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

popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

popgetter-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

popgetter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

popgetter-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

popgetter-0.1.0-cp312-cp312-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.12Windows x86-64

popgetter-0.1.0-cp312-cp312-win32.whl (14.7 MB view details)

Uploaded CPython 3.12Windows x86

popgetter-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

popgetter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (16.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

popgetter-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

popgetter-0.1.0-cp311-cp311-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.11Windows x86-64

popgetter-0.1.0-cp311-cp311-win32.whl (14.7 MB view details)

Uploaded CPython 3.11Windows x86

popgetter-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

popgetter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (16.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

popgetter-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

popgetter-0.1.0-cp310-cp310-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.10Windows x86-64

popgetter-0.1.0-cp310-cp310-win32.whl (14.7 MB view details)

Uploaded CPython 3.10Windows x86

popgetter-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

popgetter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (16.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

popgetter-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

popgetter-0.1.0-cp39-cp39-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.9Windows x86-64

popgetter-0.1.0-cp39-cp39-win32.whl (14.7 MB view details)

Uploaded CPython 3.9Windows x86

popgetter-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

popgetter-0.1.0-cp38-cp38-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.8Windows x86-64

popgetter-0.1.0-cp38-cp38-win32.whl (14.7 MB view details)

Uploaded CPython 3.8Windows x86

popgetter-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

popgetter-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (23.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

Details for the file popgetter-0.1.0.tar.gz.

File metadata

  • Download URL: popgetter-0.1.0.tar.gz
  • Upload date:
  • Size: 52.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d15099fdfcd13888d0a53b1d76d813fb17fb7fcbbe730da2d792a1bba4c8bb90
MD5 aff00c898f4fe1c2e983852a369c3109
BLAKE2b-256 2e196f0f66fc55e7b48fc8fe976815f465350a9c4a43a7efe4706bd0c4cead4a

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 148a77ccc9bba2b68704ef6cab5da749262dfe948cd8632b96338e571b279c35
MD5 fe3440aee4f99745429d983353d2552a
BLAKE2b-256 ebf45fba37f055e60877adedd78492b227aa57fcd027ae7ecd09fdf34c9aa6f0

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3063a2914acb206a2c312e8d7adc3822b042aa7bf2815a59d9bd25cf42a77e4d
MD5 309fbf99387cedd988f418b7e33719db
BLAKE2b-256 b9115d5b5bb40de353c763871920d410d5ba11c64233a0aef8f414728c1e4ced

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 397ff8c5c9104ad1a51d3789de3eee3bf2c782a8c5bec382dabbfdc1e04746f9
MD5 4cb6a7a80e3e745afbc0f662f6d0dac0
BLAKE2b-256 cc36ddd5934afc50a5657f90dc8a467973b0cdbe2b98e9e8adba93f14c16aadc

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23c783cbc8dfd69ab1e9c0ce89433bfe11adb63707034d8e1267e40faa6a5dcf
MD5 ae27e94c84a2125ff527385074950be7
BLAKE2b-256 bf720287402bee86f34f39dd6de52dcf9a5cef44bad4bcd200ca203e7f053e00

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2025633cd12c8c7254e099bd20ff3d8e302301072a2c30c8cef0fd31ee5f002
MD5 ce0668f652f1c567c82186914726c860
BLAKE2b-256 fdba770944b5e7706e07b064dd94cf7c34e0425c79edfd6c044f3a84d468e4da

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea2b4e0941c9759ceede92c151cd6361bd8f1262400e35bd9e1de1d8311d7e8a
MD5 5155a90afdaed1d2857106869e081620
BLAKE2b-256 e093d4b74034f586c2b02fc25f4df7a4b87c0c5b1931a6a49dd82405f8337d51

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b1fe1e5bf65339e8fb020ab8749bf37f30471e30cdc13afbd4701f644238e3c
MD5 9e4af67e159aa631d79da2a22bf60b26
BLAKE2b-256 5e3189901a7b3431f0846a0ee76fcbfb4a4a36d5e4e7ce2adfb109514c17643b

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fa5206001ceed4a3a78de08eb271a084b5fc18f47f147c26dfbf87933e7606c7
MD5 c9b528524ccb52cb6b1fdcb3edcc6e05
BLAKE2b-256 853ebcf07805c73046890a2bb9d8eac316fd525e377d210db5a88f5c35508e6e

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab1c0df945c1b92fc2d62e76b90cd1fd0f27b422291c95ebd9f09b72cca311ec
MD5 499b576d05ed4997af1d30c3e5b27b31
BLAKE2b-256 fefbd539457f9cf6b9672f4a554ea28d78cb123dfa4ebd1ede1c2b03ef3f9772

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 289c55c2fb1ee8a55c614186c3c0ecc0128d4e8571fd727e506301ed538f1b38
MD5 4f65774bc8e064c64c5c4afffe21a55f
BLAKE2b-256 bed5f313fdbe0546463be3c78d6168f7e692979a08d313da8844f064a0320498

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cf3ae37d2762229db3ee4a09edb948eb0370e45a4e6f293be5e8d66f7e9bb18
MD5 aa462708c1e6999f23a92d344bda914d
BLAKE2b-256 945cb446f63574ae0c12982b2b489aa773cd507f824fbed60c90ce913c165850

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31db8a1e343583b2924c3d085d2401a0b5bc5f12f947907fb2f72c543108fc31
MD5 22bf1ce1a8aea1f52b4aef3df220efad
BLAKE2b-256 a1cd5fe0af02dc72baf51012011098fe1004a8d5d9e1b317d5f1161b19fa7df5

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2970039acda4d5a60928fc4ebb04d82113a33f59473cc65e9850bf22bdf28642
MD5 09ab0233d902ca285bc51b3ce6c2713b
BLAKE2b-256 35ea10df8a5fa2d039ecc4c5e2e5286211fa91be36863318f0f599ed57d452ae

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d21c91b65962c53b13b556e4cf2555e59281b9c4c36b7bde5d6a47a1b60e211f
MD5 3beb6d59d00179d4cfb03b4d95e927b0
BLAKE2b-256 bd6039b22818a1e4e584c2442d0cd88c2249da3ae0f7a719362e4eb9889891bd

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22325a3d5670b6bd98e468c68ec1a9455fe24b66e124d9afb018354067530d81
MD5 7cd82475dff4f54ebcb39747789d72aa
BLAKE2b-256 4323ea5634958bd593f450fa35057c701335f9052db62d51a6c6ce8236b0a625

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a43886aa9cf86434d66e6859e71d4ec798cbd0323fae2dbe6c961fb72a0d5711
MD5 d8c24e9293a130252c3d93688e8c0ca6
BLAKE2b-256 ef8f94942ef60b7fdaedcbf0d7a8ea616b9b8cc24916568c29247cec10b840de

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b24b5b28f860d65ec4a0d08d0ef36b13f10c1d10c546ad8980a077238181c976
MD5 37ccc2c4aa5b40f7447d325a09644cf4
BLAKE2b-256 eb755460ec0629cc21d5fedadbf870e7d064579dfa1e5a62589a7503730b4640

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1d5a731f5fc238f58eadb1a34bff504e9ad4560e3e389912ceaaec6ec28403c
MD5 5b8dedf38aebc279d55bb9986d6dc87b
BLAKE2b-256 24d110408d1b920e443bb14a5beed00843b5e7810bed152c24b1dcef9958a4c3

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51e5c0f9020c31d41d4bc5204c5037f998f9953d4342cc3360fa2f817d3509ef
MD5 9fc13123a64575d60906b3f00e68c847
BLAKE2b-256 8984a1191bcbcc6193ea1dd95c480a781d9b29514b8ae39f6b16608ba7474fb5

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8b923d069e0accf145b1ec3f1e80dc9477eccc21c94dbf0a7cc5ba6760e41036
MD5 4868eabbcdbeb30f4ed72b843b12e23c
BLAKE2b-256 964dda8f3a56a446c2eeda499cc549f04a306a96948c1f5522a21a8a40d893a8

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 000442abfe5176efe2a8db6db5e3d73aab8fdfc8cfe4990e01c896cfd628b560
MD5 6a98c3aabd93dc736c613cc24219a272
BLAKE2b-256 7422b314f3ce717238e69a41347f2a22e1ff90ebc9d554110535d4515964041f

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66a801896bf9c25986cbcf8c014bc08f6dde577a5ff881c1391b902603e4b98e
MD5 3a730ca07ed4bd8c03c117f247f0343b
BLAKE2b-256 c13c37e7ca34dfd6e95ec1bbdf0ca9c2b546c88f8a8e4acf302f5d10763e9aad

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c0aa2336a938d52ec13316c33c5dfeb9b0dd859a8dcced52ea44dd6c0841f4b
MD5 5e8b4ea9b412d723a4682f93600723ad
BLAKE2b-256 ac0b70ae5cc0ad2aebd64c3ab031ca4eb50e799095325d3a4b62e61031e30dee

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c99981a5c6ec64258363ecb6b63ebd022954d5316ba28280d2963cfc949f62c0
MD5 1ba2d2fb4f5c984aff622594610146c7
BLAKE2b-256 43d3e26a4191a91abe7e9cab0ed705cda9b0c8ed99172031479b69effd0ea3b6

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3686fd091280cb4fd12cfb2ce7b542d410ec43cb681d6e522b6f7172deaff53f
MD5 09fb3c2998dea020aefc78504a452e70
BLAKE2b-256 56652d49d305d22cf7d3c70589ef65d379ce54dd125fe2ddb9f73948f081b2a0

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6c38251348efb6cf4b3e3accfb996331f4074a19ecbd26f03a9cc021658da840
MD5 ab35eebcb284fce2ebb7007a6a8cac02
BLAKE2b-256 5540abcda19d9912631d41106a7fa6954f2a4840f630330bba113f3307834388

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b8f5cce7fe45383d62b11d367ab5ca0c5ec2b8faee7f6d39e3e60b669a17077
MD5 607b5b349224b699f24ed7e2d5f81154
BLAKE2b-256 e8958f5af95fa91b8df359ecb9383e0c39999b9d9f24713fb10c40102becd87e

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ff69a85a1cacbe2f2e88f008563daabc49869f95627c2eefdfae15f47f4bddf
MD5 6005198b6ff1fef12b616b945436b96f
BLAKE2b-256 134ef615f7e9f402bb59c086c6e6c7b75e3190067dd4d22a93855e1f8bc6ea8b

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 41622bb0be03e9ea0e891c95afdff860866546466c2e0b089651ed6e9fc6d233
MD5 f5cd44a91cde6ee21a58e468fa1f95d4
BLAKE2b-256 cc9ff4915152b3d4a842a41111278d0ca46bcbf4164dcb198fe360cb3659f20a

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: popgetter-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 14.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for popgetter-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 64eac58b9db4ab1e4f4a57a4e07e31122a697c3ef59e39106446d717081a2428
MD5 75e5b98ae27c175fb64910548160dd7b
BLAKE2b-256 daa40914b08e00c6e757dcceda15686184a67b2610ca96d294d02dc9e9a4aed4

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db4ed8b714e4cec96a0bfa73e38eff61e9dcf971d6d34f0506ae60d27ccbef62
MD5 094c27f837420e45790772e3da354dbd
BLAKE2b-256 ceae2c796ebf11342e8cc57f2e6d3a0e1a0bbd2aba5cac5a9eb4dc46aed379a0

See more details on using hashes here.

File details

Details for the file popgetter-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for popgetter-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05224995db11c8acc26ef804312dca88e744c83fc94b98272c8343bccda1a756
MD5 5cefcede74d42d81f07c618a8ff1f4a7
BLAKE2b-256 2889e1e89393d0d7b10ac0a77f876a44f77dafd1ab38216964b902ba2d83ea1d

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