Naver-Series

Naver Series module


Keywords
Naver, Series, Book
Install
pip install Naver-Series==1.1.3.Beta

Documentation

Naver Series

๐Ÿ™sorry for about immature english

1. search


params

Name Type
keyword str
#request example
import NaverSeries

NaverSeries.search('์‡ผ๋ฏธ๋”')

response

Name Type
contents list<dict>

contents

Name<str> Value-Type Description
title str name of book
id int id of book (productNo)
author list<str> authors of book
    #response example
    {
        'contents': 
            [
                {
                    'title': '์‡ผ๋ฏธ๋” ์—”ํ„ฐ(์ด 201ํ™”/์™„๊ฒฐ)',
                    'id': 4189091,
                    'author': ['๋ฒ ๋ฒ ๊ผฌ์ธ']
                },
                
                {
                    'title': '์‡ผ๋ฏธ๋” ์—”ํ„ฐ [๋‹จํ–‰๋ณธ](์ด 8๊ถŒ/์™„๊ฒฐ)',
                    'id': 5332770,
                    'author': ['๋ฒ ๋ฒ ๊ผฌ์ธ']
                }, 
                
                {
                    'title': '์‡ผ๋ฏธ๋”๋Ÿญํ‚ค์งฑ!(์ด 58ํ™”/๋ฏธ์™„๊ฒฐ)',
                    'id': 6733269,
                    'author': ['๊น€์„ฑ๋ชจ', '๋ฐ•ํƒœ์ค€']
                },
                
                {
                    'title': '์‡ผ ๋ฏธ ๋” ์Šคํƒ€ํฌ๋ž˜ํ”„ํŠธ (์Šคํƒ€ํฌ๋ž˜ํ”„ํŠธ๋กœ ๋ฐฐ์šฐ๋Š” ๊ตฐ์‚ฌยท๊ฒฝ์ œยท์ •์น˜)',
                    'id': 3430966,
                    'author': ['์ด์„ฑ์› ์ €']
                }
            ]
    }