Skip to content

odwrtw/kickass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kickass

GoDoc Build Status Go Report Card

Golang library to get torrents from kickass

Features

  • Search with paramaters
  • List the uploads of a user

Example

    package main

    import (
            "github.com/kr/pretty"
            "github.com/odwrtw/kickass"
    )

    func main() {
            // New kickass client
            k := kickass.New()

            // Search query
            query := &kickass.Query{
                  Search:   "star wars",
                  User:     "YIFY",
                  OrderBy:  "seeders",
                  Order:    "desc",
                  Category: "movies",
            }

            // Search
            torrents, err := k.Search(query)
            if err != nil {
                    pretty.Println(err)
                    return
            }

            pretty.Println(torrents)
    }

About

Golang scrapper for the kickass website

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages