Skip to main content

A extend project of UQPyL, which provides develop and GUI versions.

Project description

SWAT-UQ: Uncertainty Quantification for SWAT

PyPI version PyPI - Downloads PyPI - License GitHub last commit Static Badge Static Badge

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.

👉中文简介

👉Documentation

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 algorithms into their SWAT-based hydrological modeling projects.

Useful Links


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

  1. 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.)

  2. File Control: For model calibration tasks — such as streamflow and water quality, users only need to prepare a set of .txt files to complete the entire setup process.

  3. Workflow Integration: With the support of UQPyL, users can efficiently carry out the complete modelling-based workflows: sensitivity analysis -> optimization -> back-substitution.

⚙️ Installation

Static Badge Static Badge

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 f -0.4_0.2 all
GW_DELAY v f 30.0_450.0 all
ALPHA_BF v f 0.0_1.0 all
GWQMN v f 0.0_500.0 all
... 
SMFMN v f 0.0_20.0 all
TIMP v f 0.01_1.0 all
SURLAG v f 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, Type, Min_Max and Scope:

  • Name: Any parameter occurred in .gw, .hru, .mgt, .sol, .rte, .sub, .sep, .swq files 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). For parameters in *.sol files, it is possible to modify values for specific layers. For example:
SOL_K(2) r f 0.5_15.0 all    # Modify only the second layer
SOL_K(3) r f 0.5_15.0 all    # Modify only the third layer
SOL_K r f 0.5_15.0 all       # Modify all layers
  • Mode: The title 'Mode' means assigning mode of parameters, which is represented by a single character, e.g., r, v, a.
    • where val is the value in this parameter file, and originVal is the origin value of SWAT project files.
    • r denotes relative assignment. The true value would be calculated by $(1+val)*originVal$.
    • v denotes absolute assignment, directly use val.
    • a denotes for adding assignment, the true value is calculated by $originVal+val$.
  • Type: The title 'Type' denotes the variable types of parameters, i.e., i - int, f - float, d - discrete.
  • Min_Maz: The title 'Min' is the lower bound of the parameter. 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 f -0.4_0.2 all # Default Scope
CN2 r f -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 basin
  • SUB 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 1 2.1
2 2012 1 2 3.2
3 2012 1 3 3.5
4 2012 1 4 6.7
5 2012 1 5 14.55
6 2012 1 6 21.54
...
12 2012 1 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 ID should be an unique label for different data series.
  • OBJ_ID or CON_ID: The OBJ or CON determine the type of the data series. And this ID denotes the unique label of objective or constraint functions. 💡 Noted: SWAT-UQ-DEV support the multiple series set the same OBJ ID or CON ID
  • WGT_NUM: The NUM denotes the linear weight for combing series obtaining the same OBJ ID or CON ID.
  • RCH_ID, SUB_ID or HRU_ID: The RCH, SUB or HRU determine the type of output file loaded. The ID should be consistent with the SWAT project (which RCH, SUB, HRU) and can be set according to your requirements.
  • COL_NUM: The NUM specifies which data columns to extract from the output.rch, output.hru or output.sub file (Please see following table for checking valid values).
  • FUNC_NUM: The NUM defines 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 COL_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 YEAR means the year index for the data. The value of INDEX is the day number when SWAT outputs daily data, otherwise the month number, determined by IPRINT in file.cio of SWAT project.
  • DATA: The type of data can be int or float.

Alternatively, in some cases, the objective function can be computed without observed data, requiring only extraction of data from output files. SWAT-UQ provides a more straightforward approach for this purpose.

For example:

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 )
2012/1/1 to 2018/12/31 : Period for data extraction

Therefore, the period (2012/1/1 to 2018/12/31) would be extracted.

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.

Main GUI Table List

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.

New Widget Open Widget

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.

Main GUI Table List

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.

Parameter Selection

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.

Objective Define

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.

SA_Setup SA_Simulation

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.

OP_Setup OP_Simulation

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.

OP_Setup

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.

SA_Result

Figure 9. Sensibility Analysis Visualization

OP_Result

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.

Visualization_A Visualization_B

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


This project is licensed under the MIT License - see the LICENSE file for details.

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

swatuq-1.0.6.tar.gz (93.2 kB view details)

Uploaded Source

Built Distributions

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

swatuq-1.0.6-cp312-cp312-win_amd64.whl (227.1 kB view details)

Uploaded CPython 3.12Windows x86-64

swatuq-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp311-cp311-win_amd64.whl (226.8 kB view details)

Uploaded CPython 3.11Windows x86-64

swatuq-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp310-cp310-win_amd64.whl (226.1 kB view details)

Uploaded CPython 3.10Windows x86-64

swatuq-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp39-cp39-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.9Windows x86-64

swatuq-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp38-cp38-win_amd64.whl (226.1 kB view details)

Uploaded CPython 3.8Windows x86-64

swatuq-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp37-cp37m-win_amd64.whl (226.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

swatuq-1.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

swatuq-1.0.6-cp36-cp36m-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

swatuq-1.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

File details

Details for the file swatuq-1.0.6.tar.gz.

File metadata

  • Download URL: swatuq-1.0.6.tar.gz
  • Upload date:
  • Size: 93.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for swatuq-1.0.6.tar.gz
Algorithm Hash digest
SHA256 dcfe99c1f19f52cc6fba0ffb23783f952722850465b45b68c6ffe7e21b4ae30d
MD5 e47f3f02e83b0c87adf02f0f62c99eff
BLAKE2b-256 ced7f1a6ab135c42c99c6ff4fc55ef2f21c03de397eaa5352394d2b5a010e3ac

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 227.1 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

Hashes for swatuq-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ad35608f3bb24122b24157a3e98126e8191202530cf09e0e9fd4860741c1d3c
MD5 a5b79071a850eaa6d5fec80e4c79d096
BLAKE2b-256 1b8f5c17166187e930e77ed6651c1aef703f4203998acad456a2829fb6d7ad38

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 688195542841dcb2471515cc112f02b9aa08df186e2b547dd16756ad9b4019a4
MD5 b920de8a1b72df291caa1635835377b0
BLAKE2b-256 b97fb4e564309f9d622cc13815807e7dbb0b56064c528cd73a7b6f005fef8437

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 226.8 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

Hashes for swatuq-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 539921226b97b9ad695136297d6e75b24aaedc443fd2ca09db1fb6ef0f81c9e1
MD5 383f7e2bd5f1fd2044a30838e8dc5d54
BLAKE2b-256 791ec520c1c36cedd0d8f8289a6f2707f3e004419bf6cf6cbfc734a023fb9efd

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6098f148aba1a6ced102db63168530cab4bb6364f60a5501cfbe6026a0029bdc
MD5 a861603bb58aee955b9bcc7d13727348
BLAKE2b-256 148467cb3888e5406903c6f15a9df4d21533a048c5ffb8429c3083628f57b5a7

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 226.1 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

Hashes for swatuq-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7f8003c1f1be016af42c4da7d8f150a917dc90f70771de55cfbcdfb561353ca
MD5 5d1f82d85a36cfe5406f5f5e0b68dee7
BLAKE2b-256 e3614106a74ca8b84e5794e368d49a7369f161792598c79a50a922bb3f6c0bd4

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f7c9ed64cc2f369c6d623e8b606f48a84a83be60d989f7022826e392f5124be
MD5 e25b6690532b8f779add29f1b6313775
BLAKE2b-256 f86692ae8ee40adbb09c54b5e8dcbba70ea4225df13d4e3e6cff582b66f59f5b

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 225.5 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

Hashes for swatuq-1.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8844c47783b446e196f21051e809a39b4c2862b3d11598cdaba549f1f4f4c62
MD5 e025b168bd3909db8c64a0f14d26ab9d
BLAKE2b-256 8239e19b5e15c2e7c69dd2dafca702840011634064f80a95b0cf8b87914724ef

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dee188104b17609aea9aca1fd2e326efb82e846e596e8de7d098864f1f7f497
MD5 7f07a64fb774d1dfc41552eea5d1a38d
BLAKE2b-256 93521d13e7929014b9c7312bdeefe0b216f4e85af238c6b574203543efc0374c

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 226.1 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

Hashes for swatuq-1.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bc7c5c7cf915d3eca5918e03fbaf9f5251d1836e49c3718c1ecd68c85b8afcbe
MD5 db776639cf8f75a523825a57c505c2e4
BLAKE2b-256 b0c57de9acc8f22f5283ddc0c4424d4b192e5b1c452052dd2f26d906a5191fb1

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89d460abcfe111779b09d6dfc24c9cb27cd100b09216742b6622571893fa21c7
MD5 123c194b30a70cb5607e5febb29ee346
BLAKE2b-256 d3c4d207bb5913fd7ef374cf37d1f4cc2bb061980193af624376903ff4b357c4

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 226.3 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

Hashes for swatuq-1.0.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ff094d2d453d3cf0ca8f7c09ab2c63e7173a65e711a3b555acf0d58168b8cb0d
MD5 1e5060b8dccd4667f56457027f88ebd9
BLAKE2b-256 c089d878ac4cbf1d8b99b63d288908c4313413049d77add370503d0637c2c7fc

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4903f5c7495b0fa40b3238049b1ce9cc93a1ceff73380e8cdc43b611e346cf48
MD5 9e961ac25c099b4ad28e66105c1f3b8c
BLAKE2b-256 1049bcc043943a5a3b73ca1b870bb7b250159bd841a6d37da3908ead267baccd

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: swatuq-1.0.6-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 222.8 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

Hashes for swatuq-1.0.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f23e823307d9ca66a54ea3d2fde8bfc21ae3ab69db1f9ad86fa08147dfe4e2a2
MD5 68cb740b3791983a629c0ca77df08bb5
BLAKE2b-256 1c5905410305d5ba80cf768701822af4e0e98ccb30fdbbcff6eb7cd9a94594fd

See more details on using hashes here.

File details

Details for the file swatuq-1.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for swatuq-1.0.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0fd1e63a69e06b9f686ce0a1e922faaa819ba5c38ec13367d63d175a6987b5d
MD5 54706ffa83b8ff072c9ca33a88b5799a
BLAKE2b-256 ba646d8a686eed85fde90a2c6f275d4568b518c910e55cb3ad9f7c91378fa46b

See more details on using hashes here.

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