Skip to main content

Python wrapper for the Cambridge Electronic Design CFS library.

Project description

Python CFS

The Cambridge Electronic Design File System (CFS) is the file format used by the Signal Software Suite to record electrophysiological data, such as data from Transcranial Magnetic Stimulation experiments.

This is a Python wrapper for my other project, which reimplements some of the public API of CED's own C library to read CFS files.

Installation

Download the latest release of pythonCFS using pip:

pip install pythonCFS

If you have problems installing pythonCFS, file an issue.

Example Usage

This script loads a CFS file, my_cfs_file.cfs, and plots a single data section, from the first channel.

from CFS.CFSFile import CFSFile
from pathlib import Path
import matplotlib.pyplot as plt

def main():
    # Load a CFS file by creating an instance of the 'CFS' class.
    file = Path("./my_cfs_file.cfs")
    data = CFSFile(file)

    channel = 0
    data_section = 0

    # Channel data are stored as native python arrays.
    plt.plot(data.channel_data[channel][data_section])
    plt.show()

if __name__ == '__main__':
    main()

Future Goals

  • Document public interface.
  • Allow access to file/data section variables.
  • Fix bugs, improve usability of public API.
  • Implement support for data types other than INT2 and RL4 (will require additions to underlying C library).

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

pythoncfs-0.1.1.tar.gz (9.8 kB view details)

Uploaded Source

Built Distributions

pythoncfs-0.1.1-cp313-cp313-win_amd64.whl (105.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

pythoncfs-0.1.1-cp313-cp313-win32.whl (94.2 kB view details)

Uploaded CPython 3.13 Windows x86

pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (135.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (139.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pythoncfs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (137.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pythoncfs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (97.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pythoncfs-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl (101.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pythoncfs-0.1.1-cp312-cp312-win_amd64.whl (107.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pythoncfs-0.1.1-cp312-cp312-win32.whl (95.6 kB view details)

Uploaded CPython 3.12 Windows x86

pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (140.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (145.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pythoncfs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (142.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pythoncfs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (100.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pythoncfs-0.1.1-cp312-cp312-macosx_10_9_x86_64.whl (103.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pythoncfs-0.1.1-cp311-cp311-win_amd64.whl (109.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

pythoncfs-0.1.1-cp311-cp311-win32.whl (97.2 kB view details)

Uploaded CPython 3.11 Windows x86

pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (143.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (146.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pythoncfs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (144.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pythoncfs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (99.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pythoncfs-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (102.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pythoncfs-0.1.1-cp310-cp310-win_amd64.whl (108.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pythoncfs-0.1.1-cp310-cp310-win32.whl (96.5 kB view details)

Uploaded CPython 3.10 Windows x86

pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (141.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (145.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pythoncfs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (137.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (140.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pythoncfs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (98.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pythoncfs-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (101.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

File details

Details for the file pythoncfs-0.1.1.tar.gz.

File metadata

  • Download URL: pythoncfs-0.1.1.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pythoncfs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 c8426870eb4d4c3c41a9b60bcf8c136c50061d36f5c3c0c919b5e6b5d7a31673
MD5 553fea2efb998efc45eb5489ea8965f1
BLAKE2b-256 74542921c0d8bd288786aae803c1587c72e60e524740749d632caa5f194848b5

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 125f9dd4827e75411ef80d9aa219d2aba6d5d2ef2323e4999c46cb3d49602030
MD5 d0f1d9a32b517024046508ca85936e2e
BLAKE2b-256 99bea99b0d494faf469427740e8de50cb9b4ba5ffc139203f0ab2df5e479819a

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pythoncfs-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 94.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7dcc7d9df0d462570391291e7ea3756c4aec063e45499191f216cfae5ccc950
MD5 1e4ce7d69be3b4e28d84f09f96dc0d04
BLAKE2b-256 d8bd2359e3ea10eb4e3f4c1bdf36d47439b8ee3c7e03baeef164270c6101ac5a

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f36cbdc872e2c765d5fe323bd8fe6dd353f207bac355ce1dc14e42deef725ce1
MD5 930235f3dc3546b34718b37bb179ceba
BLAKE2b-256 1d37084afc6294428ba086eaff5b25f493745f549cf9a91eb405e3573327d597

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74abb4381f68b2fd0dc792e8f323d54faad8fd6fb74c75d0e41bbd52b3f71104
MD5 dbebb97444b78c3b2c509c5d8aad0769
BLAKE2b-256 304c15bd2c835091a1a9927ff3973f829abd183bec86ad357b14b9cb1e04662f

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d1ab9a0ff465ca36f07789af51d0caf529cfd307b710429a79a60ffed4805e
MD5 f3820cc9aeab61fb7f5f30bcbea6cbef
BLAKE2b-256 96bc657b09835dc69d211ec7fd9d4a3bc9dcc11e933b577f4f0f331e456e1938

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b1e5ed19928da4d2a7813515d753d39ca2ff0c7dd9e080ef93c3ed1f0497664
MD5 2158b2ffd82294e2230914382022acaa
BLAKE2b-256 085368c9840e99d7f1f23700efb1e7454e87d472036771b63848b74ede036094

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a43fd88f619491c6ba4977208f2c0476eaf52f732cfcfee96d543fed5959dba
MD5 21f50fcae384143222f4772780fd9ecd
BLAKE2b-256 0e855ba44dda6b5c2628ca705054a4e2ba9beac3d76c2cb3513a2272e17e39c3

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93366df2584df61f7c72e67513787aeb5ed56c27681997d5d4445298546981dd
MD5 ca88d3981d14cfa6e5f1465e67606a7b
BLAKE2b-256 7cd57120358d509997ee59afe00deda48ba1b672f882d866713af4e598f8ea78

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e0e1fe9cf7500bfdc3878b501eaf3998bae0bb90693cecaf3a77f635834e98b
MD5 3cc4f4c6f9cafffa84781927f9fbdd3d
BLAKE2b-256 ea20b3d8bafe4920b872073ff864d2d75160fbb5e9d5736eb668750f60d2ef66

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pythoncfs-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ff76b6119c484290c731017a58ea7bf6b1826c7516b1dfc58326a8ed90825f7c
MD5 ca1b468092f0509a38f648bd372522f0
BLAKE2b-256 7397e37e9a294a5b417d660c0f3dc36ebd4759d908dacebc1b2da906ab0e4914

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d921a1620dce2c83941306dc625d149aac04c4aac159c102b2768fe6b0191487
MD5 f6de5aa1170b9ce704ac226cacadc387
BLAKE2b-256 dea6a53802987939c892662927d17e6a9887def5ef0bbea528dd5821d9b9d57e

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b44377bf7bb92e8e981a3bd0e5be3b1fd629720a6dcc8a01db4e9e45454ba07
MD5 18cb15c975c84d78e8848c6a856ca693
BLAKE2b-256 d8200200e0a7702516cbcbf1fc66cb26f9098a1bf02c9228c93a231d6c0f4642

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03c52cc3f2316018f46c25fa0a0bcd755ff393350a9a928728778f004ee3be99
MD5 b5eaf4913a56e9424edde85482aa85f0
BLAKE2b-256 545e3d0e567fcd9a96651a260d81b8c2d89c213118140d47e6505f29886164f3

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 422c3cb6f2ae230ca9f98e3c5af533483dab80498d63db4767fe0f2206c91d60
MD5 76fce6c8cd2a13e19e6618b0c68c6e39
BLAKE2b-256 42e2da9f6779303ba439a58c8c10887644adb3bfc138b18d455b1755f7e6df3f

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b2b5910306c40e5198ecaf5d658a5381a292eed13fd98aaaf0499a97e8d5db
MD5 6f4418e0908a534ed38faeec9e757ee2
BLAKE2b-256 fa440072a0053d3699aa91ab481b021d5d2477500322737be4f7a58c45bdf5b6

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65058a49f75fdd33dfb9f31b21b50777a421fe503c59b938e8722b02332f0b8e
MD5 780d2d592b0e541340ce4d9c643c4996
BLAKE2b-256 1ad0caff8ab9c244de41f81d26775c89578966b4b6e3a14ce3c56b8869f9d416

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16fa6534607f35a224b4dbd2d6905991fbee944eaa003440c95afb32d615ebb6
MD5 30d4ddd8d602ee63ea3519ccd8bcdd51
BLAKE2b-256 73eb1a654c86779b09c13d97f34d9f93ad70718ec5bc4a5e281ceadbab8d09f4

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pythoncfs-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 229b1b75379d190de8df690411238220980d4b765f956e5975f0d8c72cc6f974
MD5 68eeb6c3a3160b2e8d998463074a3104
BLAKE2b-256 9f44ce48a476a9a62ee28e04139f191e4cbbaaa0ebb7aceef587f893facc448b

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a286f9c47b74bdcbac58fa993a2f0d975f8b492d3aeb651abe30611550a7b4eb
MD5 afedb9e3bf5781fd5bfd85eaa34c33fd
BLAKE2b-256 510e3ba56082ce7ab59463a774bc1000f6df17bb21c098c8f5f84e0f2d655add

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1770dff79b080b86929cb8e5f2dbd82b68f67336da00878e5f51ee97c0ae7c9
MD5 2a16733efe5a1016259a11da91447089
BLAKE2b-256 56cdb9da9518ba6a4449864cba60352b3de868fc210f5473822af3b2f0ef6fab

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2b1a6bc6d8f7edc14703f3fd607df0daea35e6263b5b359da60db4c179b79c1
MD5 a52ce67430f9757e9200f66830b39949
BLAKE2b-256 422e5e80e63d3951bfb05dc02637842efe1c92be8163c7f48f1a8376aca20d71

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d3b035502deb93bf603d5a6450ca110b55d9d4a105922ff99e0be2ece000e9b
MD5 8c87595858383af8696dd6af2a8e367a
BLAKE2b-256 971414ac2c35c837f6b09c455b30d051fe07ad0dade38f7c302d2980f6a9e737

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91116d0cbe4b5339be90370815a7e14cea0839ed2bd40396ab066f0650e5eccc
MD5 9e74c2f7ac20f240049b85db237466a6
BLAKE2b-256 f7e5cf39888dc27e2dcef0f7b11a69c0507ea7312db2df82890e8544d83c2c6a

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9855cc280c3f7c53137bed38d9da7b7320e47b1bc86565439a6d3aa4e2bebba3
MD5 4178f6a0f5227b082bfc77e5efef5fd4
BLAKE2b-256 3449cf142f27e254605ec37aad96fa00676eb0f2b29a641d2ad4e2760b1d04a0

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e65feb43f0b5d4bee0df99407b98bc3b405ee71bedca374f2e5448bf62c4ff95
MD5 f1c96947d0631211c9a34eb3891bab51
BLAKE2b-256 aa2046e7a61b56289fe4f0633fd4a1834acd3f95931d39132a91b4d3b55ec960

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pythoncfs-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4301c4c129bb2c4ec62538aca95c3d7f8d8190e1b69d5cf2c09a5a5453ea1d2b
MD5 6572c921f7f3adead922a26ae1632103
BLAKE2b-256 c756288d01362d201c692fa73fedf8cb15af0417aee846e1c5770e998cb03b69

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 609030f7cc94e877a7e6897e1c76a20f9a679df8aae46415e17c0436cdf8c4c6
MD5 5aeb968afbc4437db92cefa8e6f5b378
BLAKE2b-256 37001705e29b853954d84b70deabba6a6f31386c29b7c7915a2669fb30877c58

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fed60abb51eda08932930998015fb663ada6ad42954d83e7dab5c3bbf9636c9
MD5 6dda2be276be631009691ce370852950
BLAKE2b-256 49125368bb188bd20d798203a591b5d67cd42f60fb9952013229e46b755841a6

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b3a317c7b2d475de29087a06d8ef3ab539db8ea4417522597afbaaee65d29a1
MD5 fff6736c341c7ea42845da0060655b34
BLAKE2b-256 d952a786ac54e12827b829e641f1a84b999d68121a4e59601ac1951b3eaee21f

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7889f3ee94493a4e7687f0ae2e543bc50ac43903402751a0b5dfe0bac2f9bc94
MD5 ac6c32f8b886b661644c7894a0a8f22a
BLAKE2b-256 cc1fb59e20eb9b8f17dfe617047aa3b12cbcd670a9380b7333f1f2669a6b0fb9

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14d7e5458458ae06ae5c23d0d2337f9456894bfdd17102e74909c60a708eb231
MD5 b4684d2d34a0b3a7ef38472b0f69c55d
BLAKE2b-256 1817c582ddc819dd930a3248650e5d4132880721110f90d0069aae377259725b

See more details on using hashes here.

File details

Details for the file pythoncfs-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pythoncfs-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a1a20c032fea95740e287afd08881051f2a4232179c632347ac043684c8c02d
MD5 9475596cf8d74a9bb92e227422057789
BLAKE2b-256 76034bc684b785307c77a2c8da7a701d4ec99e036a4716d355aeb110e6576c62

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