Metadata-Version: 1.1
Name: filestat
Version: 0.2.2
Summary: A command line library for file monitoring.
Home-page: https://github.com/zxalif/filestat/
Author: Alif Jahan
Author-email: sajeeb162537@gmail.com
License: MIT
Description: ===========================================================
        filestat
        ===========================================================
        
        .. :_filestat https://github.com/zxalif/filestat/
        .. _MIT: https://choosealicense.com/licenses/mit/
        
        filestat_ A command line library for file monitoring.
        
            :Authors: Alif Jahan
            :Version: 0.2 of 05/05/2019
        
        installation
        -----------------------------------------------------------
        
        Using ``pip``
        
        .. code-block:: bash
        
            $ pip install filestat
        
        To install using ``git`` just clone the repo
        
        .. code-block:: bash
        
            $ git clone https://github.com/zxalif/filestat.git
            $ cd filestat
            $ python3 setup.py install
        
        Usages
        ***********************************************************
        
        There is two way to access filestat_ with command line or with python ``interpreter``.
        
        1. using ``bash``
        
        .. code-block:: bash
        
            $ python3 -m filestat -f filename.py
            Name:	filename.py
            Owner:	alif
            Group:	alif
            Size:	1045 bytes
            Update Time: 	Sunday, May 05, 2019 10:50:11.640795 PM
            Last Access:	Sunday, May 05, 2019 10:50:15.200863 PM
            Permissions:	644
        
        2. Using ``interpreter``
        
        .. code-block:: python
        
            >>> # to get file size
            >>> from filestat import utils
            >>> utils.get_size('path/to/file.py') # it returns the file size in byte
            123121
            >>>
        
        License
        --------------------------------------------------------
        
        The program under Licensed MIT_.
        
        **Documentations are under develop**
        
Keywords: filestat stats file monitoring details
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Office/Business
Classifier: Topic :: Software Development :: Bug Tracking
