Skip to content

Instantly share code, notes, and snippets.

@antonis
Last active March 21, 2019 11:23
Show Gist options
  • Select an option

  • Save antonis/238a561ba56b870be3beaffe5da66b36 to your computer and use it in GitHub Desktop.

Select an option

Save antonis/238a561ba56b870be3beaffe5da66b36 to your computer and use it in GitHub Desktop.
import org.jsoup.Jsoup
fun google(keyword: String): String {
val doc = Jsoup.connect("https://google.com/search?q=$keyword")
.userAgent("Mozilla/5.0").get()
val title = doc.selectFirst("h3.r a")?.text()
val description = doc.selectFirst("span.st")?.text()
return "$title. $description"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment