Skip to main content

Memory efficient Python objects

Project description

https://github.com/nucleic/atom/workflows/Continuous%20Integration/badge.svg https://github.com/nucleic/atom/workflows/Documentation%20building/badge.svg https://codecov.io/gh/nucleic/atom/branch/master/graph/badge.svg Documentation Status

Atom is a framework for creating memory efficient Python objects with enhanced features such as dynamic initialization, validation, and change notification for object attributes. It provides the default model binding behaviour for the Enaml UI framework.

Version 0.4.3 will be the last version to support Python 2. Moving forward support will be limited to Python 3.5+.

Illustrative Example:

from atom.api import Atom, Unicode, Range, Bool, observe


class Person(Atom):
    """ A simple class representing a person object.

    """
    last_name = Str()

    first_name = Str()

    age = Range(low=0)

    debug = Bool(False)

    @observe('age')
    def debug_print(self, change):
        """ Prints out a debug message whenever the person's age changes.

        """
        if self.debug:
            templ = "{first} {last} is {age} years old."
            s = templ.format(
                first=self.first_name, last=self.last_name, age=self.age,
            )
            print(s)

    def _default_first_name(self):
        return 'John'


john = Person(last_name='Doe', age=42)
john.debug = True
john.age = 43  # prints message
john.age = 'forty three'   # raises TypeError

For version information, see the Revision History.

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

atom-0.6.0rc1.tar.gz (118.0 kB view details)

Uploaded Source

Built Distributions

atom-0.6.0rc1-cp39-cp39-win_amd64.whl (111.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

atom-0.6.0rc1-cp39-cp39-win32.whl (97.0 kB view details)

Uploaded CPython 3.9 Windows x86

atom-0.6.0rc1-cp39-cp39-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

atom-0.6.0rc1-cp39-cp39-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

atom-0.6.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (127.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

atom-0.6.0rc1-cp38-cp38-win_amd64.whl (112.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

atom-0.6.0rc1-cp38-cp38-win32.whl (97.1 kB view details)

Uploaded CPython 3.8 Windows x86

atom-0.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

atom-0.6.0rc1-cp38-cp38-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

atom-0.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (127.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

atom-0.6.0rc1-cp37-cp37m-win_amd64.whl (111.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

atom-0.6.0rc1-cp37-cp37m-win32.whl (101.2 kB view details)

Uploaded CPython 3.7m Windows x86

atom-0.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl (1.5 MB view details)

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

atom-0.6.0rc1-cp37-cp37m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

atom-0.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (124.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

atom-0.6.0rc1-cp36-cp36m-win_amd64.whl (111.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

atom-0.6.0rc1-cp36-cp36m-win32.whl (101.2 kB view details)

Uploaded CPython 3.6m Windows x86

atom-0.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl (1.5 MB view details)

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

atom-0.6.0rc1-cp36-cp36m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

atom-0.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (124.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file atom-0.6.0rc1.tar.gz.

File metadata

  • Download URL: atom-0.6.0rc1.tar.gz
  • Upload date:
  • Size: 118.0 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.6

File hashes

Hashes for atom-0.6.0rc1.tar.gz
Algorithm Hash digest
SHA256 d4606d0226cad1d1f6b4732738d44751fad7bdc60fe646a20a14236ece4cecb5
MD5 dda258d35c52fd747c8df860e25a1fad
BLAKE2b-256 08518c3380273aa06f460372462f4e6a70043fdf0ffb4e387d1c95225daba108

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 111.8 kB
  • Tags: CPython 3.9, 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 atom-0.6.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d0caf16439a18878cab679f3f1b4669fd81bb49d8b56e66fb18fbc332b9eeff
MD5 8c33d5cfd5b99ff2a62280eee8cc4e30
BLAKE2b-256 27f31c9107d0a527c571657148b96e103cb010c2f47a30efa7485e804f0e17e7

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 97.0 kB
  • Tags: CPython 3.9, 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 atom-0.6.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 75457cb000ddc5285642c63645e24b6041065d5a3b7a0eb100f9e99c76396974
MD5 f1d842bf42c7fb00850b4bf6d056c0d9
BLAKE2b-256 d004eab8558084e130731631998e5bd55fff4bf26240eacc10eaa7402a7b981a

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, 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.6

File hashes

Hashes for atom-0.6.0rc1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c87559295320f8df781405cefd8324b4a2b3920a649fb9aad4a6e229b466ff7d
MD5 716edcd617381102e721af4424e31606
BLAKE2b-256 d2d813a10c9326d3ad0bf93888596995ac5124737e58758ff903a695749e95fc

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, 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.6

File hashes

Hashes for atom-0.6.0rc1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fc46a4ad4c2ad48cba5d76d815a8068a2d50da74e03eccd09db0d3baf87ceec6
MD5 7ad9ac40028d2c30d19cb627f668f820
BLAKE2b-256 09ee6a37103d68278fb0692587eee3ed9c92df396b3c0f3bc90d75879cfc2151

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.5 kB
  • 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.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for atom-0.6.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 251431027c943efe64465c9b750c4d4e2189e96969a2bedd7033ec910177b8ed
MD5 5572bb24e7724f3bef4836117cc7c405
BLAKE2b-256 45f22d4f3c426ad386923ebb33fae14dc1c4766a18490f675e7e26dfe351cbfc

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 112.1 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 atom-0.6.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9d6326ac54d61784f6cef01f626fa05e54de17026363602bf17a3ca4ba5879a5
MD5 d486b3c88c573226bd18cf7de8d927a4
BLAKE2b-256 7f9bd1be1988278b3f695d9bb1fb296decc31bab4d87ce169ea3602c9567ec51

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp38-cp38-win32.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 97.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 atom-0.6.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 feb3b89ce1c1967f3b90cc00b17e8a292152d99a9efefb764afe838f6174ac62
MD5 0c2b64b1ea9e7d743fc9c27235ec5f2f
BLAKE2b-256 45904019ab8f7e838bb096470253e0a03cfbed4ae01a823d45505b653eefbde5

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.6

File hashes

Hashes for atom-0.6.0rc1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73aad5169661264605a89ebb962abec59fc79f9ca4f7b7d397c4ae8d94226adf
MD5 695fd61443572de8855599a2c1b8baee
BLAKE2b-256 5bdb1f0c21204a34cd7247ecd3d10321f4c195c2bb3b3d5ae363f9e748ae2142

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 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.6

File hashes

Hashes for atom-0.6.0rc1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb700dd95f6f065d2c30176f4e8b1b0dc5d6ca4c8a49e27799bfbc36f935ed8d
MD5 ddbb549ef057be9ee3a13e7ae4b8b082
BLAKE2b-256 be770f8846dba29573b95b66fb73fb69bb6f9ba87924e1d93f200f6b246a8e0a

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 127.4 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 atom-0.6.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5936bd375d94e4208d97807b5e28df88b43b2b19e4c702ec2b14da9b4cb37957
MD5 2e16336bb950ba178a7fe14121b3b01e
BLAKE2b-256 3df5fef120bced1671a2bc67e749b3b479a40b49066fad41bf90020721a20c56

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 111.4 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 762cf9b451b132bc0925054bec2fd3cb67dfeff775db047a9a76b3f4c19f4e86
MD5 485a6ab452cf5e73dd7df0615081509e
BLAKE2b-256 4c20d74539de37f1ec5ed432e4ca99c60a51ece4174d80b702b592aa01a59556

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 101.2 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 896f8da6abbfbe8c92df913ab7dda552602aedea44413188b5bb0edecd9d31da
MD5 b365ab41f2e0debee1ec02e29a40a2d3
BLAKE2b-256 abc475086c1f72c8d0a1d5463b90dd2a9bc9e7b3da7be74c2cc9efafdef34185

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f15418c5a2f0c4b285ac2a8004b036bac2d29293c2c0a8afc0dd935e8665a93e
MD5 07a87de736f325069f737a5979ffdd5c
BLAKE2b-256 af9fc61dfe9d7ae239db0e2936fc6dfdb020678d206209a7747b7850c92f72bb

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c1ce7d5964eb7ccee7cbadec2cc85367b54bb2a66f2a3391c7c916e7bad03936
MD5 b1105f7a91cbeec6cf71f496f99f4bcc
BLAKE2b-256 c8c643a6e44d40963611199038ea89e19cc47cf0b44c95d1eb8ed28f22456aba

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 124.3 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0888e1a857ca8e560433c51b3669d3a4a31e21314cc1a702798e2b3759956a88
MD5 0fbe4cc62225c4ca1de280699772fd3a
BLAKE2b-256 21cccee7d043d2f0304f0dbe0bf3fadeef7872651d7879386f1f8058799fcbcc

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 111.4 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 990c2bd2eed7c82cd6c878a9992b0cd74befdcdc48e38c38c79a9108d816a659
MD5 13f11fecff9be04aed27ddf20c7647c7
BLAKE2b-256 9e5ab081fb2c467e828b8a6ba91c923170ec8134ca7ee8b2a193728a6407f789

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 101.2 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6624b7d530b3e5d2f5a0c7b2ea06a918711124e1bb1f37b9811737b8dfdc1bd5
MD5 adeeab1643c25df4ab1669856c22e383
BLAKE2b-256 67ae5089207fb4c28b7ca131c84c764733907009625521b0894fe0b1b578e9b4

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.5 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09fbf58851becb647dc1bdc26352f76d6dcc0e4a82738af91673eecff56bc6e6
MD5 4abe8e7178e0ed308d5a608bee8b9a68
BLAKE2b-256 ab9393e4939145f23dd8fa1c189428394c9462911edf6e25c974cb26ac02fbbc

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1c121f75c4c7428471acd926b196d02ddb22a77ec7cf3dc90db11731add9f3f8
MD5 b19dde618fc79f179bbcbff733ab6788
BLAKE2b-256 506b4c5923f8160fb0452f29ee225aca73a1ea8f9e9133793597988c8dec9183

See more details on using hashes here.

Provenance

File details

Details for the file atom-0.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: atom-0.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 124.2 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.8.6

File hashes

Hashes for atom-0.6.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64bc013364e91df801240c5916ce26b5c9d0faa8aea47a397731d636702e05ec
MD5 fc117b0815994d7a4cf0fb28e3ddb069
BLAKE2b-256 0e83a342dadaba2efac4a0a9bb3079090edba5806648009ed3fb939d536f12c1

See more details on using hashes here.

Provenance

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