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.

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 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.9.3-0-cp39-cp39-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

swat-1.9.3-0-cp39-cp39-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 3.9

swat-1.9.3-0-cp39-cp39-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.9

swat-1.9.3-0-cp39-cp39-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

swat-1.9.3-0-cp38-cp38-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

swat-1.9.3-0-cp38-cp38-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 3.8

swat-1.9.3-0-cp38-cp38-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.8

swat-1.9.3-0-cp38-cp38-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swat-1.9.3-0-cp37-cp37m-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

swat-1.9.3-0-cp37-cp37m-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 3.7m

swat-1.9.3-0-cp37-cp37m-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.7m

swat-1.9.3-0-cp37-cp37m-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

swat-1.9.3-0-cp36-cp36m-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

swat-1.9.3-0-cp36-cp36m-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 3.6m

swat-1.9.3-0-cp36-cp36m-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.6m

swat-1.9.3-0-cp36-cp36m-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

swat-1.9.3-0-cp35-cp35m-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

swat-1.9.3-0-cp35-cp35m-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 3.5m

swat-1.9.3-0-cp35-cp35m-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.5m

swat-1.9.3-0-cp35-cp35m-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

swat-1.9.3-0-cp27-cp27mu-win_amd64.whl (50.7 MB view details)

Uploaded CPython 2.7mu Windows x86-64

swat-1.9.3-0-cp27-cp27mu-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 2.7mu

swat-1.9.3-0-cp27-cp27mu-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 2.7mu

swat-1.9.3-0-cp27-cp27mu-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 2.7mu macOS 10.9+ x86-64

swat-1.9.3-0-cp27-cp27m-win_amd64.whl (50.7 MB view details)

Uploaded CPython 2.7m Windows x86-64

swat-1.9.3-0-cp27-cp27m-manylinux2014_ppc64le.whl (457.4 kB view details)

Uploaded CPython 2.7m

swat-1.9.3-0-cp27-cp27m-manylinux1_x86_64.whl (36.1 MB view details)

Uploaded CPython 2.7m

swat-1.9.3-0-cp27-cp27m-macosx_10_9_x86_64.whl (457.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 50.7 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.9.3-0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84c87e579918bf677ecca095a9fd09a4fb2a0aff8a4ffbe297b1d6d5c37637ee
MD5 f7ff4f6dcd28f09161b872c331957ea6
BLAKE2b-256 05f8fe6597878593e0c9180d514cb79005bae248aecfccca237d476748ba4a52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 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.9.3-0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0975f05568e66e3e92ea470e3a7dd9779d666d6f56683832ad29331911baaaa5
MD5 83309b3ac80e1cc77beb1e9dbb1ff44a
BLAKE2b-256 98651a2929360d2cfa5591d1d2f97aa506379531319675c78186932aed870f8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 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.9.3-0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fc204c6035eb247c73baf3a63f90b794f8d1171932c2c5b2f7ab5c0212288eec
MD5 4bf7ac1d876628d26e2c529be9947107
BLAKE2b-256 ee4f7d84803c5600c111110364f36999060c6311bbfd984ca0f1cbbdca0a520a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 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.9.3-0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8135f597df6b181fe556a84c3fc8ce37bdf5c841b607834e4870e943efa5b6b5
MD5 70b61b08f4bff5c5d0f7c5f6c6b518dc
BLAKE2b-256 41de3fa5d4f460ab3b94fb62ec5d92d9c4272302e5a206e731565c32325a5b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 50.7 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.9.3-0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 147b86beaaffcc64e68c5cbff1f6164280a7738b8c87453b2bf2b2ff0d3d15f3
MD5 fbeadc38411be52870a66689f8b183ed
BLAKE2b-256 46e02ad8d4d282ccb4bad9a24a868fcb57ec58eecd2b405f7218cd1b9155c5af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 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.9.3-0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e0c8e011711d3324c6044eeff8b1405e22b779125c8f72194eec8f15c87cb2b
MD5 4751cce300642c943c7e7e35650863bd
BLAKE2b-256 5c0bc94dfd42b8b094d2e50d7c8ba25b8b4caeb5c9b0ca2d6b86cec05a9eaa95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 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.9.3-0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f19ede9916dc3608a94c1ceb8defa67221595ecad76db1f57d28866941b757c
MD5 abad5d5198b6644a1718f5c21368f256
BLAKE2b-256 3d6a1a8930f9b15cb922564911af168be3e19376b05c981e1c24abb8706b789a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 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.9.3-0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbbf43d0eed294cdc266699dc2afabd39f8e52b31ad34da304951c2f1841b78b
MD5 6d5f026715a1349d8b19d28a2fe97039
BLAKE2b-256 2d32e857e2ba339c9bbbe59eb32732399571c0ca55b9e31be17a9ab15fb9538c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 50.7 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.9.3-0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 31020b7a36d325dc1501687d8a8f5507ff743750328b23194d319e58eecf3279
MD5 7c4f8892e96adcac4e5487be962cc6fb
BLAKE2b-256 d328aadd146e08bf6b00f9c1d1e9fc1667613d42c366f9a58953a28c6c75b4b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 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.9.3-0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8becf986fabdf61af5046b9e38d5f5979e29c146a081a58c2733f25733c6ec7c
MD5 4b6b4ff7cc85b6247df6bddb26642512
BLAKE2b-256 25f29dd269fb5b3f706fff787c24ac965fb2cc77775bdb82646eede0623d8530

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 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.9.3-0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 afc4e942837b1565c74273be5fe116e6b63ab8fb3334fcb445936b77b76afd67
MD5 41b635596923e34211141c82bbdee00d
BLAKE2b-256 12576a843ab0e0bec5f35b26fa7188a6afa7d4a080eb005fe3f361dc8bcf1a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.9.3-0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 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.9.3-0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ace4ddd5346fb501d586ab1468cfbb51960cc55575f2c497978cc020945faa2d
MD5 055a2918e4c5db1700c9a95bfbc0c011
BLAKE2b-256 0a9f0d3f47242730912151a78501baa002822fe1d448e880e203dceeb52062b7

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 50.7 MB
  • Tags: CPython 3.6m, 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.9.3-0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dc8043dbe071b9e253ad3e0c6692005eb8e842953980867cff234417ccd1ba44
MD5 641a4d09bad9354f919985ab8644807a
BLAKE2b-256 bfb0cddd8dba949d51915e7660df60dd15e25f9ef45cd8b783e119b36d47a24f

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 kB
  • Tags: CPython 3.6m
  • 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.9.3-0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e518541ca1b9b9866fe300a50db75c101a7b806d8f0eff43fae7a009a40cd623
MD5 6ea28d46fa0ec4c37e054e6566ee7950
BLAKE2b-256 18a2ed26eb7022bf3521f7696ca565b378a552735c4b565974d90021570e7f5c

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.6m
  • 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.9.3-0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24b9dbbb7a6d1419929d3ba873f0f59a70ed11490ee0c7fc910a72e802a0c3fb
MD5 dd78a3cbe9badf9dffe781132806eb46
BLAKE2b-256 ff04f1688de0686c96bc4e3491a45dc62b7c73b55c3178c1f139a99604af0e7e

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 kB
  • Tags: CPython 3.6m, 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.9.3-0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 168f7de16e01e74aebe4d494aad7c4c9f6b54d1f8e3676ffcf0384722a90bf76
MD5 ac3c21bbfaa87be59b0ca490df16de83
BLAKE2b-256 a1ab6ff04ebbb570600a808d7e9c5fe18836c6fbf293c3534ad96986830c033c

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 50.7 MB
  • Tags: CPython 3.5m, 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.9.3-0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b4f199f306b4dbae7081efd23bc14b4776c3ad492931842444a8c50bfd91c8db
MD5 63956800110560c49c32e6aab9247f50
BLAKE2b-256 cfe7bcdbed64a6527c2e213c422fe5e4c04dd416cc576b1afca787c64c82be85

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 kB
  • Tags: CPython 3.5m
  • 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.9.3-0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38b7901722c18cb511f6808e093b42440b2af5bd4f0890230f9f0d40222fa7cc
MD5 c1be92bb52a61a1a748f7abd68b8b001
BLAKE2b-256 f244bedf15dc0eeb5c62745aa80b7fb16011637108486436d175d873350a9c1e

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.5m
  • 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.9.3-0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71b98bf3cd0be2928f2d070b0ab1e4ee8d055611d52966af3b4db7115ff6d5f8
MD5 46da05ede8f88c90c4460525c6417087
BLAKE2b-256 baf3c328ac3d4c8522e1a9f6b9e32e5b39fc84995d1853247d36bfd696680199

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 kB
  • Tags: CPython 3.5m, 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.9.3-0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffbb9307d59a6c92bde9ed30823a992ae7779a4ebf661a400c13ab8aad56b431
MD5 b282d2f38e6e2860d796a1e6a7b42543
BLAKE2b-256 9889528ba7a95d093d2f5268ec667a0dc96ad9634d2f7b225d2ae15f7c4d4075

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27mu-win_amd64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27mu-win_amd64.whl
  • Upload date:
  • Size: 50.7 MB
  • Tags: CPython 2.7mu, 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.9.3-0-cp27-cp27mu-win_amd64.whl
Algorithm Hash digest
SHA256 b19d130492f984adf87d18c6a4d3b8dee6607560ef7c1df8d829d5e422d79186
MD5 5712224b1ee8dfabf8aafd416b0cb7ea
BLAKE2b-256 85909b208625bb29b78f1edfea664508bd9d8acf338f41a9bfcd68a380a75e74

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27mu-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 kB
  • Tags: CPython 2.7mu
  • 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.9.3-0-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 381676bf4c97faf3e4dcebe6f19a1cb317261170a19d1c4a7bd2f41284f4550e
MD5 58508c74a33aecc6995cb206a83affc8
BLAKE2b-256 e7f8d7f2537dd9cc4cc3fc2e2212f187821077be2d864a725c6a39ca6017db6a

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 2.7mu
  • 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.9.3-0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5acc82eec118dda7200f14ccbf7af34887a66baae8dcfa4b98031d82e3821502
MD5 f9f08337208d24d33ac555955ca80cee
BLAKE2b-256 cb4e97912fc0ad7781dbe0e22a5d901608bc62790fda89fec15ef7c4d5ebeb98

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27mu-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27mu-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 kB
  • Tags: CPython 2.7mu, 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.9.3-0-cp27-cp27mu-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3730993f7b22e7328aaab42c9bc9b30ab266bad100e027ccbc1060914f265c95
MD5 b61a3a10a97d2c5b39c27446a3a825c1
BLAKE2b-256 ddfabe2a971eb2a50d88d285c691942c7c404da44f045611b73058c9d684b753

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 50.7 MB
  • Tags: CPython 2.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.9.3-0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5ac4d9c8cf7fbb5844dfdd8a78eaf6e9f909a0d52d4eb148fa902a3d57cfdb7e
MD5 8c2469bf7fa271a8aa156faa360bc9ed
BLAKE2b-256 255ff0f1a992a9001c74c55d3d541ec8c61ab97bf2ca8ba1ad35ec866cd1f9a5

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 457.4 kB
  • Tags: CPython 2.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.9.3-0-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 426e42b2634ecd8054de6bb521e921d2b5b44ee7ebc7491424d4676354f2024c
MD5 7d4c13e944e11f601432cedc3ba4aed4
BLAKE2b-256 d86c83213237bc144b4c7e6d4bd958da3ef8f7fb1537a04d715f36b3aa4a329a

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 2.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.9.3-0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7e513173a19e1c5bb683cead8c6fbc608b8c5c78a4a28738e01c0cb5cd07854f
MD5 d96da84aa3f50b6d178a6649a98c7533
BLAKE2b-256 2f43d5acd2b1e9df7f1d2b1f2ff7b5c4b33477af11a3cff49bb845721f277f3f

See more details on using hashes here.

File details

Details for the file swat-1.9.3-0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: swat-1.9.3-0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 457.5 kB
  • Tags: CPython 2.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.9.3-0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2383b2988cf88136ecd79d0836e5c248866839e852e88a4370d0d1b1091ca7e
MD5 37212ae09ea8ee83a5b589a7daad2e9a
BLAKE2b-256 1e721d6493282afd57ba1a1e1b8dd582bca6dbb28d1fd27f765d5af11062c64f

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