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

Uploaded Source

Built Distributions

pythoncfs-0.1.2-cp313-cp313-win_amd64.whl (105.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

pythoncfs-0.1.2-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.2-cp313-cp313-musllinux_1_2_i686.whl (139.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pythoncfs-0.1.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (97.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pythoncfs-0.1.2-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.2-cp312-cp312-win_amd64.whl (107.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pythoncfs-0.1.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (145.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pythoncfs-0.1.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (100.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pythoncfs-0.1.2-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.2-cp311-cp311-win_amd64.whl (109.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pythoncfs-0.1.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (146.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pythoncfs-0.1.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (99.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pythoncfs-0.1.2-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.2-cp310-cp310-win_amd64.whl (108.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pythoncfs-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (145.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

pythoncfs-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: pythoncfs-0.1.2.tar.gz
  • Upload date:
  • Size: 20.3 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.2.tar.gz
Algorithm Hash digest
SHA256 eb14ad30cc0e8888600566c83e1f5cbfd0201aac087030c9d700aae46eaa5954
MD5 be2ca260cd0fb71bb7ddce7b58328791
BLAKE2b-256 06c5e30df2cb77603fa41c97052c1762495dfab729c17cc1238cb7868ee11e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe67086ae99a73c8686d3ed5ce453b788d2ec23611062d3015fa47b8e6ca6f34
MD5 abf49f675f35a74b3a18f42440d703e9
BLAKE2b-256 2649f1ecb506d7f9183fe190680a70928d4110c2050db206ba0d94469d384443

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 483b8933fe4eedebff94433f1da55d2ce5bb498a36055159967b0d1ff79f9be2
MD5 6fb464fb4d013b987930de6edd84102d
BLAKE2b-256 8db7827deb550c737eab66c092d96df5e6f7da210f68c2a46efdb080b66dc62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1f9300d619a2ed84cd8c84000ea7a4ba96461b9bdc628ad8a9089a82cc3721
MD5 d9dd23b1c4f11c58ed9aae8e3a831b0c
BLAKE2b-256 4eb37f1e0c0f798afd05f61b704731550b9584a8fd8d82ca323bff18f7ef7831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15f867f247fdce37d2164a1130abe72b5c955dda64549a884f6b33315625505b
MD5 96017ed21fe4623db699ae8971a0954a
BLAKE2b-256 9d8934b9877f1e978cefac7bd317c6c1180c9ea67bcff97b0733fad87b7ff5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e8b819a5446593e8f54480971fcddf3883cdb4604604de6ac424c2c646b5065
MD5 59b4f28926210ee1037d1a76a9b03344
BLAKE2b-256 b7b3030f8d3178c7a53ba7717e58bc6b2ea4f1f79f3eb99a433fd6486dd8b362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e6545961a35fd140eeee2a12277608827338d890f07c7c9ea5900da54a3e087
MD5 833a19b9477386b7b10c61327d9095ce
BLAKE2b-256 5e22818ccb3a59f547f11be0e12a589cb9110f9798c04c06553740bcd25aaa19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ff16df89d47000e8c238c26cbb9ebafddc02e82b96bf327fdf2b15e2e5b85ec
MD5 56c3bf468750c62b1cbbeda96d4676b0
BLAKE2b-256 40f7a1c56dc3cc60f4c369023d0c551ff946579a9de55962b943a05d40593625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a6d7816593d16373a2dd5b5012a9db812c49e88d7bc70e595efb06789ef6f673
MD5 80d672522df3a8218b9e857080a99889
BLAKE2b-256 a4c0e217ffea0a402c469eafe2e5af2ddd532cf1b6e9da6e44435ad8d81fc0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3b6e2a460e251ec254533f4586b2523c24474f275f7b3dfd303841973cb6d9c
MD5 f40cd013fc9c3e027ac25447602cd9e4
BLAKE2b-256 8dd4a0905e33260a037b94f6a27c83ce264800decc3e9d9a3e54e29bb0fcfc65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 53af0b4d9532d259270b2b55a1370a9022fc9f5e6fe658b66c5d01c03ebed574
MD5 9fd8b051457a5abf5499dec16066c4ca
BLAKE2b-256 0a6a885e29677e955bd34072b4e7e4cd893191adc865a517abca3327924a46e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c83cd9427c23695fac8a2e25700f79e0fe5f41c3b4704c968fa048e7a05b511d
MD5 3b2a5436e09c59844f16d8fc4dcd2c7f
BLAKE2b-256 a37085b26cd2f06eaec0c4dfea483274cebffcf308953ffb6f75502c5e1e4e38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16c776c1f5775fd9cf03a6335590de0ca29c31b9d9dd4f926a765ac0e300d1b0
MD5 d886677b2ef1459a13e1d6aa303c887a
BLAKE2b-256 1325ec3f09cdb372da7d0377cea7e2acecdebbabe61e310f7fba4f9569b82c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2f7af8645969888a3b196e65854fea4d1e8908f3450d71e59f1af029024115b
MD5 0d33e93cf57e3b8f547a57da06ecd5c4
BLAKE2b-256 7d6d835782c71302dbe64784bf13bdeb6f78215bfb369345b972be817e59c562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29585a7f9d742b24135833a71b7fd530ece9c181ba2ebd80dab581ae9bf55a5b
MD5 be966687680a7a4b705e0407d8c57204
BLAKE2b-256 a6acf43e2c8eef3702128129a359dc787264d5bf8d1b68ca3ff92a0bd42c9bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d499592e26fbfd01c30fc74f6e3e3a6e7a71bdf23bc01f854681b40431b2107
MD5 77e4c658abe5fe3cf7900eb904633f4c
BLAKE2b-256 df0d207e2ff00ad032a7b88994fefd645735fd3ce672ad0fa8e301d5eecc0888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d5e6891d75192b74c30d18e6b48d8a95ef3bfc61949ed5dc10f1d001e29cb74
MD5 e49d66c2e5bcaca5bcce5248f533da14
BLAKE2b-256 3a416cd3e704f359771dfdb4212f0d088f1bfb1e589354a0129bdca040fa3fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f8eaaa54f364d6be942c312a6a35a55a68443e62e0c5884360cf3325a1ab551
MD5 80f7655e4b2242805805d571c61aafcc
BLAKE2b-256 6dbc07c63ecdb5a2dfd3910528f60ff73f6e21208ba48f03fb780c187991df1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bf748c3835f5101ccc29aaf9f1d9db1b25554670f848eb62b528bdc53bdf7f83
MD5 41204b5945d84f3690d9d45ab25acf9c
BLAKE2b-256 6f0fe83f6feb348bd7498cc48f169aaee109bafa478affc3f6d0534fcbdd5199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88a41c23f533420a3fd4ed5033a93c04fd0b6a5ed6e78e9afb1f5c21a1a06062
MD5 eadca6b0479ffac6fd4ca2946acd5b0d
BLAKE2b-256 e8a39222fdca9f289c14b42f98e577d352bf83d6715d7c759395599e746154fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 587eeed10a4036b369b347f174ab6af0985bbe5190103b88a3e11629575eba0d
MD5 b5e846a03c84694ab4b8d7c0fdc5c58f
BLAKE2b-256 c4d4cdc5981fd51c32974038ceaf1009b2d5f19f5e864485f444366d5981f0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a857ff7129d6434c14b2648731291f174da88ddda788c0c76116d2bb71115f01
MD5 c3f4757d8d1b06295688aa0f58132b2c
BLAKE2b-256 7f240b7216ce59eaa3f17096aec778d65f21102681bfc39e0d70e7603ea58bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b194db25896c6748ce82ada1f5cf8cbf04c548c94e132bf32aafb955d5898339
MD5 70585a541a710808d9d19e1952ae45b9
BLAKE2b-256 dd6e8d88582387f10961e1c675b8445457136d7840f1c43eefb620cab972a4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab6b4d64650319ef45fdd28bbadb50ac27611cbc4759c0d9352361db262535c5
MD5 0f589a92387663b7dc733a1635345b2e
BLAKE2b-256 4d0aecd672549d1edb67fa826ba85bcd9f63adca191427015b9600542baf176f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fe930eff5856e7353e0f33067c4659d100d0ad6122251eb33026a324d8ee322
MD5 226efd642ada0f4ccc8a0a7ca68c7712
BLAKE2b-256 a32782357223567f5665a4da14c3d4cbd65abbb10873a3fa033280f724d4ac8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fcf627bae7f5ec46dda5131f0cd2b2ffe4e9d57254ea23a1495d562a65c0e09c
MD5 016f9c90514b7a6d94005a4f6b1c4661
BLAKE2b-256 0c1c77a108b9ad72499d6cb83a6b0a03a0b9c2f0c51b07a810c6f63029c124eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pythoncfs-0.1.2-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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2d12c29a80fe8ac6fc8549f103a3f6ad11fe13385db69774d4a8edd9694d021f
MD5 08e049eff5252512d2208b23c160be1a
BLAKE2b-256 bd8e1376e87a0f14f1521758391ecdd6e08c3eeac98fae437ea5e5343dfb6406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59f2ab1859e7bbc7b9554c805b9e19afcedfd1e7a9d72ebd0aac559ff2bf3894
MD5 0f148c9b99b9480dec50f9897b602e31
BLAKE2b-256 97b34dd998862f75c3f1b43088034445b5a89f6a3ac48023189f8af61eb38006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e27146c253d17286ed8a94457d659c74586507bd0aba5962efe1bbc2cc2a62f5
MD5 53af21c93f20ed6283051f551711779d
BLAKE2b-256 0e84d41643774182fbb5658de601e3a45a271cb621d4aecbf0342f9aaed03e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7debb50b4e5c54d0d4ec25a2ff37ea8df36d64b2fe4b84b39d59a4da6ef0f680
MD5 cff304efe47c84d6da78c973fa7f45db
BLAKE2b-256 4ede057a7cad9b3c3302f8714937cde0ea0a7abb08222f6de1f690847f198bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2204b3933e5611c92b1a4b2595cc7944abdf2fa2d3c9474ae9a82694b6bc6ba4
MD5 f2098201f56f9e1198255fc4e719acf4
BLAKE2b-256 275b9c6f6509b4f391d5aaef7ba8506dddc13571b6e8e581d4a130cbb911b7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dac307be95984b534480e307cc7a23387f13c34cb30c0031f53266b0fd01bf7
MD5 922dc40f94621a58113583c712857c99
BLAKE2b-256 7adeb4bc6143b8ccaabb27609b7d1916eeb3a474c570e22885dfc9cab0a3a53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythoncfs-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 711ba7ed80c7c5a9855ad0e87332c8e99fb984ad88ca73b3f99ac0ab23162e3e
MD5 fbe881e72ea99183bb13edc97604d476
BLAKE2b-256 4a0a0a02fb00f615ebd1b1e2cd57ba85a88698b42bb3432ace64dd65cf1f6cec

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