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

Currently, pythonCFS is not available on PyPI. As an alternative, you can download wheels directly from the releases page. You will have to read the wheel's filename to determine the correct wheel for your system.

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
import matplotlib.pyplot as plt

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

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

Uploaded Source

Built Distributions

pythoncfs-0.1.0-cp313-cp313-win_amd64.whl (105.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

pythoncfs-0.1.0-cp313-cp313-win32.whl (94.1 kB view details)

Uploaded CPython 3.13 Windows x86

pythoncfs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (135.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (139.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pythoncfs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (96.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pythoncfs-0.1.0-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.0-cp312-cp312-win_amd64.whl (107.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pythoncfs-0.1.0-cp312-cp312-win32.whl (95.5 kB view details)

Uploaded CPython 3.12 Windows x86

pythoncfs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pythoncfs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (142.5 kB view details)

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

pythoncfs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (100.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pythoncfs-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl (103.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

pythoncfs-0.1.0-cp311-cp311-win32.whl (97.1 kB view details)

Uploaded CPython 3.11 Windows x86

pythoncfs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (143.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pythoncfs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pythoncfs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (144.3 kB view details)

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

pythoncfs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (99.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pythoncfs-0.1.0-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.0-cp310-cp310-win_amd64.whl (108.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pythoncfs-0.1.0-cp310-cp310-win32.whl (96.4 kB view details)

Uploaded CPython 3.10 Windows x86

pythoncfs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (141.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pythoncfs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (145.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pythoncfs-0.1.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (98.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pythoncfs-0.1.0-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.0.tar.gz.

File metadata

  • Download URL: pythoncfs-0.1.0.tar.gz
  • Upload date:
  • Size: 9.7 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.0.tar.gz
Algorithm Hash digest
SHA256 274508313f3cdc1b2766438006869e2c05f76ba6a589f7635da7b9c4762fc642
MD5 b23aea20fbaf736b289367efc0318145
BLAKE2b-256 c6198b3192a2797c2ad37e1115576fe40118819fcbaa61462fb8118742b2cb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e3d777abf5a4733e22a95749926d9711c474bd2e56908afbb6f553b9b31ecb9
MD5 a620141b913ef39999d024e5e05e50d6
BLAKE2b-256 c130b5044defa462b688967d89aa44bf7d975e3ee9a054015ac593e893bdb550

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 94.1 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c0b711de73276847e9b00ab45daad254fd329e241ee15433d5ca0274970e8e96
MD5 817dcc12d09878a34a39de53fda439e2
BLAKE2b-256 d5022844e3e0a16effb8acb82b3d2af5338891c374e4905c23c970d3045f194f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83db99bd1a441d6cb97d029b37e8f2b0576e35e82e10d6342d1ed5ae65402632
MD5 dec2202297e9f108d5008bd021af4bd6
BLAKE2b-256 2d9a3bd4420ba8970d067fc67a67d3c3dc2cf4c333fb9170ca22d43c144523cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c23f6ed972d3fb5a2b6e29ea3937e6f6672f97546e7843d2eebe5c40d78e2bd6
MD5 ab553fa1cf677914a18c19b0024a9630
BLAKE2b-256 b8c90191fc231e71f6b78fbee3a206c1207177a7bf537aa8883f0a9040570a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 decc7ee1a8b4f5cc4cc4aea3e9e311a28dbba1bd49f60a4835c60095e2d8e43b
MD5 0d5d74716a88b1c25d88e3e8fea96d67
BLAKE2b-256 e8bc9f3183c40190a42a0a038bf5690734f27e73ea34e0a95565f88d9b5c0f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67a083f153a0be8efdcfe6bb9fcee8b3ee9c62deb26e0c3500188182e0f3f438
MD5 ecc91454095111980fb590f2037eb5be
BLAKE2b-256 6546fd1f822b171b986242d684ce68cf205d7aef2c4b6fd4f4c6d308baa9f102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d23c29787174c9e9ddcd9ec87d657bfdd62a4a93c732a3645be7bf2ced17a2b2
MD5 0e654f88018664a9d107070bfc9d91f8
BLAKE2b-256 68cdce00ab9dd2cb7fc597aa79c1f61fade0fcdad6c2f1cfc328bbb6029e61cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49ea408af375ad39f39e5528a11e36d8b4322eb2fe347220d46ad5e064c4246b
MD5 dfe69268d41930aee16748674a222b07
BLAKE2b-256 f0b187ea4f43b66e1556a7c24f03d9a7418a94f392e4faf822c1707073068800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d057cd2b9ea52247002c4d3066be2cc7500e8975e1d5f8ed4e87a014a2b02a6
MD5 fae8152609d67581334986a36d998dab
BLAKE2b-256 8319488ece509cf1a6bccde4a9f5bba86728f2e779b771876582050a5ae16a34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 95.5 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5d26efb8c156ed4f9eb0351ce37efad606817f9be1d75b1894c6d44103ee9a61
MD5 99bf6cea73f377c817852a4b5be0c594
BLAKE2b-256 88aae289105ef28ed15c3719183f13e377a33e51312598e2b7bf9131d54cb6d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 277c1629406e90c174da84018ba4ef0a8ce368e46c83950c161cd70d15ddf8e8
MD5 5dc042cc5824f1fb7341a63d45fc9e7d
BLAKE2b-256 dccd0301687533e97e47c96b906ebdad4a6355e6bc3c68ad46b3e0d81faace10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03dfc25648e24dd240d098fdfdfa592823d4c75b1728f4e1bdb3f0e33bacfc05
MD5 6f21fc9304f1cfdfa61ab80e3b9c221e
BLAKE2b-256 d459970fc0e349f149ee20401bea0015594cc76c91f031ca5a4be31276d91816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80f19fc55aa8212297b635ff0a1e9e17531fe188e30675ce13955b555f1cb65f
MD5 4c83af9a06b2f77403d5c006b0d4f1ba
BLAKE2b-256 59762e80f2a3578ab94da6aa005af0cca3f8506b5eb02d0782502d6b539e94db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 341fb1725b82bae76f6819badaaa5e332c349058097d399df371f9c21d32168b
MD5 60f9fe2ffb7c34d9661dac6d86f71bc1
BLAKE2b-256 7dccd5e91863e143a40462290a80a5e73edfc384ef8124b760b95f6959399a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e4fccc887e172b52326a8a6156522f9d6356a7348c35dd3e0f496a473704309
MD5 c18b391c5d590ea0a5647ae85241ba4d
BLAKE2b-256 9933c52c895a6762f5f4a7e9272d152cd4187ab692b3683498c5e36dda9aef58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bcfd5f14838eb769c66595d90346b49008d0ff1038af098929b614544f37fe16
MD5 4dbda05a3700ff1fd7f70e4e434817f4
BLAKE2b-256 11d4ba5dba48ed2eb6b9bb9fd0c79247e47ad5615224369a8d143001b262ed17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3427e8e35cf798976bab530dd020d3ec0b4568583ac2834b42ad2e882fd6844a
MD5 36399e28efdd44a280cd73ef9795dfe6
BLAKE2b-256 37510cd50bdfe7870832a5002db8e666ef3ec95d46f55345b82d300daa33d381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 97.1 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50358e8baaa4849d0d90576e12dcd0de9dcd9340f210ef796503b5ea642a3d44
MD5 7128fa05183ed2d9357030961425d06c
BLAKE2b-256 1519a2421e1521fd257100440ce67048bac64d92a9dca0ab27cccecd34ee6b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fc2a56e516aa363288d03e981cf0076b5d8ebc26c1e7816fdc0ed97c2776204
MD5 b78847ab08da2a9385bb828559f30cbb
BLAKE2b-256 2953bfffd3f8268c242c38164c343d3b2d977d8a27512fbddb75539614c6c27c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b017c2b3b0b116e3e4dd4ae074d052d7eb31cbd5d949162be51ac64af931c76b
MD5 32717481da795d3eea48e2b989056168
BLAKE2b-256 e73ceef1bb043bc9deeaea64d60ab380578dee4410b02a3f6286496b01c04f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c438f485971d8f9addb7304ce108766554e668193fd2fc0d7cbe84ba5db7fb95
MD5 51a32bfdb7c9a9c9d319b766fff5149b
BLAKE2b-256 0cdb041386a65d4c9089aaffae867eca654f0a10fdfca2565ed71a3cccd2abfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de69b3dcac8d8901f23ea4bea1e5b4f05d0aa49254b28e99407cc071b13e4255
MD5 d52f0e588ce8f7ac2189d5f6ecf3985b
BLAKE2b-256 7c593c46c76ffca060a85270ed9fd9d37f8ee4e18b81f648fca44b048cd55a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fae2b4fa311081eb02ba211a898c588dea50218689ce3178be63b399988d786c
MD5 5a9e19f5bbb1292db595dc71febf46f5
BLAKE2b-256 629d5da1819dc0a2378d2fe9a4e85ce545aa29e2a7b0e5ed85497e2658d4fce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfb09c943d30fa9659e880c86a0f8cf5cc5db7f77f4d1ba7d91e064781259866
MD5 33603fbc39db88b605e438163e84fd5c
BLAKE2b-256 7e0f9c87c9dc59a837f9994015f10081d28f5e700b9c5e0dbb02ba14bc894fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8d10ff0a31338c1beb0a617aea323911e503d0c356797a23efcca23c5fd27c6b
MD5 aa66748af698a814a4ae9fdb6a320a8a
BLAKE2b-256 4291166c1b2446c9163358be69b14fdec1a75211b218fcd5eabce8e55dde9438

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 96.4 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9c3c88fa9750f3f97fef270269207c642a88b39070b61dd12cb0e8cf50fa97da
MD5 e1a3eb1fcb6294825656a272cd1e8078
BLAKE2b-256 da9af239cd97362fb914f9515bc8d141bf42f8c073cbaa995ba5865b39fb72cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8799b71066e98857cbedd6e1ad12d1fcf6a36e9198655b2b9e83ec4b26a4af80
MD5 d9e4456a628f1673941f7cb4802645a1
BLAKE2b-256 281205c040e35306b25e9f3d24b0b1b14c1e8898cc2b410ebb8cbc957e7ec473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a1b1ef01db5a16766556d91bd5a3aef5dbfa74cf34073cc29f74c5ce91715dc
MD5 e0a3895f0e87f504e8a120ec67885393
BLAKE2b-256 3f280712c20bfeeec9d69428459f88420574304a2bd9abeaa553e37503361fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd669c3332dc0c40fb2498a0ca43bc6ae9616f005714515d25754679a2ab672
MD5 bac8c46113be1b88cad480ee8a151a43
BLAKE2b-256 cf04edc3dec46cdff7ead19e0d3116a4b629f612c79701ffeeff350610296b66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 003bccce8fbd33ae0ffab2511220c7a33fc218070b0a342ad9d6c7bacd299fac
MD5 240b5a8c3c9277787117e69caddaa56a
BLAKE2b-256 c0ac074b1397eb2b5c58265460fe6c27beac4c1433bd234793b1240385cd7012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b90fd6584cdb5a766146649d20e42b6f377fe13759e6cb921f285978037c79f
MD5 26f311c2bf9965d32347035357f00070
BLAKE2b-256 bd217e0801c9381dc6787053288e43c1bfba7527fa2ca5989598ba92abf6dbe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b26c92d74f9662c1a446f48472bd687659d7f47e7ce3f9bbd1b636d31279838
MD5 54105140cf4a0877e4377c3ef5eb9cf1
BLAKE2b-256 a2fa50c181e8f435a4532cd108169d38f40942270dbfe3d67d0346c1aa1c144f

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