Metadata-Version: 1.2
Name: ssd_checker
Version: 1.0.3
Summary: Solid-state drive (ssd) checker
Home-page: https://github.com/kipodd/ssd_checker
Author: kipodd
License: MIT
Download-URL: https://github.com/kipodd/ssd_checker/releases
Description: SSD Checker
        ===========
        
        Table of contents
        -----------------
        
        -  `Description`_
        -  `Installation`_
        -  `Usage`_
        
        Description
        -----------
        
        Tiny little Solid-State Drive checker for Python.
        
        Working on Windows, macOS and Linux.
        
        Installation
        ------------
        
        Type in your command shell **with *administrator/root* privileges**:
        
        ::
        
            pip install ssd_checker
        
        In Unix-based systems, this is generally achieved by superseding the
        command ``sudo``.
        
        ::
        
            sudo pip install ssd_checker
        
        If the above commands fail, consider installing it with the option
        `--user`_:
        
        ::
        
            pip install --user ssd_checker
        
        If in your system missing the command ``pip``, but you're sure you have
        installed the `Python Interpreter`_ and the package ``setuptools``
        (>=20.8.1), you can try to install **SSD Checker** from the sources, in this
        way:
        
        1. Get the latest tarball of the source code in format `ZIP`_ or `TAR`_.
        2. Extract the downloaded archive.
        3. From the extracted path, launch the command
           ``python setup.py install``.
        
        Usage
        -----
        
        Import in your script the module ``sdd_checker`` and call its function
        ``is_ssd``.
        
        ::
        
            from ssd_checker import is_ssd
        
            is_ssd('/path/to/file-or-dir-or-dev')
        
        Return value will be ``True`` if the drive, where the given path is
        located, was recognized as SSD, otherwise ``False``.
        
            **Note:** Ramdisks are always recognized as SSD under Windows.
        
        .. _Description: #description
        .. _Installation: #installation
        .. _Usage: #usage
        .. _--user: https://pip.pypa.io/en/latest/user_guide/#user-installs
        .. _Python Interpreter: https://www.python.org
        .. _ZIP: https://github.com/kipodd/ssd_checker/archive/master.zip
        .. _TAR: https://github.com/kipodd/ssd_checker/archive/master.tar.gz
        
Keywords: ssd check checker solid state drive pyssd
Platform: any
Classifier: Development Status :: 5 - Production/Stable
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
