Metadata-Version: 1.1
Name: shebang
Version: 0.0.26
Summary: shebang(path) - get script shebang
Home-page: http://github.com/looking-for-a-job/shebang.py
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: .. image:: https://img.shields.io/badge/language-Python-blue.svg
            :target: none
        .. image:: https://img.shields.io/pypi/pyversions/shebang.svg
            :target: https://pypi.org/pypi/shebang/
        .. image:: https://img.shields.io/pypi/v/shebang.svg
            :target: https://pypi.org/pypi/shebang
        
        |
        
        .. image:: https://api.codacy.com/project/badge/Grade/d6ba7ecf67b24670b17d56b4d5d5ded4
            :target: https://www.codacy.com/app/looking-for-a-job/shebang.py
        .. image:: https://codeclimate.com/github/looking-for-a-job/shebang.py/badges/gpa.svg
            :target: https://codeclimate.com/github/looking-for-a-job/shebang.py
        .. image:: https://img.shields.io/scrutinizer/g/looking-for-a-job/shebang.py.svg
            :target: https://scrutinizer-ci.com/g/looking-for-a-job/shebang.py/
        .. image:: https://sonarcloud.io/api/project_badges/measure?project=shebang.py&metric=code_smells
            :target: https://sonarcloud.io/dashboard?id=shebang.py
        .. image:: https://sonarcloud.io/api/project_badges/measure?project=shebang.py&metric=reliability_rating
            :target: https://sonarcloud.io/dashboard?id=shebang.py
        
        Install
        ```````
        
        
        .. code:: bash
        
            `[sudo] pip install shebang`
        
        Usage
        `````
        
        
        .. code:: python
        
            >>> from shebang import shebang
            
            >>> shebang(path)
        
        
        Examples
        ````````
        
        
        .. code:: python
        
            >>> shebang("path/to/file.py")
            '/usr/bin/env python'
            
            >>> shebang("path/to/file.txt")
            None
            
            shebang("/bin/test")
            None
        
Keywords: shebang
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
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.0
Classifier: Programming Language :: Python :: 3.1
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: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
