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.5.1.tar.gz (24.3 kB view details)

Uploaded Source

Built Distributions

martinez-0.5.1-cp38-cp38-win_amd64.whl (157.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

martinez-0.5.1-cp38-cp38-win32.whl (138.1 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

martinez-0.5.1-cp38-cp38-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

martinez-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

martinez-0.5.1-cp37-cp37m-win_amd64.whl (157.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

martinez-0.5.1-cp37-cp37m-win32.whl (140.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

martinez-0.5.1-cp37-cp37m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

martinez-0.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (250.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

martinez-0.5.1-cp36-cp36m-win_amd64.whl (157.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

martinez-0.5.1-cp36-cp36m-win32.whl (139.9 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

martinez-0.5.1-cp36-cp36m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

martinez-0.5.1-cp36-cp36m-macosx_10_9_x86_64.whl (250.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

martinez-0.5.1-cp35-cp35m-win_amd64.whl (157.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

martinez-0.5.1-cp35-cp35m-win32.whl (140.0 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

martinez-0.5.1-cp35-cp35m-macosx_10_9_x86_64.whl (250.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: martinez-0.5.1.tar.gz
  • Upload date:
  • Size: 24.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for martinez-0.5.1.tar.gz
Algorithm Hash digest
SHA256 0889f84bbb85cff42c9d68155ff7b3b85de41eee375c8e3d8e21e7c5e88fa85d
MD5 58a8ee2c293a2462e64dbfd731b258d2
BLAKE2b-256 3d6e152a1bce9e29b1dfcc7c0ac5db86bed9bd61414f902ca76f3abca79f984a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 157.7 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for martinez-0.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f6b96d6b3288f0d21ed3df6665362b20483baa57b9266bebd8f728510bb13406
MD5 276fa91dc3c1abbbcf7eda2f62321158
BLAKE2b-256 94e390b9baaa7c5dd1347f0d9aed060ecb802b70c9da4ad4afab79b17eb249be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 138.1 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for martinez-0.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e097d2f57daacbe1c0346aa92c3a2dade7aa542acc86de603b5e49112fe7f22d
MD5 0f9e5a7072ed4ee94c596d0e9cea9c12
BLAKE2b-256 2ff8f3781356af7a3f9d3bf720a1854f593010023a2b277be0ff5aadd40a7374

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for martinez-0.5.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 002126286ac0fe1bdac266ab03c106895eea01b0dd10ad8e72d499f927930dcf
MD5 56e1ffe3311951008ebb887296f9a0d4
BLAKE2b-256 c2659b3f60320c30d28466c006a8b17878cda7d63665e6c33f09e41aed6bd7ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.1

File hashes

Hashes for martinez-0.5.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 252cd0cf57763efb9312ce5b586c82e3db247291d5a50cd9e0a87bacda49e19d
MD5 951070c64ec165323937c107c262547b
BLAKE2b-256 023d09ad5c9dece3fdd6c6446be37f7694493e3f97dac91011d45a13f0599e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 257.9 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for martinez-0.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8e78fc9cf4fc7a8d1c3efdccc8d9acdaacde3968783ba2aac63f27858ec5a5e
MD5 1c14e2377f0e9d0165be2374893e52ce
BLAKE2b-256 443eafbc846d7aa6a4a4695ec762ccd596d415a5c1e0f8d0cbe038e6d37f4ffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 157.5 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for martinez-0.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c221e3be8b9d5d6c6b904877e5e390bafb08a784fa831a492bd4eaa0d908086d
MD5 74dc6e2876a1c24f7a06d19ce3179acf
BLAKE2b-256 acc7bd15c47e4a07bb86becb6881d60f50d0196acd92604e57c00cbc4c0073f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 140.0 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for martinez-0.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9679d4c747c716a3bf3ac136de6bd8f06678d6456a3680bd043898e8fcb88a97
MD5 a734d1b6cd522805dfc471f24340c4cd
BLAKE2b-256 2a49a6bc1f0ec482733c914b9f8496d693995222cc8f29fb17b319821c2c2aff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.6

File hashes

Hashes for martinez-0.5.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1baae9354c898ebc8b3a9b0149042dcadabaa453dc704be520d0487fe787381a
MD5 1ade42b94565d5c8e83d10e728f1e45f
BLAKE2b-256 b29f7d5179565c9d920d0291e1179a9f7915c7e4d5372f39892ab72a5dc69581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.6

File hashes

Hashes for martinez-0.5.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c37e506561beed1d11957471241790276e6ae89e5920994c0a83f690d2bc6c5d
MD5 a7f52b3540fa9a9f5f1b33918841101e
BLAKE2b-256 f3b18bda73c9936a8988f692781c33b7e4e52ecc36163db77ca479e026a3703c

See more details on using hashes here.

File details

Details for the file martinez-0.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 250.4 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for martinez-0.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a4cd2896854121d3067d0e15846658fb4aea1eb6e9bead6ef01f67981db5b88
MD5 37a2ba00e24b113ba3791d062fdfa545
BLAKE2b-256 975f776980820e519043b8278a88acc4fb2e349cef919b44818aeb7f473e9ae2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 157.5 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.8

File hashes

Hashes for martinez-0.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c98e4f0717e3f62e943dae68bcde9ecfc97ca7a8e3aa8f3b3dea12904f9f7c91
MD5 2a59817497e02381f992e6e1a1a1bc1c
BLAKE2b-256 b414f6eeada090c22dc1265c51acd8e95e95b6279764f28e908877beb0025e33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 139.9 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.8

File hashes

Hashes for martinez-0.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a5dc96ecb838cfecd0972ce8b5c9d37151f9f680771d02ea03c87bcf0fe4e33a
MD5 74a005cd532c1141c4fada21f3ce7eee
BLAKE2b-256 07542f93103aa0f2bc39ee7a567d7f8f3bd6c1ce695960aca8f174a9e8dec9de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.10

File hashes

Hashes for martinez-0.5.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fda773aa9569c35d5967f9e01247cd20c97750187817b017e1cd10e975f4191a
MD5 2cf8a7784669c395ca548fb4e2175d7c
BLAKE2b-256 d2b0bf2528f7dd1e47dd15dbfe14882d1883b625ba7d2f9b6c32df5657644b37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.10

File hashes

Hashes for martinez-0.5.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 074fc872b4e19d4447d03f7066070c04c74813ad0862ecf03ef1454d8a404bec
MD5 baed28ac9daa2eee95a2f4d0aaf51f15
BLAKE2b-256 23c39b974b8e2d678774a60d34b74376926b56402cfab49ba8b3abd6dd8c25a7

See more details on using hashes here.

File details

Details for the file martinez-0.5.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 250.4 kB
  • 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/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.12

File hashes

Hashes for martinez-0.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5401b4d0bf502e96969c03c5de2c9802953ff52b40fe3bfcc4a3e16d099a0148
MD5 5b00713d22c2fe858223420922600129
BLAKE2b-256 1cfb42d75831d81501287a72e79297ac305ac342063e9006239829689d6aa5f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.4

File hashes

Hashes for martinez-0.5.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f46a262a2e2d7e2fcce2550a3435c6b4e6c71872632f0adcc614167942a8ee70
MD5 787b7d74b51b5a46c2841c32f765dfad
BLAKE2b-256 a0f328d26824c8fd24d29dbd249e88bbefa2e8f05716f654c8abd74e9c978685

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 140.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.4

File hashes

Hashes for martinez-0.5.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b260ec0255faf47e8e8f39fe8b62671e6802ef984d412ca13cd2f258132bc87b
MD5 886d0a10684e3efb66941e8fd89a4aa4
BLAKE2b-256 a87248b6469616c49ec465de1bedd6b7b9e813829a0027bb3abcbaa2aeccf12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-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.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.7

File hashes

Hashes for martinez-0.5.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3d45cd18f5c709d0c11d2d41dd8274e4bc92ed9e9627870cbcfb1f10e51c6c9
MD5 813a5200ac16290f3d3cdade331b18f0
BLAKE2b-256 f89d0bc3ce5b3eb5f2df0b1be326595ae656bc769f64c72cb48b8ebb691e00da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: martinez-0.5.1-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.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.7

File hashes

Hashes for martinez-0.5.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d113dedb93ba4aacd7bcb5aeb82abd03673d9a786a0a6f97d02608dd16e180bb
MD5 2306664c0a5f2af2986bcb1b2aa29056
BLAKE2b-256 b4b5a3f0c383482706408378fa93e0ed07064b89cc6cccf6d3c38f30c3d3317a

See more details on using hashes here.

File details

Details for the file martinez-0.5.1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: martinez-0.5.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 250.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.10

File hashes

Hashes for martinez-0.5.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7b79871bc901f47f94891eb4317af484e9fca298e4d547d5472a800f2b9bfa0
MD5 9a00bfc20e752ed091dca3ecc0afd342
BLAKE2b-256 10261e058f70997bf46d7a122d91312e97394d6202365dd4019e50aab7a17eef

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