1.1.0 • Published 8 years ago

pantsu-js v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Pantsu.js

A Node.js module for NyaaPantsu API.

Complete list of available parameters here.

const pantsu = require('pantsu-js')

query = {
    'q': "koe no katachi",
    'page': 1,
    'limit': 50,
    'c': [3,13],
    'lang': ['en']
}

pantsu.search(query)
    .then(
        function(data) {
            console.log(data)
            /*{ torrents: 
                [ 
                    { 
                        id: 984615,
                        name: '[Inoreen] Koe no Katachi Movie German Subtitle',
                        status: 1,
                        hash: 'C84625A002D4B463B8DBB4BB1AE1E34E521F291A',
                        date: '2017-09-20T02:11:55Z',
                        filesize: 138126,
                        description: '',
                        comments: [],
                        sub_category: '13',
                        category: '3',
                        ...
                    }
                ]
            }*/
        },
        function(err) {
            console.log(err)
        }
    )
1.1.0

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago