cython-fortran-file 0.2.0
pip install cython-fortran-file==0.2.0
Released:
An efficient package to read fortran-record files in Python.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Corentin Cadiou
Classifiers
- Development Status
- License
- Programming Language
- Topic
Project description
Cython fortran-file
This package is a fast and easy reader for record-based binary format, as written by Fortran.
Installation
This packages requires a compiler to be installed on you system. If you're using Linux or MacOSX you should be fine. If you're using Windows, please get in touch with me or open an issue.
pip install cython_fortran_file
That's all!
Using it
Here is a simple demonstration:
from cython_fortran_file import FortranFile as FF
f = FF('/path/to/my/fortran/file.dat', mode='r')
# Skip 5 records
f.skip(5)
# Read one record (an array of `double`)
data = f.read_vector('d')
assert data.dtype == np.float64
# Read one record (an array of signed `int`)
data = f.read_vector('i')
assert data.dtype == np.int32
# Read one *single* int. This will fail if there is more to read!
v = f.read_int()
# f _looks_ like a regular file descriptor
f.tell()
f.seek(0)
f.close()
It also supports with
statement so that you can't forget to close the file handler
with FF('/path/to/my/fortran/file.dat') as f:
f.skip(5)
data = f.read_vector('d') # Read a vector of doubles (as usual)
Data types
The argument of read_vector
follows the convention of the python struct package (C convention). See https://docs.python.org/3.5/library/struct.html#format-characters for the full list. Here is a shorter version:
Argument | Fortran type | C type | Numpy dtype |
---|---|---|---|
d |
real(8) |
double |
np.float64 |
f |
real(4) |
float |
np.float32 |
i |
integer |
int |
np.int32 |
l |
integer(8) |
long |
np.int64 |
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Corentin Cadiou
Classifiers
- Development Status
- License
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.8
Windows x86-64
Uploaded
CPython 3.8
Windows x86
Uploaded
CPython 3.8
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.8
Uploaded
CPython 3.8
Uploaded
CPython 3.7m
Windows x86-64
Uploaded
CPython 3.7m
Windows x86
Uploaded
CPython 3.7m
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.7m
Uploaded
CPython 3.7m
Uploaded
CPython 3.6m
Windows x86-64
Uploaded
CPython 3.6m
Windows x86
Uploaded
CPython 3.6m
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 3.6m
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.6m
Uploaded
CPython 3.6m
Uploaded
CPython 3.5m
Windows x86-64
Uploaded
CPython 3.5m
Windows x86
Uploaded
CPython 3.5m
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 3.5m
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.5m
Uploaded
CPython 3.5m
Uploaded
CPython 2.7mu
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 2.7mu
manylinux: glibc 2.12+ i686
Uploaded
CPython 2.7mu
Uploaded
CPython 2.7mu
Uploaded
CPython 2.7m
manylinux: glibc 2.12+ x86-64
Uploaded
CPython 2.7m
manylinux: glibc 2.12+ i686
Uploaded
CPython 2.7m
Uploaded
CPython 2.7m
File details
Details for the file cython_fortran_file-0.2.0.tar.gz
.
File metadata
- Download URL: cython_fortran_file-0.2.0.tar.gz
- Upload date:
- Size: 78.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200313 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a562b355d6ef648e646064eee72b3ecdffdd8382c707aaf535a53d0a00d7c504
|
|
MD5 |
dab63427c1784437dcadb27fb843d4f3
|
|
BLAKE2b-256 |
bdab4eb9940ae216be8e10418510c66620a869f820b30833bf334bf4ca3bfb48
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 40.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cb1a7dc83d53c668447ea297af3d8f0c75b22343ac4672cd97dd35016099a4e0
|
|
MD5 |
a330f85ae9e96abdb8f4f6f3bd18ed8c
|
|
BLAKE2b-256 |
f02b4c28439c7f8151ffe36828dcec829ce58491e9011ef21f5034d63c514bda
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-win32.whl
- Upload date:
- Size: 36.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d9e58f13fcdaaa622ab91db79e98cc6f8c079a7d46c9e4ec6cf6e4234ad65f24
|
|
MD5 |
5c4c61a5aad95ca1b3c54732b34c87ab
|
|
BLAKE2b-256 |
b846ea7a5e5bebfb561a148a7b804c483e0003dceaeb34bc2605fc9e6f0b8fea
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 215.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
96be869c35eb6baad9fe9a1bd09065cc109ce5e266327aa56507eac2dd31ea61
|
|
MD5 |
3a39465e5a527deaddc33ec87c4ef1d4
|
|
BLAKE2b-256 |
065b669c2ea193a46745dc6db49e17519dff513e71a8e81d7056bc0a8614b3f1
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-manylinux2010_i686.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8da4b0fc59618bdbf5f9b6663bd72d638acd2fb033ad7bc013a8876c30d01ca5
|
|
MD5 |
0b45a9e322abdc60338b1ccf9c149192
|
|
BLAKE2b-256 |
ef170fe0df95ac69b4df3870f2b921a889d2b501d1da7e02bce3ce155a5e7270
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 215.2 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ef9bdf664acb8892dc7db341f9d42e79c15b86f96688f70049875107d4089c4e
|
|
MD5 |
1e0fbeb600fafe42e88cad4828560cf9
|
|
BLAKE2b-256 |
f66bac4171abd7f92bde0908c3ea6a96fac8df77d72d85b3096218717e65c3d7
|
File details
Details for the file cython_fortran_file-0.2.0-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
52290227d8e48ee7ef15ff5187e95e2f25d519ee6d5cdb7fabdcf70bc35cd7ba
|
|
MD5 |
97db5e1f2a8a9960f6b16b2847fbbe23
|
|
BLAKE2b-256 |
e658efecc2cbb3f38a3e934de21357e6b20265df87733666fedd30b027e73e65
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 39.4 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
31687af914903d70ae2f098ca998d184cc5109e39e6cedf2e7566d09f2fd4f6b
|
|
MD5 |
392b131d9a0b24a91bcac6b92ba7cf42
|
|
BLAKE2b-256 |
2ca4843ba0dbf0c1e253683511c31d64007fb9a4d89cc59817342ae9e6b7b188
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-win32.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 36.0 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8318cdd557e01e14a6a2ed4672638756310ea5b998705240ce32d8b53e54a09c
|
|
MD5 |
f55c4cab5cc3c4637126e7703463fdfa
|
|
BLAKE2b-256 |
39327c7465e2202cd63fa4dd1a3063182a8ffd35ddc070809dfc6d495cdae936
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 182.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
39dad928c3723d2b30aeb50df7532fa6df25fe6d21a199ad41c8d5a6eab060e1
|
|
MD5 |
70ae72df170299c346e1c1983e6519b0
|
|
BLAKE2b-256 |
e6e28073a8f5a279d59f6aa761ced21d432d7e0368f9144e6d673a9fd20d3219
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-manylinux2010_i686.whl
- Upload date:
- Size: 176.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
73f39da36584fc2cd326511ca3ab103ebb78cfe26aab366aa343452f1015a73d
|
|
MD5 |
2465cd94dddae68121830ec8c789c984
|
|
BLAKE2b-256 |
b0586024a9b68630a2412386d5760d3edb52d02b5662e49f28d9844173c9b7ca
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 182.9 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ed43a460612079b6ceb10fc2e75fd5b7068044c9bbb898c52fc6ab66a0a31be2
|
|
MD5 |
eedd7e832caa9a8766d6cf52883d11c0
|
|
BLAKE2b-256 |
0fd1cf5c0e4999fe5902840ca5abda2ab4efd3dac91c057d9dcd46f7e5c3f8f4
|
File details
Details for the file cython_fortran_file-0.2.0-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 176.6 kB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c98f071480d31f7c7a6ac10f9ea0be34a65f20a8fe73871e6e78638a1d98d3ca
|
|
MD5 |
a62b47c511382ae17c0a19ba1e0fc61e
|
|
BLAKE2b-256 |
a303640a724caf37919c94fcc44255be21c4b3c1188ae3d7853affb695991c31
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 39.5 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
26f170c188b089f6171ec22af6110254df29109c358dc0a7972ba01c715ee35b
|
|
MD5 |
9cd391c80fe8917e85d205c8e7b409ae
|
|
BLAKE2b-256 |
aceddbc88ddd44485a45f235af8ac55f7cbdffe9c35da4d0fe7e7e6dacc10f1c
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-win32.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-win32.whl
- Upload date:
- Size: 36.1 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
773135c86398e2450225d52e04c13d275b8026f8bcd118fa0380efdfd95f0297
|
|
MD5 |
2707476357a5ae5a38bd9e7e3acb1114
|
|
BLAKE2b-256 |
cf843957272f71b06956187fb0c2b98c2b0c2f0bbae1af2aa0a29f74c750050b
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 182.6 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6bd5ec356e7e0d07c1771fc07ccbd1328b8f5be582bbb27a7613ae848f898b33
|
|
MD5 |
8096cbd26e5077f8cfd717736349edbd
|
|
BLAKE2b-256 |
5d5b0e434254d38f53b15c448ebe0a3a99a2d7f2150c5374d3f48824adc15d67
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-manylinux2010_i686.whl
- Upload date:
- Size: 175.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
40c583b67b039c89f3fd8e0258f7d168180876119cc3913109cc69e7adffd26c
|
|
MD5 |
62c4034a301794a3f3132d4c016cc8f3
|
|
BLAKE2b-256 |
8d1a755b27c80d78c2dd525233ab44f31cabddaf40a428f0309d7f79c4ac76d1
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 182.6 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6db9b65831fdca03580059034d0d64670a67bd59b11d848a07ae25e89e60b63b
|
|
MD5 |
b3f11f4267155e6eef0eb0417c08d24a
|
|
BLAKE2b-256 |
9e7434c0b2419a472d9ec9c6c5d06810c3b1a3a1317925f2bec42b6cadd61b3b
|
File details
Details for the file cython_fortran_file-0.2.0-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 175.9 kB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f4f805b2ccabb719a3a09c56aa46e16f1a8fdbbc72b0418725a3732d44319b98
|
|
MD5 |
d5f889c960d850e3326d5200750b72b0
|
|
BLAKE2b-256 |
469c0a36bfda2b9d5bbaa3309a65d07b685e0a10acc26c35c0c9ff5b9100c805
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-win_amd64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-win_amd64.whl
- Upload date:
- Size: 38.1 kB
- Tags: CPython 3.5m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6efb0ad2d5e06fb7457560542e3ba93ac649697dd4616a65c1231599db9bba76
|
|
MD5 |
3c3bd7fa0d63c91011a7c7ff91219004
|
|
BLAKE2b-256 |
cb617796eadc76b9b14f5e5b3761ff8005dfb7e06114e0f50e686d14cc95a042
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-win32.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-win32.whl
- Upload date:
- Size: 34.7 kB
- Tags: CPython 3.5m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5ea28360b44ce4eb7cfca724ba7655716fa014ddaf5111a7064496b8d173a057
|
|
MD5 |
d27926066145b7b6d2d5e9d3be7ce00e
|
|
BLAKE2b-256 |
e83995177bf46cfbb12dbd328c2479d835f743467aad83ff9fb9b15365de0c00
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl
- Upload date:
- Size: 180.7 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
011bdd05029152fef15d9c81d73647179531b941a240d6b5e429818a265d7331
|
|
MD5 |
d8da06823d06105398402fb605d12df8
|
|
BLAKE2b-256 |
c370dc38c4c9492fc310b884a8c3f108f4facdc49599d58b9eb129e3f99cadce
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-manylinux2010_i686.whl
- Upload date:
- Size: 176.0 kB
- Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d85a6e6d7f2e0a34abab1ed64cda5e24eb374175b6534771b6e38ea4cb733c1f
|
|
MD5 |
bac0412221fc64706dc10b0e7611de3f
|
|
BLAKE2b-256 |
f194b708fbf9c295ea967e1ee0f8b2093f043b19bd9ae4b0bb6e65954b2c22d5
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-manylinux1_x86_64.whl
- Upload date:
- Size: 180.7 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8d849ccf1c33516592a24ca9dfcc2f8b07e4195c35e21e5a519ac5757a434290
|
|
MD5 |
fd9b0c50b5992b2d246bbd490d1b9758
|
|
BLAKE2b-256 |
30e45b54dd9cfc7473b1a6269a941a9ddee3ecee56d767534e4c7beb08ba6517
|
File details
Details for the file cython_fortran_file-0.2.0-cp35-cp35m-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp35-cp35m-manylinux1_i686.whl
- Upload date:
- Size: 176.0 kB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b65834e7e5b74a864604e320f7d5f0ef72b019cd21439c00baae26ec305f7330
|
|
MD5 |
928906d444bd277a646ab8074bb6cf2c
|
|
BLAKE2b-256 |
474980b1459eaaaf42a8ff91c3ca60aed63ad8dee3b7a64664169260582c5349
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl
- Upload date:
- Size: 162.6 kB
- Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0f1cbd56fec3c155934ac7bc2f33636aa3a99cd566fcc046c91b8f19fc5a1b97
|
|
MD5 |
389f61c0ba27ecbae907d2605d91e55e
|
|
BLAKE2b-256 |
99043dd277ffc837e2d8a6420d97a259e177df78edb585a7af588cf372743484
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27mu-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27mu-manylinux2010_i686.whl
- Upload date:
- Size: 157.6 kB
- Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
88d3905674abe9cb96f7cca7a7df43f256c2f9c5258d7034564999345494244f
|
|
MD5 |
95993a4b51e4fd2faba3c656e0875617
|
|
BLAKE2b-256 |
6e5ade1ddb3a534fae3d7a6e9b0d7281c2e55f3846c0b5d5871444085e5f2858
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl
- Upload date:
- Size: 162.6 kB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6380e299ae8cb307cc79e369119ee91fcd9511b7a5c0f21865baa3533dfacd65
|
|
MD5 |
fdea449be9ac65207c0e51416e0a58fa
|
|
BLAKE2b-256 |
e2c1f1806a4dc482cf91ba09ecb690a8744299e293426f9beb594b47598d0dd8
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27mu-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27mu-manylinux1_i686.whl
- Upload date:
- Size: 157.6 kB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
358583f571fcb5e282ca948101d4d9190721cfbf93c4fd575da2c2b9687fbfcb
|
|
MD5 |
39e4fa1c1e61d6619cc0eb6b8a8132a0
|
|
BLAKE2b-256 |
3a7908beebb6ff37e432fcf1e967aa222ee8aa64df63fcfe067ff9f5c881e06f
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl
- Upload date:
- Size: 162.6 kB
- Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
489ec3988239bf6f9c471fb8ebf1535efa8275cd4b3ca31aa68adf223561d676
|
|
MD5 |
a111d22aefd3855bedad27ae11e64059
|
|
BLAKE2b-256 |
2148fa0c57f3c0e531d42db7b69aaa56485e772bfb6a7e13db7e0c96ea7bb4a8
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27m-manylinux2010_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27m-manylinux2010_i686.whl
- Upload date:
- Size: 157.6 kB
- Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f0f3b005c9717fba5500e9c101dcc1c3c44a64a56235a185feabe7583d2ca1ae
|
|
MD5 |
f2e93fad4021228c844a0ef9467e8cd0
|
|
BLAKE2b-256 |
7380c1553694445cfa44744c5e4a884fe1b01e4a0ce33dc5dcf70d747c30350b
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27m-manylinux1_x86_64.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27m-manylinux1_x86_64.whl
- Upload date:
- Size: 162.6 kB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8c8d3dfce5eaa364aa01b3529c71ee6d89cc0823ebb3035407873a9049b81e57
|
|
MD5 |
22a977e2293c694837a674c491998dc1
|
|
BLAKE2b-256 |
4949ef33a0be57912725319d32a700f210eba00171eb2c8d3bffbb5699807fd4
|
File details
Details for the file cython_fortran_file-0.2.0-cp27-cp27m-manylinux1_i686.whl
.
File metadata
- Download URL: cython_fortran_file-0.2.0-cp27-cp27m-manylinux1_i686.whl
- Upload date:
- Size: 157.6 kB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ad04243a75a35b4d21a1f8760b7c4e435ce8be5b912f0d29962d7c470324ce36
|
|
MD5 |
87fec7e1f1aa12077738fa45de2e268c
|
|
BLAKE2b-256 |
842b3413869d89ca1e9e04cc1dffe67441ddb0ab9450fb9ed6254321c42e4b00
|