Metadata-Version: 2.0
Name: ssd
Version: 0.1.0
Summary: Solid-State Drive Checker
Home-page: https://github.com/vuolter/pySSD
Author: Walter Purcaro
Author-email: vuolter@gmail.com
License: MIT
Download-URL: https://github.com/vuolter/pySSD/releases
Keywords: ssd pyssd
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System
Classifier: Topic :: System :: Filesystems
Classifier: Topic :: Utilities
Requires-Python: >=2.6,!=3.0,!=3.1,!=3.2
Requires-Dist: psutil
Requires-Dist: pypiwin32 (>=154)
Requires-Dist: wmi

pySSD
=====

Table of contents
-----------------

-  `Description`_
-  `Installation`_
-  `Usage`_

Description
-----------

A tiny, but effective, SSD checker for Python.

Working on Windows, macOS and linux.

Installation
------------

Type in your command shell **with *administrator/root* privileges**:

::

    pip install ssd

In Unix-based systems, this is generally achieved by superseding the
command ``sudo``.

::

    sudo pip install ssd

If the above commands fail, consider installing it with the option
`--user`_:

::

    pip install --user ssd

Usage
-----

Import in your script the module ``sdd`` and call its function
``is_ssd``.

::

    from ssd import is_ssd

    is_ssd('/path/to/file-or-dir')

**pySSD** will return ``True`` if the drive where the given path is
located is recognized as a solid-state drive, otherwise ``False``.

*That's All Folks!*


.. _Description: #description
.. _Installation: #installation
.. _Usage: #usage
.. _--user: https://pip.pypa.io/en/latest/user_guide/#user-installs


