Skip to main content

Python port of polygon clipping algorithm by F. Martinez et al.

Project description

martinez

In what follows

  • python is an alias for python3.5 or any later version (python3.6 and so on).

Installation

Install the latest pip & setuptools packages versions:

python -m pip install --upgrade pip setuptools

User

Download and install the latest stable version from PyPI repository:

python -m pip install --upgrade martinez

Developer

Download the latest version from GitHub repository

git clone https://github.com/lycantropos/martinez.git
cd martinez

Install dependencies:

python -m pip install --force-reinstall -r requirements.txt

Install:

python setup.py install

Usage

>>> from martinez.contour import Contour
>>> from martinez.point import Point
>>> from martinez.polygon import Polygon
>>> left_polygon = Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> right_polygon = Polygon([Contour([Point(1.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0)], [], True)])
>>> from martinez.boolean import OperationType, compute
>>> compute(left_polygon, right_polygon, OperationType.INTERSECTION)
Polygon([Contour([Point(1.0, 1.0), Point(2.0, 1.0), Point(2.0, 2.0), Point(1.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.UNION)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.DIFFERENCE)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True)])
>>> compute(left_polygon, right_polygon, OperationType.XOR)
Polygon([Contour([Point(0.0, 0.0), Point(2.0, 0.0), Point(2.0, 1.0), Point(1.0, 1.0), Point(1.0, 2.0), Point(0.0, 2.0)], [], True), Contour([Point(1.0, 2.0), Point(2.0, 2.0), Point(2.0, 1.0), Point(3.0, 1.0), Point(3.0, 3.0), Point(1.0, 3.0)], [], True)])

original C++ implementation can be invoked by importing from _martinez module instead.

Development

Bumping version

Preparation

Install bump2version.

Pre-release

Choose which version number category to bump following semver specification.

Test bumping version

bump2version --dry-run --verbose $CATEGORY

where $CATEGORY is the target version number category name, possible values are patch/minor/major.

Bump version

bump2version --verbose $CATEGORY

This will set version to major.minor.patch-alpha.

Release

Test bumping version

bump2version --dry-run --verbose release

Bump version

bump2version --verbose release

This will set version to major.minor.patch.

Running tests

Install dependencies:

python -m pip install --force-reinstall -r requirements-tests.txt

Plain

pytest

Inside Docker container:

docker-compose up

Bash script (e.g. can be used in Git hooks):

./run-tests.sh

PowerShell script (e.g. can be used in Git hooks):

.\run-tests.ps1

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

martinez-0.4.0.tar.gz (23.8 kB view details)

Uploaded Source

Built Distributions

martinez-0.4.0-cp38-cp38-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

martinez-0.4.0-cp38-cp38-win32.whl (139.3 kB view details)

Uploaded CPython 3.8 Windows x86

martinez-0.4.0-cp38-cp38-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

martinez-0.4.0-cp38-cp38-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

martinez-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

martinez-0.4.0-cp37-cp37m-win_amd64.whl (167.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

martinez-0.4.0-cp37-cp37m-win32.whl (141.7 kB view details)

Uploaded CPython 3.7m Windows x86

martinez-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

martinez-0.4.0-cp37-cp37m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

martinez-0.4.0-cp37-cp37m-macosx_10_7_intel.whl (476.3 kB view details)

Uploaded CPython 3.7m macOS 10.7+ intel

martinez-0.4.0-cp37-cp37m-macosx_10_6_intel.whl (494.3 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

martinez-0.4.0-cp36-cp36m-win_amd64.whl (167.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

martinez-0.4.0-cp36-cp36m-win32.whl (141.7 kB view details)

Uploaded CPython 3.6m Windows x86

martinez-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

martinez-0.4.0-cp36-cp36m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

martinez-0.4.0-cp36-cp36m-macosx_10_7_intel.whl (476.2 kB view details)

Uploaded CPython 3.6m macOS 10.7+ intel

martinez-0.4.0-cp36-cp36m-macosx_10_6_intel.whl (494.2 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

martinez-0.4.0-cp35-cp35m-win_amd64.whl (171.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

martinez-0.4.0-cp35-cp35m-win32.whl (138.6 kB view details)

Uploaded CPython 3.5m Windows x86

martinez-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

martinez-0.4.0-cp35-cp35m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

martinez-0.4.0-cp35-cp35m-macosx_10_7_intel.whl (476.2 kB view details)

Uploaded CPython 3.5m macOS 10.7+ intel

martinez-0.4.0-cp35-cp35m-macosx_10_6_intel.whl (494.2 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

File details

Details for the file martinez-0.4.0.tar.gz.

File metadata

  • Download URL: martinez-0.4.0.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.1

File hashes

Hashes for martinez-0.4.0.tar.gz
Algorithm Hash digest
SHA256 173324f3b47650e18fc155e16c699b19fe7d457514d0dbd499c15c8a11482f31
MD5 cf06d268516fa8ef6430fdab5357ee12
BLAKE2b-256 4793feeac8975e9cab4cf9704ffc1dc8c4067efd75176be70cee0d102ff54de9

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 165.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dc687cd931afa3ee7d4f1dd77fb66aee9f776f10a4421221b68807f3a37268bd
MD5 e7aa53c04d23a6463554c86ba40c1250
BLAKE2b-256 b6e43855ff2646483dc02633efe48329f671cde536693251ec5ff44874aed783

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: martinez-0.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 139.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b1807c92cc4e7bdb2b0e3e3b1f522856f6cb12647bd4d6f5b16fe3dbcff04ea4
MD5 47becbb0053751177513401397f928aa
BLAKE2b-256 944dd7c576d0d2f0a0f71c7c083082ad7f652e4419b317b2be830a631d50cadd

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 454eb5326aef61fb9c6acc7db51773eb7089b4d72ff46d92b5e65b592fdc9c29
MD5 645e28291c0ece1c8422841ad4d3b187
BLAKE2b-256 6ce56cdca218c646043356627d2445450e85f18327bb4ebbecabddb18043326a

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e8b01750723265a20cc1e8bd88b27f26041676a9f4893fca3fbd5c8ac9a11afb
MD5 a7c629ed56ed86bacf069ec47cadf6bc
BLAKE2b-256 5753fd95c856d2f5e6c3076a0a3ecb6615406f6662089f0afaa0be852e16fc2a

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 265.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for martinez-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be395b959c307aa947482cfdcd1fc4645e90bc62cf586fed94e5e6344441c8da
MD5 ccdf1c6556cc533615e1c433050438ae
BLAKE2b-256 3948df898c0625b5de11c3a4331f4caf61a254f3222afa9d0793b1359a393d0e

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 167.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.5

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 48273b7ff207f9bfb3800435ece271cb075995f2a075ca36d91e468c9d92c08c
MD5 c6f4e5f17a782c488f10ce184cb8f164
BLAKE2b-256 a39e6e9a132953c36b95e1aec681a2f35fd5222648d0a91bf562f6a410f67eaa

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 141.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.5

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8ea13d04749fcc114e7b7ba2d00d26bed0f5cee4566e8785e56d6b72899feea5
MD5 0ea885ed93477cee93bf57534bbd65b3
BLAKE2b-256 8c7292e42820527c9e8aee2e1b2ebaea6aed2174dd167280ac815fe112206004

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.1

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2e8ac58085256267d866af51b4661377f68d9e43a658d7ae2837cf4e3005eb56
MD5 bf24795ca1c77fd4e2f6b9852e6f628c
BLAKE2b-256 e82df6039818124e13ef8c3530759cd3ac88532872aa28112107cc993fef215d

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.1

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3eef510502d5932c555649c65de1ff5d9a87388fa9023e0e7ede16e93bf3224e
MD5 e48d6e7fbb49d19b8fd416e9a7251d53
BLAKE2b-256 4d07ce97e9c3bda097f9fd265385ca4537482699e2208dc33d80628b277a8c93

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-macosx_10_7_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 476.3 kB
  • Tags: CPython 3.7m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 dfbc7f711b81b43b68754e7a43bf87584cb87a41228c1044c9ee1ec142cdf080
MD5 b25427750ce57bdfb83a0540fb76e5f0
BLAKE2b-256 0c49113d993271edce2af0e1ff3ba132be9b50bd0647214cfaf29963b1e6f643

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 494.3 kB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.5

File hashes

Hashes for martinez-0.4.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a10c81ec68772c9f0b4b5ad79e168bff3fd30836ca1e84b64893df0e695e5d7a
MD5 098aeaeb6fb480defc7b0d1a73d379e7
BLAKE2b-256 e7b95e082a55a70e720ce08e439156d0d4856644a5ba646eaf9e5e6b4cbf3daf

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 167.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.6.8

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f54d6e0522422cf90c0d932179916e8c6031c09da0b9df3dc870f91feac04eb7
MD5 b84304eacadb01b503f407685011bb64
BLAKE2b-256 f2402cd4ea0cc807ba94b813d6ed9efaf3c9789719f93e2069ad6564c03f2173

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 141.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.6.8

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 901aef7db87fbee33868c523297237d50dba3c4bf13be38dab4a79090b4ef8cb
MD5 5055dff4bf4913ae00143be6b5cbbb2c
BLAKE2b-256 760b8d86ba551e53934d42f5af49f60baa58b9eb4b019bcd781d8f4fdcada3b0

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.6.7

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d301bda6c6a40cadce9e11b8ee2c48f35ce3bfb5f4aecc709c6342c893ebb0e1
MD5 84e4f5816cfb36ed851fae8b2559c655
BLAKE2b-256 0ea647740904a31d9ac714d5831f03cb9354e760255bd1634f36611d57b8adc2

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.6.7

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 546be91999bbe625b8cecd0e17583fee54d7bf75c0df9e6ea5ee1124c31a49dc
MD5 c2321a259f4011bc4dc6a7f27e2829bb
BLAKE2b-256 294ca1231563fea70bea5c8558c4817073d9309609445fd29543e975aa7e42e8

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-macosx_10_7_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 476.2 kB
  • Tags: CPython 3.6m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.10

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 82aa2da42c71466e896c96f144cca38e0f740f3f802d8caf8065e4a9cb50d5b6
MD5 8a2eeed8b1c857d75f9839e77b2a3080
BLAKE2b-256 e8512994a10d58f8117ce4641f6d40f80a301ca4bccb62276ef1dd95f15346bd

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 494.2 kB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.6.9

File hashes

Hashes for martinez-0.4.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 f194f402437356e4fc6b7202b0e8ef46069ff99d4763d887c529648e3fd581f0
MD5 97beea7a1905671ba640329f1372c868
BLAKE2b-256 73b38cc5c8a0d49e78e5a4f163009c9634c03f3d949f14079a388184b30ddd92

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 171.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.5.4

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 82e48cb08be41f12095fc2c5de5968853cb8beb2ada40f3d9ad6fb5d9a8cb43a
MD5 fa58321e0ca9e02f0ba40eb6730fa26d
BLAKE2b-256 dcfacf9ee57ae5931f1ee4190c10219c2de24ec8986d83f94af0f6d001e53e4e

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 138.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.5.4

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 7dee81cbc23dc55e00bd531e48bc8eb3934a6695166b5472c824cf8090d5de14
MD5 3b3865370a389be3abd7b522d5ad8ce0
BLAKE2b-256 68191dceb48a2cdb298aa04a9f59c9d2a1e5cea7b4badc0becafe62670ea6886

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.5.6

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eb4d9e92f9faf0c2b1bda1aa59350285b3a57f85f868e8e21d24daea7d337ff7
MD5 7b72627602cf8c4bf88dc62bf4fea0f4
BLAKE2b-256 83f20f901a873bd3c2605d01e19d088d002d35c8cf0adba89bbf5ed1e6a394c6

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.5.6

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2731d47c398180ea8e1587dc231f3f5644e95ebc4001730745a3adddf7e92367
MD5 b2f1eed16c72f5cb9f6d9e9e926cb00d
BLAKE2b-256 b1cce36df25e184d94f701714f3aed18be2a821267ffe8b6ce10d29b2cd84abe

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-macosx_10_7_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-macosx_10_7_intel.whl
  • Upload date:
  • Size: 476.2 kB
  • Tags: CPython 3.5m, macOS 10.7+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.9

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-macosx_10_7_intel.whl
Algorithm Hash digest
SHA256 e44b163ad7c2d1acd97b2c426038da56f82bef3952f590ca4a90b253ab646730
MD5 22a8f11848ce5f2cacdf1953c9aa2401
BLAKE2b-256 c8e4f9dfa6c0b3c8ea4bf50332755e0a4c1d99803f2205f9414b5418c6a0b8dc

See more details on using hashes here.

File details

Details for the file martinez-0.4.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: martinez-0.4.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 494.2 kB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.5.7

File hashes

Hashes for martinez-0.4.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b9b0724712e5f79dc7c5aad17dde60e5aee3222536ba51ee35a42691742e3f43
MD5 9423594954b70d8e7ca58e19eacec9fd
BLAKE2b-256 2f22fc0c6ff098238b561ee4ae65e0cfb22756677215ea4490e8b948237fbb08

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page