| 1234567891011121314151617181920212223242526272829303132333435 |
- module Docs
- class ScikitLearn < UrlScraper
- self.name = 'scikit-learn'
- self.slug = 'scikit_learn'
- self.type = 'sphinx'
- self.release = '0.24.1'
- self.base_url = 'https://scikit-learn.org/0.24/'
- self.root_path = 'index.html'
- self.force_gzip = true
- self.links = {
- home: 'https://scikit-learn.org/',
- code: 'https://github.com/scikit-learn/scikit-learn'
- }
- html_filters.push 'scikit_learn/entries', 'scikit_learn/clean_html', 'sphinx/clean_html', 'title'
- options[:container] = ->(filter) { filter.root_page? ? 'body > .container' : '.section' }
- options[:skip] = %w(modules/generated/sklearn.experimental.enable_iterative_imputer.html
- modules/generated/sklearn.experimental.enable_hist_gradient_boosting.html)
- options[:only_patterns] = [/\Amodules/, /\Adatasets/, /\Atutorial/, /\Aauto_examples/]
- options[:skip_patterns] = [/\Adatasets\/(?!index)/]
- options[:title] = false
- options[:root_title] = 'scikit-learn'
- options[:max_image_size] = 256_000
- options[:attribution] = <<-HTML
- © 2007–2020 The scikit-learn developers<br>
- Licensed under the 3-clause BSD License.
- HTML
- def get_latest_version(opts)
- get_latest_github_release('scikit-learn', 'scikit-learn', opts)
- end
- end
- end
|