Skip to main content

SAS Scripting Wrapper for Analytics Transfer (SWAT)

Project description

SAS Scripting Wrapper for Analytics Transfer (SWAT)

Overview

The SAS SWAT package is a Python interface to the SAS Cloud Analytic Services (CAS) engine (the centerpiece of the SAS Viya framework). With this package, you can load and analyze data sets of any size on your desktop or in the cloud. Since CAS can be used on a local desktop or in a hosted cloud environment, you can analyze extremely large data sets using as much processing power as you need, while still retaining the ease-of-use of Python on the client side.

Using SWAT, you can execute workflows of CAS analytic actions, then pull down the summarized data to further process on the client side in Python, or to merge with data from other sources using familiar Pandas data structures. In fact, the SWAT package mimics much of the API of the Pandas package so that using CAS should feel familiar to current Pandas users.

With the best-of-breed SAS analytics in the cloud and the use of Python and its large collection of open source packages, the SWAT package gives you access to the best of both worlds.

To view updates to this project see the Change Log.

Prerequisites

To access the CAS binary protocol (recommended), you need the following:

  • 64-bit Python 2.7.x or 3.5+ on Windows or Linux (see shared library notes below)

The binary protocol requires pre-compiled components found in the pip installer only. These pieces are not available as source code and are under a separate license (see documentation on SAS TK). The binary protocol offers better performance than REST, especially when transferring larger amounts of data. It also offers more advanced data loading from the client and data formatting features.

To access the CAS REST interface only, you can use the pure Python code which runs in Python 2.7/3.5+ on all platforms. While not as fast as the binary protocol, the pure Python interface is more portable.

Linux Library Dependencies

Some Linux distributions may not install all of the needed shared libraries by default. Most notably, the shared library libnuma.so.1 is required to make binary protocol connections to CAS. If you do not have this library on your machine you can install the numactl package for your distribution to make it available to SWAT.

Python Dependencies

The SWAT package uses many features of the Pandas Python package and other dependencies of Pandas. If you do not already have version 0.16.0 or greater of Pandas installed, pip will install or update it for you when you install SWAT.

If you are using pip version 23.1 or later to install from a tar.gz file, the python wheel package is required. If you do not have this package installed, you can install it using pip.

Installation

SWAT can be installed using pip or conda (if you are using Anaconda)::

pip install swat

conda install -c sas-institute swat

You can also install from the files on the SWAT project releases page. Simply locate the file for your platform and install it using pip as follows:

pip install https://github.com/sassoftware/python-swat/releases/download/vX.X.X/python-swat-X.X.X-platform.tar.gz

Where X.X.X is the release you want to install, and platform is the platform you are installing on. You can also use the source code distribution if you only want to use the CAS REST interface. It does not contain support for the binary protocol.

Getting Started

For the full documentation go to sassoftware.github.io/python-swat. A simple example is shown below.

Once you have SWAT installed and you have a CAS server to connect to, you can import swat and create a connection::

>>> import swat
>>> conn = swat.CAS(host, port, username, password)

Note the default port for the Python SWAT connection is 5570.

If you are using python-swat version 1.8.0 or later to connect to a SAS Viya 3.5 CAS server using Kerberos, prior to connecting you must set the Service Principal Name (SPN) using the CASSPN environment variable. For SAS Viya 3.5, the SPN string must start with 'sascas@', followed by the hostname.

export CASSPN=sascas@host

If you get an error message about the TCP/IP negClientSSL support routine, you likely have an issue with your SSL certificate configuration. See the Encryption documentation for more information.

If that is successful, you should be able to run an action on the CAS server::

>>> out = conn.serverstatus()
NOTE: Grid node action status report: 1 nodes, 6 total actions executed.
>>> print(out)
[About]

 {'CAS': 'Cloud Analytic Services',
  'Copyright': 'Copyright © 2014-2016 SAS Institute Inc. All Rights Reserved.',
  'System': {'Hostname': 'cas01',
   'Model Number': 'x86_64',
   'OS Family': 'LIN X64',
   'OS Name': 'Linux',
   'OS Release': '2.6.32-504.12.2.el6.x86_64',
   'OS Version': '#1 SMP Sun Feb 1 12:14:02 EST 2015'},
  'Version': '3.01',
  'VersionLong': 'V.03.01M0D08232016',
  'license': {'expires': '20Oct2016:00:00:00',
   'gracePeriod': 62,
   'site': 'SAS Institute Inc.',
   'siteNum': 1,
   'warningPeriod': 31}}

[server]

 Server Status

    nodes  actions
 0      1        6

[nodestatus]

 Node Status

     name        role  uptime  running  stalled
 0  cas01  controller   4.836        0        0

+ Elapsed: 0.0168s, user: 0.016s, sys: 0.001s, mem: 0.287mb

>>> conn.close()

Contributing

The Contributor Agreement details on how contributions can be made to the project. The Contributing includes instructions and rules as it relates to making contributions on the project.

Licensing

The LICENSE.md states how this package is released and licensed.

Additional Resources

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

swat-1.14.0-0-cp311-cp311-win_amd64.whl (60.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

swat-1.14.0-0-cp311-cp311-manylinux2014_ppc64le.whl (465.8 kB view details)

Uploaded CPython 3.11

swat-1.14.0-0-cp311-cp311-manylinux1_x86_64.whl (45.0 MB view details)

Uploaded CPython 3.11

swat-1.14.0-0-cp311-cp311-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

swat-1.14.0-0-cp311-cp311-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

swat-1.14.0-0-cp310-cp310-win_amd64.whl (60.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

swat-1.14.0-0-cp310-cp310-manylinux2014_ppc64le.whl (465.8 kB view details)

Uploaded CPython 3.10

swat-1.14.0-0-cp310-cp310-manylinux1_x86_64.whl (45.0 MB view details)

Uploaded CPython 3.10

swat-1.14.0-0-cp310-cp310-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

swat-1.14.0-0-cp310-cp310-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

swat-1.14.0-0-cp39-cp39-win_amd64.whl (60.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

swat-1.14.0-0-cp39-cp39-manylinux2014_ppc64le.whl (465.8 kB view details)

Uploaded CPython 3.9

swat-1.14.0-0-cp39-cp39-manylinux1_x86_64.whl (45.0 MB view details)

Uploaded CPython 3.9

swat-1.14.0-0-cp39-cp39-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

swat-1.14.0-0-cp39-cp39-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

swat-1.14.0-0-cp38-cp38-win_amd64.whl (60.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

swat-1.14.0-0-cp38-cp38-manylinux2014_ppc64le.whl (465.8 kB view details)

Uploaded CPython 3.8

swat-1.14.0-0-cp38-cp38-manylinux1_x86_64.whl (45.0 MB view details)

Uploaded CPython 3.8

swat-1.14.0-0-cp38-cp38-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

swat-1.14.0-0-cp38-cp38-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swat-1.14.0-0-cp37-cp37m-win_amd64.whl (60.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

swat-1.14.0-0-cp37-cp37m-manylinux2014_ppc64le.whl (465.8 kB view details)

Uploaded CPython 3.7m

swat-1.14.0-0-cp37-cp37m-manylinux1_x86_64.whl (44.9 MB view details)

Uploaded CPython 3.7m

swat-1.14.0-0-cp37-cp37m-macosx_11_0_arm64.whl (465.9 kB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

swat-1.14.0-0-cp37-cp37m-macosx_10_9_x86_64.whl (465.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file swat-1.14.0-0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e48fd0ef2c86d4deb2dd4acdc5ac1930857518ce4987f2351d9f99299c9bda54
MD5 2254f525f7f02e44b1bc1ee99e3a7b53
BLAKE2b-256 8c215ab557c082a90328478b5dc3e5a982d8f386b1dc4a14448b93227d1ece2a

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp311-cp311-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp311-cp311-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp311-cp311-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38b357dee32f903423405158d3591d40d4d4d3015a73071c6bc59956edd7a818
MD5 472739dc6e382689beefe04c4380e242
BLAKE2b-256 e7430471f14bed0c4257258ace876a4130d5e777e5f677e16094848ab24aef4c

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp311-cp311-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp311-cp311-manylinux1_x86_64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c43c52b6c8eb4e3b313142e0d9b647fdb1665931d3f4f17903bab65cbdb7759e
MD5 d4ae97083930f7ff3585508e6314d97e
BLAKE2b-256 82b03cdc766d33af484af51a8883880d25452a0bf98c1c60bf62fb1b60956d69

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff430ff50b1bc7827fd11215c287806989eaea93331f96de524514e095890069
MD5 1f8472b3c26db14dcae7535ece1e3116
BLAKE2b-256 d5b84093a7703746783eeea7ddaf08ee02f07922bfaa3c0793ba6a5df50bec75

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53ed69b6ee00e005afd5f929c93950a094face0a1042bfd0dc769ed2da93961b
MD5 2b03fec8009386bb95f9e5835734184b
BLAKE2b-256 593ccb00aec27b7e62a6aad89e68005d83fb85f2fbf8a93e8b89d177bd015d0f

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b47c49cb745fd697dd42a5e0c5f3d52a4119724ff5b991e886a44ca1483be1f1
MD5 67be10f999dabd402b93b7bb57cd2969
BLAKE2b-256 0e4413be00ffb48b9bfce4e1670b3a59beb847319c87d7ef6f98f4dec12cdeda

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp310-cp310-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5ea62864431eea399181b36b62274a82b5b61855a2089c94387bfab630c1c94
MD5 497eeab02309439854db4b0bfadfa433
BLAKE2b-256 bf84480fc836c6feababa8d513a67a5f5bdf6b410bb37c89ab4fcc99d5e0dd0e

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp310-cp310-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9b733c57915a4644a329642baac4a7198148754ddfb82577be971eed835cd19a
MD5 d59bcc5950c7b6e78a974666c8addba7
BLAKE2b-256 da2429937e16e31c8cab42d6e58cc59304ca1e91144e9ae70c96cd4aeed7a733

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35646461b2a4b78d2653e913121ebb4dd700f1555c95dbc8931ff51214134ec7
MD5 bee521a7048cfa591925d77c50608b3f
BLAKE2b-256 dcd02bc316a051901fbb020fe7b49f71f5ca855aff63002cf200335aa87c9b7d

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ad862f5adf5f145c91e3d7f59c06e8a44da47845ba822075798ea4f4b9d335e
MD5 0addd6a450efa1290cd2f9cb989e49ec
BLAKE2b-256 d434419090020a6771797a4709bf17bb7ac6766430a272cc5dbc24f351d9724d

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9c755b19b7db3448cc52b193efb999811e08648e6b2534e91da1e1a23c597533
MD5 31342a3e633812c5ff52d88bd6d3aeab
BLAKE2b-256 fe7200410d30e3842a0faa6d3bc33ccf8423ba35d147297ac9700ec372e773d5

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3dbc6d78110049c24e28d68f523756dc9c3e4fcc922d05525878ae17fca5476f
MD5 4d45e312bcb490ba3ff36b30c2c616d8
BLAKE2b-256 c851de4c3ddde53cd5dd4b893d01bc2ba1648023b6ab678b6be3c4c1f801ee16

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b9da2e832436811219f51a8ccc6ce7dc7d68e12c141fe52fd5ec0f1c5f7c0160
MD5 ecdb6085be2266550c1c036768923edf
BLAKE2b-256 17d414720be41a0c146c7b2ef35b57eaeb8e8808ee546b17b707e7a8ba53fd20

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ed121962ac43e0beccee842f18ab4e44c1f91d6926af2080ceaa321532a154
MD5 dd973529fa793f7797c4d60d1fa3c9cb
BLAKE2b-256 5d515bff3677e78226949ca3559278749bfebd3de5b551707b5385a6de61ff6b

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97de3ff95ffad38827e173fa0d251bbe79c114aed344fda765706d5d598191cd
MD5 fe9a6b2f6e8b006363a3ae147678a15a
BLAKE2b-256 e0d6d4d96c91b8bf2427c1aa79050fa134ecf562725095a7ab74727d701b7b69

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 165c2da47eb1d26f19dc7604ed6307f5f0c5ea4bcd6e3d7c4582e271baf5aa3c
MD5 7cb8a93064822482b7dca8c91bffc898
BLAKE2b-256 87e689cda3bc10c3cd3052dfffadce5a2eefe1ab7257636f4b1cf7ee7979b4b6

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 341c13a10c255818f9cdaa70a30a6a6742b4780d469aa7afd25758124b1c21ee
MD5 0f55d34511dfb7369fdb933a5c474b6f
BLAKE2b-256 86d7198b306ec374c89b37b112260ac0eb9de90d6ef4a1c0dcbff28fbac065c0

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8edecf360c637fd3899a5fba823925bb74a85a6c8e7f82595be4f59fe3c3e92
MD5 ad0b12e6e2a6f948da8dc4e4fa3f205e
BLAKE2b-256 d7b2a928f803c206817b0d90f0599359e73c3a222b8d8f150f1299ae8d7be713

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f938bbee3697b4370a1305e93e3a75095b89fa34450e9431d93bec9f5c5902e
MD5 4cb621f1fe2866a72cd6f69234fd253d
BLAKE2b-256 66554960eaf91ff92b2dbecee05d442e656dba91529a53dd92e7719109972cb5

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ac71b81c6af7d8eaaa8eabe3f7a825a5e465027b9b8e45754c85d3f5441d77f
MD5 e65828783944d9ad4c6211e2f0fb3086
BLAKE2b-256 8bbc596f3773754f2154f07f6e51afb56ad4dad753e7bf65aae8979c9e990c54

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 60.5 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 75e07c3a628584f7d38949d88bf7b27d9fe85c7510c5d9a1e934c9b5c2c7d273
MD5 7a06eabb2c06daf8d6829adfb2af0a55
BLAKE2b-256 038a2ce06202dec946bc6951910f75e8b2a9cf69ef293a5e5c40a368eeeba6c5

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 465.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3aaabf4985a3485831823e6d9027a131e29d549e7578e1c45b58ac426f8ea349
MD5 2b7bfaca66f53fef1a01be952655dd61
BLAKE2b-256 3a16ddf47a41bc87b04285606b1ebd929d45904c65210af7213bd92e1081dc76

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 44.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 44b50c713d898cc85f58fb8c66fc3ea599408dbf5cd35d9f2c1515de609f0131
MD5 cca44da2743a28f377d38ba174e4c771
BLAKE2b-256 b1e6e0fd5efc8ef746c651b0a88396b04e42936c531ca26cefd026ca90780dca

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp37-cp37m-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.7m, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84844e171f6bbea508c15b1a00617b92bd09ef8167e6c472a2e6dc7df2537978
MD5 7b0c564951382453eadb2338ceb9f941
BLAKE2b-256 55d4176bd5f7b71ecf232ad39e3a77d25ade2cda2bc912c8cf1498fdef8ecb44

See more details on using hashes here.

File details

Details for the file swat-1.14.0-0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.14.0-0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 465.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for swat-1.14.0-0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56283b546e77698f417e221d3deb898701b3d6aae8b39a59b556b73b656b1b53
MD5 98b805f82313c7f1afca53ecdb80b9d9
BLAKE2b-256 c922d18e40363fa21f0dbda6739566d65eef04778701a9a3cdc4ae2a7236fd74

See more details on using hashes here.

Supported by

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