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.7.1-0-cp38-cp38-win_amd64.whl (49.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

swat-1.7.1-0-cp38-cp38-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 3.8

swat-1.7.1-0-cp38-cp38-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 3.8

swat-1.7.1-0-cp38-cp38-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swat-1.7.1-0-cp37-cp37m-win_amd64.whl (49.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

swat-1.7.1-0-cp37-cp37m-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 3.7m

swat-1.7.1-0-cp37-cp37m-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 3.7m

swat-1.7.1-0-cp37-cp37m-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

swat-1.7.1-0-cp36-cp36m-win_amd64.whl (49.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

swat-1.7.1-0-cp36-cp36m-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 3.6m

swat-1.7.1-0-cp36-cp36m-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 3.6m

swat-1.7.1-0-cp36-cp36m-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

swat-1.7.1-0-cp35-cp35m-win_amd64.whl (49.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

swat-1.7.1-0-cp35-cp35m-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 3.5m

swat-1.7.1-0-cp35-cp35m-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 3.5m

swat-1.7.1-0-cp35-cp35m-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

swat-1.7.1-0-cp27-cp27mu-win_amd64.whl (49.3 MB view details)

Uploaded CPython 2.7mu Windows x86-64

swat-1.7.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 2.7mu

swat-1.7.1-0-cp27-cp27mu-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 2.7mu

swat-1.7.1-0-cp27-cp27m-win_amd64.whl (49.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

swat-1.7.1-0-cp27-cp27m-manylinux2014_ppc64le.whl (73.0 MB view details)

Uploaded CPython 2.7m

swat-1.7.1-0-cp27-cp27m-manylinux1_x86_64.whl (38.1 MB view details)

Uploaded CPython 2.7m

swat-1.7.1-0-cp27-cp27m-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2176e9dcb5e4f27fa06f462c5812d7d3b923c78dafbe73b5d882ebcbba97c9f7
MD5 8162ef3e4be8e8ae57d8462604e37f68
BLAKE2b-256 f7f362185072e7df75f35165460855ab22d85c7e82c431ea64dc09c2b0c1300c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.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.7.1-0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6867b48cffca152534b9710cd63fee96caaa220b93870879527616e67aad136b
MD5 78bf193d964e99503e8b2e9f37d0b4d9
BLAKE2b-256 00e410c1669b01a10cfb76d6b249adfbeb95bd36cef16461585d608613e9e7bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d5f4256dcb8ce49d1373d6e6191dca1721b923e406219aaab7cbe5348fc907e
MD5 124e9ffa61e38fafaee6309d3f6c82af
BLAKE2b-256 f474417cb7d79a583df6705089ffe6f95e71f9f3b5691388a33a4f487518b99a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 453.6 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.7.1-0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e0d9f802b5d251aa753b0c4e4996783d2d6ad22bf030d1c5fba2c93ace6fdcc
MD5 b1f6be876e0c0b917b8b4289b733c370
BLAKE2b-256 a414cf32c025a22ec0e0098e66f427fdcb3aafcdca1b09ca115772939fc78218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9a6b3cbfd94aee57f55d224fc536d3411aa62b1065d62d15226afff93373d561
MD5 ca4f9e57bed0cbc81a9f4b545190838c
BLAKE2b-256 c122f2c3286458a906d0f74c05892b3dc6c56c57db0facd6385768a4e5248973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.0 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.7.1-0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fc57fc7bc55587524e758172afc135a0ecad1b68ee763a0c59bce6d2fd9af13
MD5 799417cf0707d66de6c40ca21c21b528
BLAKE2b-256 afc30d40cc94cc6af7a61e7c0754dca44ab36e3a2daa390fd735d89c0ca61a20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff98d23897f52c1020dd0d9b1ea20d11ea0b987434a0e88c49586d1273789959
MD5 3d84faaa5fa4d4c1473c1961026f24eb
BLAKE2b-256 573230d5049a7833128fa272c3056f5db50c953267797a7434be7bab5b98d675

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 453.6 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.7.1-0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aad4aed772d2927dce8deb146da5224b58a83d39b915b9e7ef44ebc6f2adf355
MD5 036ec2baf5a65592bba98cc4eb484a94
BLAKE2b-256 131e608507c432c693b8aed5439be209d63b0d5d1afb621e6500a72ec71e2c6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e0699965ce8668a8cfe4e7de44b3fe93d766d604f8d1fb57bbef6359d227f268
MD5 a0662389c951bbfe134690b9188650d4
BLAKE2b-256 0f1701ba8400ca6a21e482613f52cdebfecc86cf52d69306376e4091677573db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.0 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.7.1-0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07eaa495edd76a8efd880b8bedaa40f59ae7044400fd7abaaf61a47fefa87555
MD5 e0a921580b766010269fbe1cc8a47fb2
BLAKE2b-256 465c8a3831325ebf74ca16978b4e34fd9f32dc2b652be06e34c418dc6e53092b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 54d22a654b09643ee1e7013d3fcc0d2f4db1691e557bb483e26259d61cb237a8
MD5 1e58047f624e475d4bccd918ec46a98f
BLAKE2b-256 bd188008a0f54821ccb168e1f43a78615ae6923825e374e82d80229b176f5eb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 453.6 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.7.1-0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6a1070c55716083bc33004c80b23889a55b65d93be420b73f2b9141573cd60a
MD5 91f494ba01f823ecb56bbbe023d05eaa
BLAKE2b-256 c19cd0cfd4b28080de00f9a43d8e7d16f993fc563d6c62b1cea384e095b9548a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7ffef8e042270edb0b8e4b29dd00b56cb83ead612811a880189c8bab71f14d66
MD5 706e19bb4d8f5fea2d29151001102ebe
BLAKE2b-256 c08e306411b60a0d4f04fb425f26fb6243541c8ff268fdb1d6e28d896dee103a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.0 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.7.1-0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 027a4c94776724e076b8d17bc4731ba8712b396a1d790d34f60db79254bc7fb4
MD5 f8ef88b0643d008de1f1af0056a6219b
BLAKE2b-256 9cac4d2900721280b18294ba7d08f2f196b00a2478bc5976c8bb891e17985fe2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 817aa48a62754284e16ccbf7535ce0cbe7f78a12d7b8820a3e9d38eac4e68631
MD5 92f011a288675e505c5e2244c4edd688
BLAKE2b-256 4b58d138de246a16667568c84be1321544e2298996df7edacfd35f8088a24716

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 453.6 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.7.1-0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31da56c7e9c88f0e42d78a1dbab763e3339b22463865fea365e620996c21cc5b
MD5 6e530c15ac41764ae40c69f493c81cca
BLAKE2b-256 b319a03cf00f3c656b3a04c2bdd2fca813bb20d0e73e6f6de8825c8e953802a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27mu-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp27-cp27mu-win_amd64.whl
Algorithm Hash digest
SHA256 543b389b5aa2ef6da75d6e697d243b6e8a4a29222547f5635d31985bf62ffd6b
MD5 68b8f96034e6aba62504dd2b3b3ef3e3
BLAKE2b-256 82890c5f5d714ec870ac8ef604f3216d6eff2224a12cb5eaaf0134e29a671284

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.0 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.7.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 323ab57620c40456eea572223e349d82ddfa082d62a1417ee6f26b7f9faecf11
MD5 3ab00834035a926821c202575445df61
BLAKE2b-256 f76458219c23a3edfe11aadf1b76aeb84d8988cf587c6703243573dc61cd0432

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bdcf5c4309d4178e3f8c29a7398deb597d459a0d1bec9ddfad3b2defcbf81463
MD5 a5e9ad7c294ad25cf51ac060ceddfde5
BLAKE2b-256 36eea5090e513dac8c5617fcce3e9db8bfa45410a7e1661f31458d3af96a337e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 49.3 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.7.1-0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c1a5609267f05c6ae978c3661cea32b4d655ed9087367c579bc9d21d3ed877f1
MD5 8f50ea32e3ea2a621c0a0afacbb5db4e
BLAKE2b-256 0a917313a2618f2fd24d1df128eadac2ba89e48be4d3540b619f9e7bf2cc2448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 73.0 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.7.1-0-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e21184b6db38e07f908b297b0a55beaad06a0ed1511cc2e3d2282e42ae4139a
MD5 783c7e623625c25ccef7379285e1fd9d
BLAKE2b-256 6ebf83893be445360428994309030b1e7bae7e248997a1e3cfe849b72e1e8b8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 38.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.7.1-0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b69a6ab72d0eb2184f212acd21cdf2784d58013d011737dae4f30fa8e4938a79
MD5 1ec9ba3f38f5db9e9a1b4e4dcf757f08
BLAKE2b-256 72ea4d8a1b77f1272561eea8f630f37a5eb1d6f1886f6ba35e594c60de598474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.7.1-0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 453.6 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.7.1-0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5307cb341e678f6925dd7561e21812d960d437fb6196f722352660c6cb0c3ab7
MD5 bd8b8b049b57043f3ba033ca86001372
BLAKE2b-256 11a90613cd1579e82b4c0f84125f05279d69afc36769a60b9f92493a6a66592a

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