| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- module Docs
- class Python < FileScraper
- self.type = 'python'
- self.root_path = 'library/index.html'
- self.links = {
- home: 'https://www.python.org/',
- code: 'https://github.com/python/cpython'
- }
- options[:only_patterns] = [/\Alibrary\//]
- options[:skip] = %w(
- library/2to3.html
- library/formatter.html
- library/index.html
- library/intro.html
- library/undoc.html
- library/unittest.mock-examples.html
- library/sunau.html)
- options[:attribution] = <<-HTML
- © 2001–2021 Python Software Foundation<br>
- Licensed under the PSF License.
- HTML
- version '3.9' do
- self.release = '3.9.4'
- self.base_url = 'https://docs.python.org/3.9/'
- html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
- end
- version '3.8' do
- self.release = '3.8.6'
- self.base_url = 'https://docs.python.org/3.8/'
- html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
- end
- version '3.7' do
- self.release = '3.7.9'
- self.base_url = 'https://docs.python.org/3.7/'
- html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
- end
- version '3.6' do
- self.release = '3.6.12'
- self.base_url = 'https://docs.python.org/3.6/'
- html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
- end
- version '3.5' do
- self.release = '3.5.9'
- self.base_url = 'https://docs.python.org/3.5/'
- html_filters.push 'python/entries_v3', 'sphinx/clean_html', 'python/clean_html'
- end
- version '2.7' do
- self.release = '2.7.17'
- self.base_url = 'https://docs.python.org/2.7/'
- html_filters.push 'python/entries_v2', 'sphinx/clean_html', 'python/clean_html'
- end
- def get_latest_version(opts)
- doc = fetch_doc('https://docs.python.org/', opts)
- doc.at_css('title').content.split(' ')[0]
- end
- end
- end
|