(filename, folder="requirements")
| 32 | |
| 33 | |
| 34 | def req_file(filename, folder="requirements"): |
| 35 | with open(os.path.join(folder, filename)) as f: |
| 36 | content = f.readlines() |
| 37 | # you may also want to remove whitespace characters |
| 38 | # Example: `\n` at the end of each line |
| 39 | return [x.strip() for x in content] |
| 40 | |
| 41 | |
| 42 | # ======================= Defining the requirements var ======================= |
no outgoing calls
no test coverage detected
searching dependent graphs…