https://github.com/remusao/wikipedia.jl
*Deprecated* - A julia wrapper over Wikipedia API
https://github.com/remusao/wikipedia.jl
Last synced: about 1 month ago
JSON representation
*Deprecated* - A julia wrapper over Wikipedia API
- Host: GitHub
- URL: https://github.com/remusao/wikipedia.jl
- Owner: remusao
- License: other
- Created: 2014-07-23T16:24:57.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-21T16:26:20.000Z (over 10 years ago)
- Last Synced: 2025-02-15T07:20:15.112Z (3 months ago)
- Language: Julia
- Homepage:
- Size: 162 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Wikipedia.jl
This package provides basic utilities to access the *Wikipedia* API.
It is freely inspired from [wikipedia](https://github.com/goldsmith/Wikipedia), but some improvements are planned.
## Quickstart
```julia
julia> Pkg.clone("https://github.com/Keno/Requests.jl.git")
julia> Pkg.update()
julia> using Wikipedia
```## Features
```julia
julia> Wikipedia.summary("Batman")
"Batman is a fictional superhero who appears in American comic books published by DC Comics, as well as in a multitude of movies, television shows, and video games. He was created by Bob Kane and Bill Finger in 1939 to capitalize on the superhero craze that began with Superman. Batman is one of DC Comics' most recognizable and profitable characters.\nBatman is a vigilante who wears a bat-like costume and fights violent criminals in the fictional city of Gotham. He is a brilliant detective and formidable martial artist. Batman's real name is Bruce Wayne, a billionaire industrialist. When he was a child, his parents were murdered by a common mugger, and he fights criminals to avenge their deaths.\n\n"
julia> Wikipedia.search("Batman")
10-element Array{Any,1}:
"Batman"
"B.A.T.M.A.N."
"Batman (disambiguation)"
"BATMAN"
"Batman (comic book)"
"Batman (TV series)"
"Batman (1989 film)"
"Batman: The Animated Series"
"Batman in film"
"List of Batman comics"
```