You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/lib/docs/scrapers/tensorflow.rb

19 lines
527 B

module Docs
class Tensorflow < UrlScraper
self.name = 'TensorFlow'
self.slug = 'tensorflow'
self.type = 'tensorflow'
self.release = '0.6.0-py'
self.base_url = 'https://www.tensorflow.org/versions/0.6.0/api_docs/python/'
options[:container] = '#content'
html_filters.push 'tensorflow/entries', 'tensorflow/clean_html', 'clean_html'
options[:attribution] = <<-HTML
&copy; The TensorFlow Authors. All rights reserved.<br>
Licensed under the Apache 2.0 License.
HTML
end
end