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

Uploaded CPython 3.8 Windows x86-64

swat-1.8.1-0-cp38-cp38-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 3.8

swat-1.8.1-0-cp38-cp38-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 3.8

swat-1.8.1-0-cp38-cp38-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

swat-1.8.1-0-cp37-cp37m-win_amd64.whl (50.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

swat-1.8.1-0-cp37-cp37m-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 3.7m

swat-1.8.1-0-cp37-cp37m-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 3.7m

swat-1.8.1-0-cp37-cp37m-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

swat-1.8.1-0-cp36-cp36m-win_amd64.whl (50.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

swat-1.8.1-0-cp36-cp36m-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 3.6m

swat-1.8.1-0-cp36-cp36m-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 3.6m

swat-1.8.1-0-cp36-cp36m-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

swat-1.8.1-0-cp35-cp35m-win_amd64.whl (50.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

swat-1.8.1-0-cp35-cp35m-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 3.5m

swat-1.8.1-0-cp35-cp35m-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 3.5m

swat-1.8.1-0-cp35-cp35m-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

swat-1.8.1-0-cp27-cp27mu-win_amd64.whl (50.6 MB view details)

Uploaded CPython 2.7mu Windows x86-64

swat-1.8.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 2.7mu

swat-1.8.1-0-cp27-cp27mu-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 2.7mu

swat-1.8.1-0-cp27-cp27mu-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 2.7mu macOS 10.9+ x86-64

swat-1.8.1-0-cp27-cp27m-win_amd64.whl (50.6 MB view details)

Uploaded CPython 2.7m Windows x86-64

swat-1.8.1-0-cp27-cp27m-manylinux2014_ppc64le.whl (72.2 MB view details)

Uploaded CPython 2.7m

swat-1.8.1-0-cp27-cp27m-manylinux1_x86_64.whl (36.0 MB view details)

Uploaded CPython 2.7m

swat-1.8.1-0-cp27-cp27m-macosx_10_9_x86_64.whl (456.1 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 30bf50fbff32d5f84cdd567e07efdbb530f88d521cb8fca0b09ed9632ebf3f19
MD5 a51b0a560ef95e537020577594bd688a
BLAKE2b-256 a293478047f4ae99b4b004835cd2e98f82169d6648820ef3a965a0c6766b94bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e88aa0046060054c93e8d5d476966011b4a236a7923c6f29a3656581d819ef8
MD5 826cb55b2938bedbcf4da5c97fb85903
BLAKE2b-256 2451dfa8a016195481a804afcb546ee56b25776c6d5b190c925be345585c3180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a87dbda7dc28a3ced0ef726deec59eb65b6cc058ea88abe60d849ee80e5037e
MD5 4f340314f2e9a703a138ca135bcc2b82
BLAKE2b-256 32e1a1a214f9f1b8301e7c976198dac53b0c9467633dd7dcec6e58cd9ec0a557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8cb02c3a18ccf1621a506457168609bf97816ae4594aaabae2b9f437b064198
MD5 bde2dbba0470d4d3b3a01c0f675cc7d6
BLAKE2b-256 aa95b02492248886bc8be3cd03cf6d274152056997009a0d68eb84609ef778b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1bad5788695481a5f5449fe02a3726fdd507d3dca9332867e06810211d168bce
MD5 48f86196f34810b55393ab05416031c2
BLAKE2b-256 20e25f4ebd245683a5f028d5b42a80ee11a932753ecf548bc3bc28a2ebffbb24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58d22a49d3e3a8f7982bc2af84eb7c7ac791b759f9007fbe84fad8f09c604962
MD5 835b6e20a286b4d3eefd05eb8787a010
BLAKE2b-256 919e9a9e1f5c273d13fc1d920f8f0d74f8942b5afda89d503436809d64108b33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ef3038cd8ff30b86f830edb9a9b3076b8338847bac70eae77cfa076cc26668a8
MD5 af767cb6398e315e800f78af7faa10ce
BLAKE2b-256 829ba1ec427325d7453f696b58966c0fd3ec0d9afd045bb285cbc97bc540f4bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c37f847b2d72ef47895e8d2b61dfa85d216f9cc2f5c8e10ffe71fd6a7268c4e
MD5 895533214e58b5a41a171446250d1c8d
BLAKE2b-256 aa1ef36d14692d3cb9023e698dacdd7a4ac0d2556542f8a1b90d40b36f0a7938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d28f290f3bc2a7dc58dcb449f50a8a39808fa4f1475b5ac79ab83e59966ad349
MD5 130b34bb9f9b5237edebc7228c0ab66c
BLAKE2b-256 854a5a3c8dd673899d7e2ea34044865eda6a37d8eb98250664d125801985a49d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ffe6d22309e8eb5185b4a9018ef23dbb3869f524362508eef36b75756bdd814
MD5 3a7daf02f92cbbc966f7cb4a1fa6ba1d
BLAKE2b-256 81534805037538804f81605d9ce6e758b6e3bcf3824764c2b7f2ff3df0b1377e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ec1f87f4cd1c4205715c4bc0a82e17d3caeb74433f5e331ccc50ac9be1307321
MD5 d591312379e10bd31d2748580f7dc4cb
BLAKE2b-256 4a3809c1a7c0e527e9403565c415df3d9240be3fe4f311966ffaaa3a76c9a46c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c278ce43e00170c2aa925dcf1a2e5512cf4e81c841afbfe2b82e047a90944fe8
MD5 78cc5caa5f4d54edabfc580ade21c2df
BLAKE2b-256 c46100ed803ebdbd7e4454e0d533c26d048347b92cf0b8ee865bc5a6a1f040e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 090e3fba8dc23005261ccfe29aaa8cc7ae2b67ea6dd84d88a005dd689b21ee26
MD5 ce36d4fe2b94da271511649b6f5bc9a4
BLAKE2b-256 115e2b9a8b171f773f1ca4039187660fd0781d89b728aa25efc1d7101bb6e423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ab0b44ae894b660d67deee592f76d26d3a59fa8c7c8d547a73fa87e4233a367
MD5 5abc4b712e01ea70c37f028bef20474f
BLAKE2b-256 fc06fa1da05428a946abd4d0233dd6de579d90fd86120fea280d1785cc512fd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 827922777176ae5e1af037ef2c0b25489bda5b04af1eb658663b98916d0d6462
MD5 103d913e99d4705271969a8d36f7f36b
BLAKE2b-256 6573e4ade4d25debfd1d59d34935b4801f45107fdf38ef001de19ed1efa25aa4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22dec6ce2cce100b5c05a4bb86420f5b9b87da40994fb119cbcf60ebb409b594
MD5 c03cc218be6fb189b51a7c4582b0f22c
BLAKE2b-256 14f95303b65182aba5e8e90a6be6a807ff17c4ddff84211bbd020b8614a0d863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27mu-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp27-cp27mu-win_amd64.whl
Algorithm Hash digest
SHA256 1c9aa035a4767e59fbec3349b9dcaaf3ebf8235ce104338b2bc0778351c60200
MD5 e44247786de6e32dafda130deb28d74d
BLAKE2b-256 d4bef02ef16c0b0c57af96365ed4a290cff9b74329f29fc29926211de2979691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp27-cp27mu-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee00571dc7eb4a188dd3b5c822f1954c6be3587cfb02f7cbc905e6425c0832eb
MD5 d02f0e54d3a7ef938faa756aa367035f
BLAKE2b-256 fc1475fb3644a81efe018711def5375c9e00e50f66fee3faa9891352dcc78cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbd98f1da87cbfba469c9147f07a41e060bb1fa9c3c6c591501acf968f5922d1
MD5 71da60e34cd1e8b81e0e1d2d62162a5b
BLAKE2b-256 c4b64e02201c7197d8323760f08b83a84e568505258c60b139a9760790b86b01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27mu-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp27-cp27mu-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71a0ed5b069bdf6f6cc1b2a7b9e933e6286e2996c02998ca07eed6169327a457
MD5 112d561654480ae371c87f274f5068e7
BLAKE2b-256 fedd4f25a07d4c2836ceaca14063e64b8d55a72a5d6b73689625294d4f31eac5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 50.6 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.8.1-0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b514dfd07c6eb0a2487fc546de237d8b7023f5b478980f2d763b6faf30928369
MD5 b999b6bd9dd2729a7ed3b2bac8b519f2
BLAKE2b-256 5c86ffd8ec8824f392942106da9c93007b59f119080f2a4576099c7bd921c537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 72.2 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.8.1-0-cp27-cp27m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aeb252362be0f92c7e30ce81b1a632f910a0afae3c961e8fbe1771a63debcbe8
MD5 bd94ad5b036bb639b6ec437473c493c4
BLAKE2b-256 228cdcdbfe632bfbd8ecae57615bba843279628957e5a6b0fdaf23e7c65c81ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 36.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.8.1-0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 60863bc2c3359cfeaa2cc6b2f75486acf1594e5e7139c86feba3461fd107e4f6
MD5 0e0f2df5175acbeb3e4654f0a9ca0000
BLAKE2b-256 462a24836f59eccf4a5a1d6316ef022f48587be42c1cdae35e32e63f01cf98be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: swat-1.8.1-0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 456.1 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.8.1-0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77f3e2035fc9cdffce21e807b982aa88f5fb76fc041b3a3bf4ea29f6456d0dd9
MD5 b05a07d70f6b706888ce0b39cdf4d3bc
BLAKE2b-256 764b2a1111cb5801d98fb21235147347213ba06544a3d880a4a041fbb2ead91d

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