A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API. https://patents.copim.ac.uk
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.

offrecord.py 611B

12345678910111213141516171819
  1. # @name: offrecord.py
  2. # @creation_date: 2022-10-27
  3. # @license: The MIT License <https://opensource.org/licenses/MIT>
  4. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  5. # @purpose: offrecord route for Section 4: Off the record
  6. # @acknowledgements:
  7. from flask import Blueprint, render_template
  8. import markdown
  9. offrecord = Blueprint('offrecord', __name__)
  10. # route for Martha Gowans page
  11. @offrecord.route('/offrecord/')
  12. def index():
  13. with open('content/section_4/I-Martha-gowans.md', 'r') as f:
  14. text = f.read()
  15. text = markdown.markdown(text)
  16. return render_template('offrecord.html', text=text)