This is a toturial to install systemc library in a linux machine. If you are using windows machine and don't have access to a linux machine, I suggest to use WSL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from glob import glob | |
import re | |
import urllib.request | |
paths = glob('Notes/*.md') | |
results = [] | |
for path in paths: | |
with open(path, 'r', encoding='UTF-8') as fin: | |
data = fin.read() |