Metadata-Version: 1.1
Name: nicovideo
Version: 1.0.0
Summary: A library for Nicovideo
Home-page: https://github.com/naoina/nicovideo
Author: Naoya Inada
Author-email: naoina@kuune.org
License: MIT
Description: A library for Nicovideo
        ============================================================
        
        http://www.nicovideo.jp/
        
        Features
        --------
        
        - Get a video information
        - Mylist manipulation
        - Get the video informations from new arrival
        - Get the video informations by tag search
        - Video download
        
        Requirements
        ------------
        
        - Python 3.x and later
        
        Installation
        ------------
        
        from pypi::
        
           % pip install nicovideo
        
        from source::
        
           % python setup.py install
        
        Usage
        -----
        
        ::
        
           from nicovideo import Nicovideo
        
           nico = Nicovideo()
           nico.append('sm9')
           nico.append('sm3504435')
           for v in nico:
              print(v.video_id)
              print(v.title)
              print(v.description)
              print(v.watch_url)
        
        See source for more details.
        
        LICENSE
        -------
        
        MIT
        
Keywords: nicovideo
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
