mirror of https://github.com/freeCodeCamp/devdocs
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.
19 lines
527 B
19 lines
527 B
9 years ago
|
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
|
||
|
© The TensorFlow Authors. All rights reserved.<br>
|
||
|
Licensed under the Apache 2.0 License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|