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
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 2 Jahren
12345678910
  1. # syntax=docker/dockerfile:1
  2. FROM python:3.10.7-slim-buster
  3. RUN apt-get update -y && apt-get install -y imagemagick
  4. WORKDIR /code
  5. COPY requirements.txt requirements.txt
  6. RUN pip install -r requirements.txt
  7. COPY . .
  8. CMD ["python3", "-m", "flask", "run"]