module Docs
class Pandas < UrlScraper
self.name = 'pandas'
self.type = 'sphinx'
self.root_path = 'index.html'
self.links = {
home: 'http://pandas.pydata.org/',
code: 'https://github.com/pydata/pandas'
}
html_filters.push 'pandas/entries', 'pandas/clean_html', 'sphinx/clean_html'
# Cannot take only the body, as the sidebar gives info about the type.
options[:container] = '.document'
options[:skip] = %w(internals.html release.html contributing.html whatsnew.html)
options[:attribution] = <<-HTML
© 2011–2012 Lambda Foundry, Inc. and PyData Development Team
© 2008–2011 AQR Capital Management, LLC
© 2008–2014 the pandas development team
Licensed under the 3-clause BSD License.
HTML
version '0.19' do
self.release = '0.19.2'
self.base_url = "http://pandas.pydata.org/pandas-docs/version/#{self.release}/"
end
version '0.18' do
self.release = '0.18.1'
self.base_url = "http://pandas.pydata.org/pandas-docs/version/#{self.release}/"
end
end
end