A extend project of UQPyL, which provides develop and GUI versions.
Project description
SWAT-UQ: Uncertainty Quantification for SWAT
SWAT-UQ is an extend project of UQPyL - a comprehensive platform for uncertainty analysis and parameter optimization. This project aims to provide full integration of UQPyL and Soil and Water Assessment Tool (SWAT), enabling users to easily perform sensitivity analysis, single-objective optimization, and multi-objective optimization and so on.
👉中文文档
There are two available versions of SWAT-UQ, tailored to meet different user needs:
- SWAT-UQ-DEV (Develop Version) - Designed for advanced users who require high flexibility and customization in building and managing their modeling workflows.
- SWAT-UQ-GUI (GUI Version) - Offers an intuitive graphical interface for streamlined operation, ideal for users seeking minimal coding involvement.
With SWAT-UQ, users can seamlessly incorporate powerful uncertainty quantification and optimization capabilities into their SWAT-based hydrological modeling projects.
Content
Develop Version of SWAT-UQ
SWAT-UQ-DEV is a Python package designed for script-based environments. It designs a Python class named SWAT_UQ, which inherits from Problem class of UQPyL. By instantiating SWAT_UQ class, users can directly access all methods and algorithms offered by UQPyL. In addition, SWAT_UQ contains a suite of built-in functions to streamline and accelerate the process of building and solving problems (e.g., model calibration, best management practices).
This version is particularly suited for users who wish to customize their workflows, integrate with UQPyL, or other Python tools.
✨ Key Features
-
Parallel Execution: Both data I/O operations within project folder and SWAT model simulations support parallelization. ( 🎉 Benchmark tests on a 40-core server demonstrate that the current code version can stably run up to 80 SWAT instances concurrently.)
-
File Control: For model calibration tasks — such as streamflow and water quality, users only need to prepare a set of
.txtfiles to complete the entire setup process. -
Workflow Integration: With the support of UQPyL, users can efficiently carry out the complete modelling-based workflows: sensitivity analysis -> optimization -> back-substitution.
⚙️ Installation
Recommended (PyPi or Conda):
pip install -U swatuq
conda install swatuq --upgrade
🍭 Quick Start
Here, we provide a step-by-step guide to solving SWAT-based problems with SWAT-UQ-DEV.
To get started, instantiate the SWAT-UQ class, which inherits from the Problem class in UQPyL. This will enable all accesses to methods and algorithms available in UQPyL (see the UQPyL Documentation).
Some preparatory works are required:
Step 1: Obtain a SWAT project folder (named SWAT Project Folder for convenience).
Step 2: Create separate folder as Work Folder to store control files for setting up your problems, as well as temporary files used when running the SWAT model in parallel.
Step 3: In the Work Folder, create a parameter file encoded in UTF-8. This file would show the details of the parameters you want to analyze or optimize, as shown below:
File name: paras.par
💡 Noted: The file name is not restricted, but it is recommended to use the .par extension for consistency with the GUI version. In this file, all elements must be separated by spaces or tabs.
Name Mode Min Max Scope
CN2 r -0.4 0.2 all
GW_DELAY v 30.0 450.0 all
ALPHA_BF v 0.0 1.0 all
GWQMN v 0.0 500.0 all
...
SMFMN v 0.0 20.0 all
TIMP v 0.01 1.0 all
SURLAG v 0.05 24.0 all
The first line should be kept as a hint for users.
Following line of the parameter file should be structured by Name, Mode, Min, Max and Scope:
- Name: Any parameter occurred in
.gw,.hru,.mgt,.sol,.rte,.sub,.sep,.swqfiles can be wrote. The only requirement is that the parameter names used here must exactly match those in the SWAT project file. (Totally support 308 parameters) - Mode: The title 'Mode' means assigning mode of parameters, which is represented by a single character, e.g.,
r,v,a.- where
valis the value in this parameter file, andoriginValis the origin value of SWAT project files. rdenotes relative assignment. The true value would be calculated by $(1+val)*originVal$.vdenotes absolute assignment, directly useval.adenotes for adding assignment, the true value is calculated by $originVal+val$.
- where
- Min: The title 'Min' is the lower bound of the parameter.
- Max: The title 'Max' is the upper bound of the parameter.
- Scope: The title 'Scope' means the target scope of the parameter. By default, it sets to
all- the parameter would be modified globally. Alternatively, you can specify a particular BSN ID or a combination of SUB ID and HRU IDs to apply the parameter selectively. For example:
CN2 r -0.4 0.2 all # Default Scope
CN2 r -0.4 0.2 3(1,2,3,4,5,6,7,8,9) 4(1,2,3,4) 5 # Appoint Scope
The format follows either:
SUB ID- apply the parameter to all HRUs within the specified basinSUB ID(HRU ID_1, HRU ID_2, ..., HRU ID_N)- apply the parameter to specific HRUs within the given basin
Different basin should be separated by spaces or tabs.
Step 4: In the Work Folder, create an evaluation file encoded UTF-8, used to construct objective or constraint functions using observed data.
File Name: eval.obj
💡 Noted: It is also recommended to use the .obj extension for consistency with the GUI version.
SER_1 : ID of series data
OBJ_1 : ID of objective function
WGT_1.0 : Weight of series combination
RCH_23 : ID of RCH, or SUB, or HRU
COL_6 : Extract Variable. The 'NUM' is differences with *.rch, *.sub, *.hru.
FUNC_1 : Func Type ( 1 - NSE, 2 - RMSE, 3 - PCC, 4 - Pbias, 5 - KGE, 6 - Mean, 7 - Sum, 8 - Max, 9 - Min )
1 2012_1 2.1
2 2012_2 3.2
3 2012_3 3.5
4 2012_4 6.7
5 2012_5 14.55
6 2012_6 21.54
...
12 2012_12 22.44
The evaluation file can consists of multiple data series, which may correspond to different locations, output variable, or time periods.
In this example, just one data series is shown.
Each series consists of two parts: a. Head Definition; b. Data Section.
Head Definition: (Following label ID or NUM should be replaced by a number)
- SER_ID: The
IDshould be an unique label for different data series. - OBJ_ID or CON_ID: The
OBJorCONdetermine the type of the data series. And thisIDdenotes the unique label of objective or constraint functions. 💡 Noted: SWAT-UQ-DEV support the multiple series set the sameOBJ IDorCON ID - WGT_NUM: The
NUMdenotes the linear weight for combing series obtaining the sameOBJ IDorCON ID. - RCH_ID, SUB_ID or HRU_ID: The
RCH,SUBorHRUdetermine the type of output file loaded. TheIDshould be consistent with the SWAT project (which RCH, SUB, HRU) and can be set according to your requirements. - VAR_NUM: The
NUMspecifies which data columns to extract from theoutput.rch,output.hruoroutput.subfile (Please see following table for checking valid values). - FUNC_NUM: The
NUMdefines the objective function type to compare observed and simulated data. (Valid values: 1 - NSE, 2 - RMSE, 3 - PCC, 4 - Pbias, 5 - KGE, 6 - Mean, 7 - Sum, 8 - Max, 9 - Min)
The valid values of VAR_NUM (extract variable) in output.rch, output.hru, output.sub can be:
| File Name | Valid Value |
|---|---|
| output.rch | 1-FLOW_IN, 2-FLOW_OUT, 3-EVAP, 4-TLOSS, 5-SED_IN, 6-SED_OUT, 8-ORGN_IN, 9-OGRN_OUT, 10-ORGP_IN, 11-ORGP_OUT, 12-NO3_IN, 13-NO3_OUT, 14-NH4-IN, 15-NH4-OUT, 16-NO2_IN, 17-NO2_OUT, 18-MINP_IN, 19-MINP_OUT, 20-CHLA_IN, 21-CHLA_OUT, 22-CBOD_IN, 23-CBOD_OUT ... 38-BACTP_OUT, 39-BACTLP_OUT... 43-TOT_N, 44-TOT_P |
| output.sub | 1-PRECIP, 2-SNOMELT, 3-PET, 4-ET, 5-SW, 6-PERC, 7-SURQ, 8-GW_Q, 9-WYLD, 10-SYLD, 11-ORGN, 12-ORGP, 13-NSURQ, 14-SOLP, 15-SEDP |
| output.hru | 1-PRECIP, 2-SNOFALL, 3-SNOMELT, 4-IRR, 5-PET, 6-ET, 7-SW_INIT, 8-SW_END, 9-PERA, 10-GW_RCHG, 11-DA_RCHC, 12-REVAP ... 49-NUP, 50-PUP ...67-BACTP, 68-BACTLP |
💡 Noted: The numbers above are taken from the SWAT Manual. However, you can actually determine the order of the target variable by checking the output file.
Data Section is structured by NUM, YEAR_INDEX, DATA. And there is no need for continuous:
- NUM: Not used in SWAT-UQ-DEV, only for data integrity checking.
- YEAR_INDEX: The value of
YEARmeans the year index for the data. The value ofINDEXis the day number when SWAT outputs daily data, otherwise the month number, determined byIPRINTinfile.cioof SWAT project. - DATA: The type of data can be int or float.
Step 5: Build your problem in Python script environment.
# First import SWAT_UQ class
from swatuq import SWAT_UQ
# Second define requirement variables:
projectPath = "E://swatProjectPath" # your SWAT Project Path
workPath = "E://workPath" # your Work Path
exeName = "swat2012.exe" # the name of swat.exe you want to run
paraFileName = "paras.par" # the parameter file you prepared
evalFileName = "eval.obj" # the evaluation file you prepared
problem = SWAT_UQ(
projectPath = projectPath, # set projectPath
workPath = workPath, # set workPath
swatExeName = exeName # set swatExeName
paraFileName = paraFileName, # set paraFileName
evalFileName = evalFileName, # set evalFileName
verboseFlag = True, # enable verboseFlag to check if setup is configured properly.
numParallel = 2 # set the number of parallels
)
# The SWAT-related Problem is completed. You can enjoy all methods and algorithms of UQPyL.
#For example:
from UQPyL.optimization.single_objective import GA
ga = GA()
ga.run(problem = problem)
Step 6: apply optimal parameters to project folder
# X should be a list or a NumPy 1D or 2D array
problem.apply_parameter(X, replace=False) # Applies parameters X to workOriginPath without modifying the original project files
problem.apply_parameter(X, replace=True) # Applies parameters X directly to the original project directory
GUI Version of SWAT-UQ
💡 Noted: SWAT-UQ-GUI is still in demo stage (Now, we advise to use SWAT-UQ-DEV). Feel free to give it a try — the full version is on the way!
SWAT-UQ-GUI is designed for parameter uncertainty quantification (UQ) of the SWAT model. Its core functionalities are built upon UQPyL, our public released Python package for UQ. A key advantage of this platform is that users do not need to worry about coding. It seamlessly automates complete workflow from sensitivity analysis to parameter optimization, result checking, finally data visualization.
Figure 1. Get Start Card
SWAT-UQ-GUI consists of three modules corresponding to preparation, execution, and post-processing. As Figure 1 shows, preparation involves Parameter Setting, Objective Define; Execution includes Sensibility Analysis, Problem Optimization, Result Validation & Apply; Post-processing provide interface for histogram (Visualization A) and point-line figure (Visualization B).
✨ Key Features
End-to-end visualization: SWAT-UQ-GUI supports fully visualized operations across the entire workflow — from problem definition and sensitivity analysis to optimization and final result validation.
Modular & Extensible Architecture: SWAT-UQ-GUI adopts a modular structure that's easy to extend — new methods and tools can be integrated without disrupting existing workflows.
🍭 Quick Start
Here, we provide a Quick Start. In future plans, we will provide detailed documentation and videos.
Please choose the latest release version of SWAT-UQ.
Demo Version has been released: SWAT-UQ
Step1: On the Get Started interface, click the New Project card to create a project or the Open Project card to open an existing one. You can also select the Example card for reference cases or the Help card for assistance.
Figure 2. New Project Card and Open Project Card
For the New Project Card (left picture of Figure 2), users need to provide the following information: the UQ Project name, the UQ Project path, and the SWAT Project path. After these inputs are provided, the program will verify the validity of the SWAT project files. If the verification is successful, other modules will be activated. Once the UQ Project is created, a project file named *.prj (where * represents the UQ Project name set by the user) will be saved in the specified UQ Project path.
For the Open Project Card (right picture of Figure 2), users should select the folder that contains *.prj files. SWAT-UQ will then check the validity of the project file before proceeding.
Step2: On the Parameter Setting and Objective Definition, the parameter file (.par) and the objective file (.obj) should be created. These files are crucial as they specify which parameters will be modified and what objectives will be evaluated by the program.
Figure 3. Parameter Setting Card and Figure 4. Objective Define Card
To be specific, as shown in Figure 3, the Parameter Setting Card enables users to define the parameters they wish to tune. There are two ways to add parameters to the information table: either by importing them from an existing file or by clicking the Add button to open the Parameter Selection widget. In this table, all selectable parameters are organized by the suffix of the SWAT project files. Additionally, the search bar provides a convenient way to locate specific parameters quickly.
Figure 4. Parameter Setting Table
After adding parameters, users can set the tuning mode, lower and upper bounds, and specify tuning files (default: all) for each parameter (Figure 3 shows). Finally, these settings should be saved to the UQ project folder by clicking "Saving Current Parameter" button.
There are also two ways to define the objective function: by importing from existing files or by user definition. For user definition, you should click "Add" button.
Figure 5. Objective Define Table
As shown in Figure 5, users need to accurately fill in the objective ID, series ID, objective type, variable type, weight, and other relevant information. It is important to note that both the series ID and objective ID can be repeated, allowing for combinations of multiple series or weighted combinations of series. For more details, please refer to the comprehensive documentation.
After defining objectives, you can save them to the objective file. It is also allowed to define multiple objective functions within a single file.
Step3: Perform sensitivity analysis or parameter optimization as needed.
Using Sensitivity Analysis as an example, as shown in the left image of Figure 6, users should first select the parameter file and objective file. Next, they choose the desired sensitivity analysis method and sampling technique. Users can then configure additional settings as required, fine-tuning the hyper-parameters to best meet project needs before proceeding. SWAT-UQ thoughtfully displays the number of parameters and the total sample size to assist users in making informed decisions.
Once all initial settings are all ready, click the "Next" button to proceed to the simulation and analysis process. The right image of Figure 6 displays the settings of simulation, including the selection of SWAT executable file, parallel numbers and problem name. Finally, click the "Initialize," "Sampling," and "Simulation" buttons in sequence, and wait for simulation completing. SWAT-UQ can display the simulation progress in real-time, and users can also pause it to reconfigure settings. It would save the analysis result into UQ project folder (./Result/data/). The result file would be used to check or draw visualization picture.
Figure 6. Sensibility Analysis Interface
For parameter optimization, users should still select parameter file and objective file at first. When users check more than two objectives, the multi-objective optimization would be activated; conversely, if only one objective is selected, single-objective optimization is used. After fine-tuning hyper-parameters, the optimization process would be started, like sensibility analysis. SWAT-UQ can display the optimization progress in real-time, along with the optimal parameter values for each iteration.
Figure 7. Parameter Optimization Interface
Here, we list the available sensibility analysis method and optimization method.
Sensibility Analysis:
- Sobol'
- Delta Test (DT) #TODO
- Extended Fourier Amplitude Sensitivity Test (eFAST)
- Random Balance Designs - Fourier Amplitude Sensitivity Test (RBD-FAST)
- Multivariate Adaptive Regression Splines-Sensitivity Analysis (MARS-SA) #TODO
- Morris
- Regional Sensitivity Analysis (RSA)
Optimization Algorithm: (* indicates solving computational expensive optimization problem)
- Single Objective Optimization: SCE-UA, ML-SCE-UA, GA, CSA, PSO, DE, ABC, ASMO* (#TODO), EGO* (#TODO)
- Multi-Objective Optimization: MOEA/D, NSGA-II, RVEA, MOASMO* (#TODO)
Step 4: Result Validation and Apply. On Result Validation & Apply interface, SWAT-UQ allows users to simulate a specific set of parameters individually and extract the desired time series data, or apply the optimal parameters directly to the SWAT project files. This parameter set can be user-defined or sourced from completed optimization result files.
Figure 8. Result Validation Interface
Step 5: Result Visualization. The current SWAT-UQ provides two types of plot pictures: a bar chart for sensitivity analysis (Visualization A Interface) and an iteration convergence plot for parameter optimization (Visualization B Interface). Of course, additional types of plots will be continuously added in future versions. Figures 9 and 10 shows the visualization pictures from two interfaces.
Figure 9. Sensibility Analysis Visualization
Figure 10. Optimization Visualization
Specifically, On the Visualization A and Visualization B, user can select the result file. SWAT-UQ would generates initial visualizations. Users can click the "Config" button to open the settings panel and tune various parameters of the plot based on the preset values, as Figure 11 indicates.
Figure 11. Visualization Interface
This concludes the Quick Start section for SWAT-UQ. For more advanced operations, please refer to the documentation.
🔥 Call for Contributions
We welcome contributions to expand our library with more sophisticated UQ methods, optimization algorithms and engineering problems.
📧 Contact
For any inquiries or contributions, please contact:
wmtSky
Email: wmtsmasky@gmail.com(Priority), wmtsky@hhu.edu.cn
本项目遵循 MIT 许可协议 - 具体内容详见 LICENSE
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swatuq-1.0.4.tar.gz.
File metadata
- Download URL: swatuq-1.0.4.tar.gz
- Upload date:
- Size: 91.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
690d5094aeceba67bd72c98d68b05fd7d7cabdf403e2ffdaa1a3c9ea6c11c0f7
|
|
| MD5 |
96e0beb5e5b9cde7051be4f9c8ccc450
|
|
| BLAKE2b-256 |
7dd8618aa15b6fa7048ac42c665bd552d018d5a0ca7ebc4ec409320f6de910e9
|
File details
Details for the file swatuq-1.0.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 225.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4d548f0c4aaf57d90e445070804b004694ffff02fd536ef27fe47676c9184df
|
|
| MD5 |
c9e1938750c2717ad8842a46a3545f70
|
|
| BLAKE2b-256 |
43e765fe3d1e9d9d51a646774cd01d0490c25d971a82ed67f84b609e64291538
|
File details
Details for the file swatuq-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63ab6a55463232cfc6a524b5e12d3205fda5a4066aacf771ec3823636d4b7df3
|
|
| MD5 |
98e34fe9fe1ec737aabcfd737429b2ea
|
|
| BLAKE2b-256 |
0bc31d12308cd53356330c542288e4772917dbdc7e34a42f9a4d4a18521b499f
|
File details
Details for the file swatuq-1.0.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 225.4 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ff5cf385a8be0a428c91603dc12cdd0e08a5e32c94f18d52239e989262848a9
|
|
| MD5 |
653de069db42ae87a796e2b8bf570d56
|
|
| BLAKE2b-256 |
a3e0abcc82455e1d86915510ba6c5eb6eddd1b35939171805136dfa699cc2cdd
|
File details
Details for the file swatuq-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
063b04cf3a46a3589c9f3dd1189bb463cd67146ca86de1b730813d56c3fb7ced
|
|
| MD5 |
005a13c24b6ebbc4694c407b49757f3c
|
|
| BLAKE2b-256 |
eef8a4615fa5731a1b33dd9a0c0d0bf5cb93f5f584855974a8a42f6231b99efd
|
File details
Details for the file swatuq-1.0.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 224.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
172fe490caf14c4331ff2480f39967065db7ff469ddd9ea56b497fb98560d6e2
|
|
| MD5 |
d64278757524bc91459100c6ae62e950
|
|
| BLAKE2b-256 |
9c6a2cfbf12fb8a786d8bac38897aae82a00c27da3ec4a2581508555f9e6891e
|
File details
Details for the file swatuq-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d87f7b0bd4ec72d86def3e1f55ea7a574480dba0791ff2bad5832a7c16da562e
|
|
| MD5 |
001276783004b167ff88b5b3f6afbaee
|
|
| BLAKE2b-256 |
eb189fd51d33387b5c5cdc0cdce5100cf1b88323f09592c6453399ce83d09f8d
|
File details
Details for the file swatuq-1.0.4-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 224.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
501594d0129b221cb367c95ed396ff9c3c24a74b59e5a02113c0ef63669cdbb9
|
|
| MD5 |
2f7141b0dd862923c413c6dee111a4d0
|
|
| BLAKE2b-256 |
21cc7285552c015e958103bc64517835366e13818896897bae3a673e3b34a82d
|
File details
Details for the file swatuq-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
025844a15da0a52e7cecf667e8ef1fffa8d1f570196856bd6c6294c756e65a25
|
|
| MD5 |
73bbbbc9fff0bafa50a95ba04510a71d
|
|
| BLAKE2b-256 |
0ef9ae1c095b3ef97f10f49ec545c6eaaa733079fb9da93defb7c754287e70ef
|
File details
Details for the file swatuq-1.0.4-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 224.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baa205905f515c7ef070f1b5cd0e06b844e1d01c73c5d170f3235db2883437bd
|
|
| MD5 |
4aa02b5515b4adadeccc7645c0a3ca1c
|
|
| BLAKE2b-256 |
55fe8a074688d25db832cada4a9cb847b5bd164bc3cdab589bdd77436136cedd
|
File details
Details for the file swatuq-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75d4f518b2ef76abde334646feeb80e47921a60f1fc02780acdf82a32ba6d91f
|
|
| MD5 |
804d7e8046f6208a10ce5fd010b67ca3
|
|
| BLAKE2b-256 |
07021c30c29da5f59e42418f32180ca857e4d04d5b05c5f1b648c93e8f4bb815
|
File details
Details for the file swatuq-1.0.4-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 224.9 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4994d09576ccaca82b3ffe320afbe0b3414fc789652dd3709640d5b2b220bd96
|
|
| MD5 |
c7d10af06058447f4a9c4dbe8dca29b4
|
|
| BLAKE2b-256 |
a48567b1c887853fd8bcef66c00315ba5ac6aab1f6940eb473adeff3689db84f
|
File details
Details for the file swatuq-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef1827c4c56b4a3de02a1e54ba20623358d9e1ab30ca39f931cb54792a461a9a
|
|
| MD5 |
76fcd8ebd9f8a59b689f4cd4a4461404
|
|
| BLAKE2b-256 |
801f295f0ae41f781b42d7aea5082a9b1d75818cd721e8773c6057df67bf70c2
|
File details
Details for the file swatuq-1.0.4-cp36-cp36m-win_amd64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 221.4 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb46de389afd926360e78c0e14cdf4349f4740df225cd687117a1834c336dbb2
|
|
| MD5 |
3f1e267a926924313b96c6d41ae4fe5f
|
|
| BLAKE2b-256 |
0a17a44e78d5662f9416b830dc475ae1291a1235cc22fc7728fd00fe2e3c363c
|
File details
Details for the file swatuq-1.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: swatuq-1.0.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee1289856e18d89d50a1436dbe4779baec23040fdd2639f705a79ebd65c2cb91
|
|
| MD5 |
9b532d557b809fb740497494e24107e7
|
|
| BLAKE2b-256 |
80a8e73f176b5f2e657fbe3833f7de5151951d2a871a0ac3931d0bf87bcfa2e0
|