Metadata-Version: 1.1
Name: nudepy
Version: 0.1.3
Summary: Nudity detection with Python. Port of nude.js to Python.
Home-page: https://github.com/hhatto/nude.py
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: MIT
Description: nude.py
        =======
        
        About
        -----
        Nudity detection with Python. Port of `nude.js`_ to Python.
        
        .. _`nude.js`: https://github.com/pa7/nude.js
        
        
        Installation
        ------------
        from pip::
        
            $ pip install --upgrade nudepy
        
        from easy_install::
        
            $ easy_install -ZU nudepy
        
        
        Requirements
        ------------
        * Python2.7+ and Python3.3+
        * PIL or Pillow
        
        
        Usage
        -----
        via command-line
        
        .. code-block:: sh
        
            $ nudepy IMAGE_FILE
        
        via Python Module
        
        .. code-block:: python
        
            import nude
            from nude import Nude
        
            print(nude.is_nude('./nude.rb/spec/images/damita.jpg'))
        
            n = Nude('./nude.rb/spec/images/damita.jpg')
            n.parse()
            print("damita :", n.result, n.inspect())
        
        see examples_ .
        
        .. _examples: https://github.com/hhatto/nude.py/tree/master/examples
        
        Links
        -----
        * PyPI_
        * GitHub_
        
        .. _PyPI: http://pypi.python.org/pypi/nudepy/
        .. _GitHub: https://github.com/hhatto/nude.py
        
Keywords: nude
Platform: Linux
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
