Skip to main content

A GPU Accelerated Cellular Automata Library

Project description

Pyaccell

A GPU Accelerated Cellular Automata Library. Allows you to create totalistic Cellular Automatas, by specifiying rules of the CA.

Installation

Recommended Python version: 3.10 and Requires: OpenGL Core profile supported GPU

pip install pyaccell

Building the project from source

git clone --recurse-submodules https://github.com/ahmedhus22/pyaccell.git
pip install .

To Build wheel:

pip wheel .

Pyaccell Documentation

Import the package as:

import pyaccell

or

import pyaccell as CA

you can now use >>>help(pyaccell) to get a brief overview of the package.

Automata Class

This class defines methods and attributes required to create and use cellular automatas.

Constructors:

CA.Automata(rule, states)
CA.Automata(rule, states, sim_width, sim_height)

where rule is a 1D list that defines Automatas transitions for all states and neighbours. states is the number of states in Automata. width and height defines size of automata.

To create a rule define a transition function:

def transition(state: int, neighbour: tuple):
    ...

state is current state and neighbour represents, neighbour count of each state. for example: neighbour[1] = count of neighbours having state 1.

Now use the transistion function to creat rule array:

rule = CA.create_rule(transition, states)

Alternatively, you can define a rule array yourself:

The Rows represent index, use get_index(neighbour: list, states: int) function. For 2 state CA index is just the count of neighbours having state 1.

Columns represent states, thus [state] [index] gives next state.

Class Attributes:

  • sim_width: int (default = 800)
  • sim_height: int (default = 600)

Sets the width and height of the framebuffer to handle simulation, it defines the number of cells.

  • input: list

It has to be of size sim_width * sim_height, otherwise the Automat runs with random inputs. It contains the initial state of automata as a list of ints. By default it runs with random input.

  • output: UIntVector

It is read only, it gives the output of cellular automata, if it is run for set number of iterations. To read output in python list use vec_to_list(output) function.

Class Methods:

A run() method is provied, It has 2 overloads.

  • run(): Automata runs indefinitely with given input and rules in a window.
  • run(iterations: int): Automata runs for set iterations and then halts. The Output is stored is output attribute of the class.

Useful Helper Functions:

  • get_index(neighbour: list, states: int) -> index: int
  • vec_to_list(output) -> list

Note : python 3.10 is required for this function.

  • create_rule(transition, states) -> list

References

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

pyaccell-1.0.0.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

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

pyaccell-1.0.0-pp310-pypy310_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

pyaccell-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (844.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyaccell-1.0.0-pp310-pypy310_pp73-macosx_10_14_x86_64.whl (845.9 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

pyaccell-1.0.0-pp39-pypy39_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

pyaccell-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (844.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyaccell-1.0.0-pp39-pypy39_pp73-macosx_10_14_x86_64.whl (845.9 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

pyaccell-1.0.0-pp38-pypy38_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

pyaccell-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (844.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyaccell-1.0.0-pp38-pypy38_pp73-macosx_10_14_x86_64.whl (845.7 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

pyaccell-1.0.0-cp312-abi3-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12+Windows x86-64

pyaccell-1.0.0-cp312-abi3-win32.whl (1.8 MB view details)

Uploaded CPython 3.12+Windows x86

pyaccell-1.0.0-cp312-abi3-macosx_11_0_arm64.whl (845.4 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

pyaccell-1.0.0-cp312-abi3-macosx_10_14_x86_64.whl (846.8 kB view details)

Uploaded CPython 3.12+macOS 10.14+ x86-64

pyaccell-1.0.0-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyaccell-1.0.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

pyaccell-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (847.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyaccell-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl (848.8 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pyaccell-1.0.0-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

pyaccell-1.0.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

pyaccell-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (847.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyaccell-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl (848.9 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

pyaccell-1.0.0-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

pyaccell-1.0.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

pyaccell-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (847.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyaccell-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl (849.1 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

pyaccell-1.0.0-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

pyaccell-1.0.0-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

pyaccell-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (847.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyaccell-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl (849.0 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

File details

Details for the file pyaccell-1.0.0.tar.gz.

File metadata

  • Download URL: pyaccell-1.0.0.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0.tar.gz
Algorithm Hash digest
SHA256 a5637d7205ba4404dad9d2917c11afa6381b2c4f52099414f415f7fbf798106c
MD5 21352864ca933ddcd9e7b2996a7728f1
BLAKE2b-256 8ef0913b2367523d6902a787855348871d83bba6b8790748d6f2cb0c937642d8

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ae15e7788476d0e0084ff1c473934d5be7cbf5533d9c0c7c6d7ea3f04091c4be
MD5 5ce3392673a1422af287b79b58c713a7
BLAKE2b-256 731afb346feec5e0d7e39f997c85c15fe9c75103c36b92d4ed12b4d0c172d43e

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 283a097412c3bf4032a76a9c23567bc4a43aec17701cbf47b85f4958b441e738
MD5 c8b859aec19b4d6d05e824e9c5941089
BLAKE2b-256 857d859f848b0540f8eb0cea7d0de6a81deec1c623497344daf4f31811aaa177

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp310-pypy310_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp310-pypy310_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8f2bacc09ef60009149380c2fcde02227d44d3aba9307d79a5c269de0e98df24
MD5 b91c7172e097ae41e9e8c126fa6c134f
BLAKE2b-256 5a0acd35137bbda8fd5f2a590005e95aa866ce963f328e7cb889607518dd09d8

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d92eebd4fdd3894266c065d0f707e569021fe5120f37316910fea5761dd6ac5c
MD5 673851e2047b8a216f06e46f97a08082
BLAKE2b-256 a8155a12d8058d6edac29d846b404294f00d7fdba384aba018135bd052223f03

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60e8d9b1fd9ac172138c1a3d61ff3bfc2f31ae53031e9177baf849d86340f4a2
MD5 7be30738bba4d15a7c428ed9092a9ba9
BLAKE2b-256 8223ebbdcacf446602711a41896a39d895efc653b88e5fcfa7c07937d6d6a5d5

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp39-pypy39_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp39-pypy39_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 68b8ddad56b41fafefffdd95650e5ac994e16ccb2e67182b21c419903de2cfe8
MD5 170211d2cef8288f27764f58552dee39
BLAKE2b-256 bc4b56e5c03293f877d2fa7a246776a5ccde5ced95cac488c78be6e86fd9b840

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f155d360e49946656663d20d91f13b15ba236c52011740ac07912350f2b787d5
MD5 eeb9e56f22e28bdcd883e7b185641fc0
BLAKE2b-256 f078ad8d9ca4593415ba3c2eb7329a789ac98f5e0406c9202407cb5e10bdb214

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7515860ba4becbb9c03f7a910f05b8d75e7098b667121d9909a2a5b3c4ca684e
MD5 6dda220e56a92bdd3101d0480bb86639
BLAKE2b-256 f15e0f47b412b24f4da8e8f35eb964efd81e7b419aa4c13f1ccb438f5ab887d2

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-pp38-pypy38_pp73-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-pp38-pypy38_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b4994935fe872e399be5f2e038b76f705eaad6fd731863bd85020001705f2fce
MD5 433d97eb4aa26da2b8df852655b1f9f3
BLAKE2b-256 f154c2f771919c4e0824efe6be66329eb5b3ffdecbb2ddefdd62fc64621f59cc

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 c54e8de432c438ac935109c5c4c687194631bc21cf5814e9c90de49beb310712
MD5 711656642c78d67b08b41558c1ed8c30
BLAKE2b-256 9fc202c9554d7a4182d112340eef0aff3353c4ba358f48720b95b6f446a66000

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp312-abi3-win32.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp312-abi3-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 e179914a6c50c7915bd1dac68ff5ebf9cb26698935812424aa330a7ecd088229
MD5 386e91c59c8dbab0929aa47be9b01616
BLAKE2b-256 add973eb8bcf623d03121327a62e68e0f776d5b96c147b369ba5bfbc4173ee15

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05f97712c38bc79c83272346becd5b481f493544780089f77ed19418d776a4ea
MD5 3c7e191deb0f3d4e2e3c2302a5777c56
BLAKE2b-256 84315671d87dce31ea87286a3a34241ef0133a3c880fbb6412e3041c8fedc475

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp312-abi3-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp312-abi3-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 384ba71993b2121d2a0301d1b9ceb2d5309881ec34f95a0b1d92af0b0b942948
MD5 09747ad26007e8f34219827825030e6a
BLAKE2b-256 6bfa3c0183d253fe21f4ce15a801e6890d4c69c5fbdaf92e6585d4fc7df8c300

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d1e712b2b6fad9ee06a2067cff29bbe41b33d67c075638d34c16c4b8e601d9d9
MD5 f709ccae8364a6119cfd642e9ac7c5ec
BLAKE2b-256 380fcce9801621888a7f747cf8a5810488b94c13a70c2d4b949682eedb3e2ed4

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd59c798b231296d2c927b8d8c43879357874a5d6bdcc25a11bd6d2e68101710
MD5 d919ca6677a4b3714483c7393fe43852
BLAKE2b-256 41b3c51064403eb4ca704b8fc3029c68027915ea631f5db1e7edc7456463eb7d

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 464757c42b28e76b5300c2d8708cb239a7916981f63e574214cdaa2a50f654eb
MD5 31980868bae85067b725d95c430b273f
BLAKE2b-256 5d5fa91a044e7f8f583b96ce38fcb4a0ff311f05c3faed28e9ac666645fcb24d

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6b923820bb78fbda407e61783fc3a78a5b4325fa57d280ba3b33543eecb8572e
MD5 d957c38bb07e3b1cc610ca8e110c7c7e
BLAKE2b-256 29466dd8f84c50cf788e0be0c745905cd0474f0a3aec3597fafda11deb4258b3

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c40ffec299374586341de68497e06a0a5db5a8b2fcf8c5a50d344df60443eaa
MD5 b2f626eb07408905b640ad7d1553be4c
BLAKE2b-256 118513846d108ab9bbd49e5b20f3a876d91a2dbf220a47238b8a9f5abc9e1157

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d128d5d744821653090285344ef418c1f5017c1c4cdcf073641ff8c062a9443
MD5 b077adfc1f3e1a77ee5dea820712c32a
BLAKE2b-256 a205acd36fffb3fdebb06a4daf8a7314b325e614cb5dad4503c36c05cd4627fe

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ea4318e7a6e4c5ae027be4e44c583e915878013ea14a25e23f407965be872f4
MD5 6fd3a8a476ec3de5f2e5ff5d90649344
BLAKE2b-256 7fb8088419b39ef77dddcd068894451173356ce9396414368254ae4397767372

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ec39a6f23f5f23c98564bfe8bd3493e4dc14bc73f7cb76c022396566035cd8ad
MD5 aa27fb9c585efe150f4c46082d80e4c0
BLAKE2b-256 baf2b0bb40dbaf0141199414b6398f756a2fcaba4219534f784a2ee606f08196

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d73691b5929028542b941788af7037d1b566e430b119d94314bc6515a9dfcfb0
MD5 0a4fe48862c81044b8f6ee52ca9c590f
BLAKE2b-256 0ec0f2a55942418baa9d6dfc8c1459eb15daf747b7cdf0789c0fcec2f4b22b65

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3961ce6f946cf6fc49efa1a11142c4f85db42b2334929e4c9eb32c481bfd94d3
MD5 4c521d9b94fe17bd615117631187456a
BLAKE2b-256 cabe433cc8a360a58a2a63dd4b307bc5e9bc235cd9f38e843c43d8a049451373

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8b2b6dec8141f70e80fba8ed58d9625ecdf0c5110c58f03b4df9bfb6d99949c
MD5 edf24c2d980e9ee28a3b0bc3c4daa5ac
BLAKE2b-256 dd20589079cd402bda8e1eb6b0c9ea55266392beeb75e3645971e43b0cff7ebf

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 69b994f40862fb8ed2954c538ddbd82d01c6da8483bf23adacb4ddc3368152ab
MD5 9b2fbb8d53216222e38acb3e2761cf76
BLAKE2b-256 b9999388e4804d5dde7354612c5b0996aa6c68e0f041e3835f06d0fd0ab08500

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88256a92e84b6df7817b5ec63faa22c57e80ff36959e8a3c47f6a403baf789dd
MD5 be971dbd7c7b5ce4c853fd33b4ca1fe3
BLAKE2b-256 f3c45c8bf464246dec18a531aae8f8d643b2c5567c211be2558be9d56fc12f1c

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyaccell-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.13

File hashes

Hashes for pyaccell-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7747389bb298b8e2044f0f9cde33d35e880f1d5617ebb1cba3998f30e45397da
MD5 0af37aa6d60b7a1dd7c384fcb9f3d53d
BLAKE2b-256 193d0031e0afbd75b3eacb4b13f715cbe86ab5bee70c6b6ea27e49a39ea8e162

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e584b35317f4f548c7bbe461561955c44d5dd173e20a215fa3a6e48f2addde1f
MD5 81768854f2d494755a64b060487b5015
BLAKE2b-256 0be776608bfa14402eb88656543bca72464c0a0661fb6b68fbfdbf33876b7804

See more details on using hashes here.

File details

Details for the file pyaccell-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pyaccell-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d5bc62fc57fa4f0817e5c513daf92d381fc6e5c1b73805542b70c6117323754e
MD5 00b2a1456c11e4eab09c79a53bad2ff3
BLAKE2b-256 b76dd64d96fea0c9fd443f8f245567938d76c9a2dd822b0e6566dc2af30b3238

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