A Python interface to the SuiteSparse Matrix Collection
Project description
SSGETPY: Search and download sparse matrices from the SuiteSparse Matrix Collection
ssgetpy
is a little Python library and command-line program to search, filter and download matrices from the SuiteSparse Matrix Collection similar to the existing Java and MATLAB tools.
The index of matrices is created from the same CSV file used by the Java interface. However, the index in cached in a local SQLite database to make querying it more convenient.
Requirements and installation
ssgetpy
works with Python 3.6 or above. Besides the standard
library, it depends on requests
and tqdm
. Since ssgetpy
doesn't
actually parse matrix data, it doesn't require dependencies like
NumPy
or SciPy
.
To install, simply run:
pip install ssgetpy
This will install the ssgetpy
Python module as well as a ssgetpy
command-line script.
From Python, run import ssgetpy
and type help(ssgetpy)
to get a detailed
help message on how to use ssgetpy
to search and download sparse matrices.
From the command-line, run ssgetpy
or ssgetpy --help
to see the
list of options.
Examples
Make sure you first run from ssgetpy import search, fetch
. Replace
fetch
with search
to only return the corresponding Matrix
objects
without downloading them.
- Download matrix with ID 42 in the MatrixMarket format:
fetch(42)
- Download matrices in the Harwell-Boeing collection with less than
1000 non-zeros:
fetch(group = 'HB', nzbounds = (None, 1000))
- Download only the first 5 problems arising from structural analysis:
fetch(kind = "structural", limit = 5)
- Download the problems in the previous example as MATLAB .MAT files:
fetch(kind = "structural", format = "MAT", limit = 5)
For more examples, please see the accompanying Jupyter notebook
License
ssgetpy is licensed under the MIT/X11 license:
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ssgetpy-1.0rc1.tar.gz
.
File metadata
- Download URL: ssgetpy-1.0rc1.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | caa59cd85a8416c202a3cf0aeecdcf9074f5281fbabb3dc2a5f1d6cb9eb9acea |
|
MD5 | c023163f61b319ca1e00a09614a14d11 |
|
BLAKE2b-256 | da1a4b96baca4b85197c89f9329936d0eae95f999750322fa875bf5f4c08a6c4 |
File details
Details for the file ssgetpy-1.0rc1-py3-none-any.whl
.
File metadata
- Download URL: ssgetpy-1.0rc1-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d554ebf2a026b9fe7f7474c4ce6fc08896e5711d1e7f9b2baa34aed89af09bf7 |
|
MD5 | bcfe0a9e5fedb7e73cd8f8db004200b7 |
|
BLAKE2b-256 | 34b2b090306261ea2dd6adc7b4fe69bdaa47762255cd061a8e1fc6338042052c |