Project

askwiki

0.01
No commit activity in last 3 years
No release in over 3 years
get article text from wikipedia from cli
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Ask Wikipedia Gem Version

Ask Wikipedia is a ruby gem for querying wikipedia in any language from within your ruby or rails application, and also could be used from commandline directly.

Installation

you can install latest version using

gem install askwiki

Usage

add it to your project using

require 'askwiki'
# instantiate a new object and ask it
obj = Askwiki.new('en') # padd wikipedia language as param or leave it for english
print obj.ask('API') # to ask wikipedia for an article

# or use the class method
print Askwiki.ask('API')

also you can use it from commandline/terminal as follows

$ askwiki API

Questions and Problems ?

open a new issue to let me know and i will response as soon as possible

How to Help

we appreciate Star/Fork/Watch on github so show love, and if you wanna help more then fork, then add a feature or enhance it, and send me a pull request, i will review and merge your commit.