Skip to main content

This is SRW for Python

Project description

Synchrotron Radiation Workshop (SRW)

SRW is a physical optics computer code for calculation of detailed characteristics of Synchrotron Radiation (SR) generated by relativistic electrons in magnetic fields of arbitrary configuration and for simulation of the radiation wavefront propagation through optical systems of beamlines.

Frequency-domain near-field methods are used for the SR calculation, and the Fourier-optics based approach is generally used for the wavefront propagation simulation. The code enables both fully- and partially-coherent radiation propagation simulations in steady-state and in frequency-/time-dependent regimes. With these features, the code has already proven its utility for a large number of applications in infrared, UV, soft and hard X-ray spectral range, in such important areas as analysis of spectral performances of new synchrotron radiation sources, optimization of user beamlines, development of new optical elements, source and beamline diagnostics, and even complete simulation of SR based experiments. Besides the SR applications, the code can be efficiently used for various simulations involving conventional lasers and other sources. SRW versions interfaced to Python and to IGOR Pro (WaveMetrics), as well as cross-platform library with C API, are available.

In the following writing, it is assumed that SRW_Dev is absolute path to the full SRW directory (obtained e.g. after downloading from repository).

I. Using pre-compiled SRW libraries and clients / bindings:

The last ~"clean" release of SRW for IGOR Pro and for Python can be found in SRW_Dev/env/release, in particular:

  • installers (of compressed packages) can be found in SRW_Dev/env/release/install;
  • unpacked folder of SRW for IGOR Pro (for Windows only) is: SRW_Dev/env/release/srw_igor;
    This folder contains ReadMe.txt file with general "start-up" notes; detailed documentation for IGOR Pro version can be found in: SRW_Dev/env/release/srw_igor/SRW Help/SRW Help.ifn file (in IGOR formatted notebook format);
  • unpacked folder of SRW for Python (for Windows and Linux) is: SRW_Dev/env/release/srw_python; this folder contains ReadMe.txt file with general "start-up" notes.

The most recent pre-releases and current work versions of SRW for Python and for IGOR Pro can be found in: SRW_Dev/env/work.

Testing of the pre-compiled SRW libraries and clients / bindings can be done using examples included both to Python and IGOR Pro versions of SRW (see "Checking the examples" sections below for different platforms).

II. Compiling and testing SRW Library and its Python and IGOR Pro bindings on Windows

II.1. Compiling SRW library and Python binding using MS Visual C++

II.1.1

Microsoft Visual C++ 2015 (or later version) solution file (SRW.sln), which includes 4 projects:

  • SRW Library (file SRWLIB.vcxproj),
  • SRW Python client / binding (file SRWLClientPython.vcxproj),
  • SRW IGOR Pro client / binding (file SRWLClientIgor.vcxproj),
  • SRW C demo client (file SRWLClientC.vcxproj), can be found in SRW_Dev/cpp/vc.

The SRWLClientPython project file allows for compiling srwlpy.pyd shared library, i.e. SRW for Python 2.7 or/and 3.x (64-bit or 32-bit); SRWLClientIgor allows for compiling SRW.xop shared library, i.e. SRW for IGOR Pro (32-bit only). Free Microsoft Visual Studio Community 2015 (or later versions) can be used.

To compile SRW library supporting OpenMP based parallel calculations (e.g. for XFEL applications):

  • In the Visual C++ Configuration Manager, select "Release_omp" version of the SRWLIB project, then re-compile SRWLIB and SRWLClientPython under the "x64" Solution Platform to produce a 64-bit version of SRW for Python supporting OpenMP based parallel calculations.
  • Note that the "Release_omp" version of the SRWLIB project has only a few differences with respect to the standard version: the "_WITH_OMP" preprocessor definition is added to Configuration Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions, the "Open MP Support" option is set to "Yes (/openmp)" in Configuration Properties -> C/C++ -> Language -> Open MP Support, and the linking is made with older versions of the FFTW library (FFTW 2.5), whereas the "normal" compilation / linking is with the FFTW 3.8.

II.2. Checking the examples

II.2.1

The SRW for Python examples can be tested using e.g. "IDLE" (Python native GUI). To do so, start this application (e.g. from Windows Start menu), open an example file in it, e.g. SRW_Dev\env\work\srw_python\SRWLIB_Example01.py, and run it from the IDLE.

Alternatively, the example scripts can be executed from the Windows Command Prompt, e.g. from within the SRW_Dev\env\work\srw_python directory. For convenience, correct path to python.exe file may need to be specified in the Windows system PATH variable prior to these tests.

II.2.2

The SRW for IGOR Pro examples can be tested from "SRWE" and "SRWP" menus, "Help" sub-menus, of the IGOR Pro.

III. Compiling and testing SRW Library and its Python binding on Linux

III.1. Compiling SRW library and Python binding

This can be done either using Python "setuptools" module (see section III.1.1 below) or without it (see section III.1.2).

III.1.1. Compiling using Python "setuptools" module

Make sure the "setuptools" module of the Python version you would like to use is properly installed and configured. If this is done, the compilation and installation is simple:

cd SRW_Dev
make all

To compile SRW library supporting OpenMP based parallel calculations (e.g. for XFEL applications) add "MODE=omp" after "make all":

make all MODE=omp

This should compile libsrw.a and srwlpy.so, and copy srwlpy.so to SRW_Dev/env/work/srw_python/

III.1.2. Compiling without "setuptools"

III.1.2.1. Download and compile fftw-2.1.5 or/and fftw-3.3.8 library as required for SRW

Make sure files fftw-3.3.8.tar.gz and fftw-2.1.5.tar.gz are located in SRW_Dev/ext_lib directory (if necessary, download these files from FFTW site, probably http://www.fftw.org/download.html).
Do the following to compile fftw-3.3.8 for using single-precision numbers as required for most FFT-based operations in SRW:

cd SRW_Dev/ext_lib
tar -zxvf fftw-3.3.8.tar.gz
cd fftw-3.3.8
./configure --enable-float --with-pic

Manually (using editor) add -fPIC option to CFLAGS in Makefile

make -j8 && cp .libs/libfftw3f.a ../

Do the following to compile fftw-3.3.8 for using double-precision numbers required for some FFT-based operations in SRW:

cd SRW_Dev/ext_lib
tar -zxvf fftw-3.3.8.tar.gz
cd fftw-3.3.8
./configure --with-pic

Manually (using editor) add -fPIC option to CFLAGS in Makefile

make -j8 && cp .libs/libfftw3.a ../

Do the following to compile fftw-2.1.5 for using single-precision numbers required for supporting OpenMP based parallel calculations in SRW:

cd SRW_Dev/ext_lib
tar -zxvf fftw-2.1.5.tar.gz
cd fftw-2.1.5
./configure --enable-float --with-pic

Manually (using editor) add -fPIC option to CFLAGS in Makefile

make -j8 && cp fftw/.libs/libfftw.a ../

III.1.2.2. Compiling the SRW library and Python binding

cd SRW_Dev/cpp/gcc

Make sure Python 3.3 or higher (or Python 2.7) is installed.
In the SRW_Dev/cpp/gcc/Makefile, modify/correct PYPATH and PYFLAGS variables, i.e. specify path to Python header and library files. Depending on Linux environment, it may also be necessary to modify the name of compiler to be used, e.g.:

CC  = gcc
CXX = g++
#CC  = cc
#CXX = c++

After this, execute the following:

rm libsrw.a
make all

To compile SRW library in the mode supporting OpenMP based parallel calculations (e.g. for XFEL applications) add "MODE=omp" after "make all":

make all MODE=omp

Then copy srwlpy.so to SRW_Dev/env/work/srw_python/:

cp srwlpy.so ../../env/work/srw_python/

III.2. Checking the examples

Make sure the path to Python 3.x (or 2.7) is added to the PATH variable and "srw_python" to PYTHONPATH variable:

export PATH="$PATH:<absolute path to Python 3.x>" # this is not necessary if you install python using the distro's package manager
export PYTHONPAH="$PYTHONPATH:SRW_Dev/env/work/srw_python/" #temporary solution

or

echo "export PYTHONPATH=$PYTHONPATH:SRW_Dev/env/work/srw_python/" >> ~/.bashrc #permanent solution for a single user

Setting up PYTHONPATH allows to import srwlpy module from any directory. Testing of the examples would preferably done in the srw_python directory:

cd SRW_Dev/env/work/srw_python
python SRWLIB_ExampleXX.py

IV. Compiling and testing SRW Library and its Python binding on Mac OSX

Try to follow the steps described in section III (describing options for compiling and testing SRW on Linux).

We were informed that the actions described in III.1.1 lead to successful compilation on OSX 10.14.5 after the following modifications in SRW_Dev/cpp/gcc/Makefile:
Change CXX variable as follows:

#CXX = c++
CXX = g++ -stdlib=libc++ -mmacosx-version-min=10.9

Make sure to explicitly use the C++ compiler (CXX) for compiling all *.cpp files, e.g.:

%.o: $(SH_SRC_PARSE_DIR)/%.cpp
    $(CXX) $(CFLAGS) -c $<

It may be necessary also to set also the CC variable to came value as CXX (?):

#CC = cc
CC = g++ -stdlib=libc++ -mmacosx-version-min=10.9

Previously, we were informed that the actions described in III.1.2.2 lead to successful compilation with gcc/g++ provided by Xcode 10.1, after the following modifications in SRW_Dev/cpp/gcc/Makefile:

CC  = gcc
CXX = g++
#CC  = cc
#CXX = c++
...
PYPATH=/Library/Frameworks/Python.framework/Versions/3.6
PYFLAGS=-I$(PYPATH)/include/python3.6m -I$(PYPATH)/include/python3.6m -L$(PYPATH)/lib/python3.6/config-3.6m-darwin -lpython3.6m -ldl

The correct path and flags can be obtained e.g. by executing from command line:

python3-config --includes --ldflags

and removing the option "-framework"

With earlier versions of Xcode, the following manipulations, consisting in installation of "macports" and obtaining the whole gcc toolchain, were reported to be successful:

sudo port install gcc47

Modify the SRW_Dev/cpp/gcc/Makefile so that CC=<path to macports>/gcc and CXX=<path to macports>/g++, and proceed to the compilation as described in III.1.2.2.

V. Compiling and testing SRW Library and its Python binding on Windows and Linux (via CMake/Pip)

Run the following in a Visual Studio Developer Command Line/Linux Terminal:

cmake -B build
cmake --build build -j

The pip installable version of the package can be obtained by running the following in a Visual Studio Developer Command Line/Linux Terminal:

cd env/python
pip install -e .

VI. GPU Acceleration of SRW

SRW has basic support for GPU acceleration of some routines through CUDA. Compilation of SRW with GPU acceleration requires the CUDA HPC SDK or CUDA Toolkit to be installed. To compile on Linux, run the following from the SRW base directory:

MODE=cuda make

To compile on Windows, ensure that CUDA Toolkit v12.4 is installed, open the SRW solution in Visual Studio, set the target for the SRWLIB project to the _cuda variant and update the library and include paths. You may also have to copy the following DLLs from the HPC SDK or CUDA Toolkit install into the env/python/srwpy directory to resolve the DLL load failed while importing srwlpy error:

  • cufft64_11.dll

Authors and Contributors to SRW project

O. Chubar (ESRF - SOLEIL - BNL)
P. Elleaume (ESRF)
J. Chavanne (ESRF)
R. Celestre (ESRF)
P. Dumas (SOLEIL)
O. Marcouille (SOLEIL)
L. Samoylova (E-XFEL)
A. Buzmakov (E-XFEL)
G. Geloni (E-XFEL)
I. Agapov (E-XFEL)
J. Sutter (DIAMOND)
D. Laundy (DIAMOND)
A. He (BNL)
R. Coles (BNL)
R. Li (BNL)
M. Rakitin (BNL)
H. Goel (SBU - BNL)
N. Canestrari (ESRF - BNL)
A. Suvorov (BNL)
R. Reininger (ANL)
X. Shi (ANL)
R. Lindberg (ANL)
L. Rebuffi (ELETTRA - ANL)
D. Bruhwiler (RadiaSoft LLC)
R. Nagler (RadiaSoft LLC)
P. Moeller (RadiaSoft LLC)
B. Nash (RadiaSoft LLC)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

srwpy-4.2.1-cp314-cp314-win_amd64.whl (37.0 MB view details)

Uploaded CPython 3.14Windows x86-64

srwpy-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

srwpy-4.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

srwpy-4.2.1-cp314-cp314-macosx_11_0_arm64.whl (36.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

srwpy-4.2.1-cp313-cp313-win_amd64.whl (37.0 MB view details)

Uploaded CPython 3.13Windows x86-64

srwpy-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

srwpy-4.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

srwpy-4.2.1-cp313-cp313-macosx_11_0_arm64.whl (36.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

srwpy-4.2.1-cp312-cp312-win_amd64.whl (37.0 MB view details)

Uploaded CPython 3.12Windows x86-64

srwpy-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

srwpy-4.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

srwpy-4.2.1-cp312-cp312-macosx_11_0_arm64.whl (36.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

srwpy-4.2.1-cp311-cp311-win_amd64.whl (37.0 MB view details)

Uploaded CPython 3.11Windows x86-64

srwpy-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

srwpy-4.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

srwpy-4.2.1-cp311-cp311-macosx_11_0_arm64.whl (36.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

srwpy-4.2.1-cp310-cp310-win_amd64.whl (37.0 MB view details)

Uploaded CPython 3.10Windows x86-64

srwpy-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (37.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

srwpy-4.2.1-cp310-cp310-musllinux_1_2_i686.whl (38.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

srwpy-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (36.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

srwpy-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (36.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

srwpy-4.2.1-cp310-cp310-macosx_11_0_arm64.whl (36.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file srwpy-4.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: srwpy-4.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 37.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for srwpy-4.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4dfaaeb3e0b48ee2bf98836dd7930b431ec87653dccae4ee16bc128995482aff
MD5 ad99e8befcba203af8d9341175375477
BLAKE2b-256 d6fb6557624bc33a505cca29d1c6ae0a1496b6544f72b1d1eba2cbcca7196dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp314-cp314-win_amd64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4000bfd9a634c31e155d5a49a835732f42a792935af10de6b9bc0c268662677f
MD5 d7f573efc8adc7454ca815984fac8e3d
BLAKE2b-256 509d8e2d91e2553e4b51b5fc6b1af6e8901e51492033338652a51b7ee3c15481

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa85ea082efede4f8841696135cac40400f701df9551046e6b7424749b7888e4
MD5 5d794e1c2e7f698f6315081c16ed506c
BLAKE2b-256 a9480b14c12b9afb9705db836cc3d03958635464490f82227816e60059af247e

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 859d89c253d351ac2e65ebf3b37f7ff4cc1a775a4908c7c3e9871dc6bc9533e4
MD5 ff51ed1c971731e684fcb2e5626661ec
BLAKE2b-256 6af3668cad2bf101a5cb3747d495ba2b293a86fbe3c9d11a826c3527e4ac8cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: srwpy-4.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 37.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for srwpy-4.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 482618f6a60ed0ea6eb1d6f6a151524cabbaf3ca98139d18bef42a9259193c8a
MD5 648730a7f0c61bde9135556753d6dfe5
BLAKE2b-256 567c0ddfecb81e7c535f3b15adbfb5bbc2759535b364c701b5ef8ac7e25321a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp313-cp313-win_amd64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 497a54f8d2aa6f9cb25aa8a75c57f957949651de800a7913b544d5b19433a7a4
MD5 3caa9d6179ce9cefc353f37346592bc7
BLAKE2b-256 4811b2f0901744772102841cf435ec3eb16ab2d37bf7ac1d42c3816e3faa3a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 005e43c6d58db52d1a10cf4b38243eb52dc74b3e713fcf61b26d5c082e78228e
MD5 abcb394fa0fb1a5fa83d1662b0f5d8ff
BLAKE2b-256 da40cae83908716b8bcb91cde2b5bee6ce4f0229005d0daa650e38e1554efb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e64b83ffe6fc87e97e672070b06219b4b3ec62ada3c0c45963a869ba5fda3cfd
MD5 66761552818b352e3474191fa6979423
BLAKE2b-256 14eeef1a7184fae007d743664b22b6b93c5b12f7a67a32f0427bdfb5921d4d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: srwpy-4.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 37.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for srwpy-4.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 11729b858f87e6af03f25eed30cba07e9ffd9bfba266da7fca0294a123ebfb41
MD5 167958491dc94133a6b7bdc5a953de8a
BLAKE2b-256 4e2fc003caeafb767ab4f9de8af1869987b37768d433a8e4f3ac1a1113662350

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp312-cp312-win_amd64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7198d634c1a63ccc4e0f5553b4c0f657ff4cebe8109757aa732e4449051cdd29
MD5 94f8237fdd67376c67e8b44b21a7f036
BLAKE2b-256 d6a97560e047b0ee1f4538cdfd86dc6090965bbb1017817dbe85bb0ba132d442

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2526c922fa57bd3958c82da6ce1ab7cd257091394ffc963c6a476c96bfabde0
MD5 78f51393b63cdcaaa2d1d184f9e2b12b
BLAKE2b-256 5d25c120b88a5f2548e8bd455d321d96cda6e1b07ae26260cf0891fdbddb8445

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 146df3611a3bc94d03fe18aabc134557b2842b590f21190cb050ffd7fb719e1b
MD5 00821826abaf93f34cd995880a54ff2e
BLAKE2b-256 dd059ce0f8e00fca5e89735271c537e820dc83f2a45a43c16606587f93201332

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: srwpy-4.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 37.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for srwpy-4.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af6b1ad02da54bfaf1f0fe5f6681b125f77f9dd40a79a694a77e61f52efc06ce
MD5 1a621b05458359c0b453e19324390ef9
BLAKE2b-256 ec935affba1f2cf3cc5372d495302cd1009b4fe0df46d53a7b400e74301a5869

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp311-cp311-win_amd64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c4a72de8ce75f78d8260da85cabde722c67f548fc5b1abc8a13e8af8f28dbef
MD5 38fbc6ef4d00b9c95eed718251154f7d
BLAKE2b-256 6a0a774ebb94653dc9da1924dacd82c52f56c32718a1962758c7f9c1225525bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 152c944902c3c9838acaa54a05fa964cca4969896d118e80e20cdf706a3357c7
MD5 debb4fe1715e14d576c104ff0ca6d162
BLAKE2b-256 ce3bfdd41c6b9a6024a9ff1ac52a8bdc6e6e476f6574aac6b0a56d894f047802

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5613e8b39339fd2d77f9bca557f00e77dc51d2f57ec4dcf7cea9029136715f78
MD5 374b459091ddbea7f93f52898d6f2995
BLAKE2b-256 528ae146fff75915b27285a7dfe511dae38f8f93f5197f799a8ce83628927efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: srwpy-4.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 37.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5ddd2c57663e813be295f5c42ac7fa9447ab36baf8526880997b1834f68faf4
MD5 56c69bb66a935d97bc103015e9c7fc53
BLAKE2b-256 98047789cf13547a3f70dbc8ae0d4005862198cd4e3b138615fee11aeee1d56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-win_amd64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5067e3090a1ad91f1bd4c90ec4ef0657ee6021976b555811339e552ac0747bf1
MD5 3c5ed629c6ec66eaaccf1866d30d3a05
BLAKE2b-256 0d4435f81da27a396e627f7dcc19ab8ee28bd1b2c94de65e57860db07c649243

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47b780eba23f6e8ea6440bee7e21254fa66adc4a2605b3db1e3a023459634dc4
MD5 20e39cda6422e94dbe25e50405bb97cd
BLAKE2b-256 93906b0570c05adedea7be1389d0e3913e90deaeeaa0597595005fcc9a769c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3088c1168ba017e635be594b74846a4badf403015411c4b70702f72181a68c41
MD5 2bb71811f27faf9a06f0229ad932e0e1
BLAKE2b-256 f483c5f960982a6119fc1b5e6b6a68879561dc156afa7ec4d59a99e6ec3670a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b9617637d811d704763d295836bf25ed0223eec3b7d88091c6000044663cd8c
MD5 bdb7d00e7648ef4482ac58c0037d5e63
BLAKE2b-256 44b59dcd6408c956132ab373633131244537e9006c098c60b5144d94768d115c

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file srwpy-4.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for srwpy-4.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6599266d40f95714630073f604ba45348a45f5b8be4e2d3066fa1c271b5c3994
MD5 a4f4a280a46cda5fb66311023e5fc103
BLAKE2b-256 34727843d5c195a0accdc1d116458fe6974ac6e2564b9e36f5b24f5939c43d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for srwpy-4.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi_publish.yml on ochubar/SRW

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page