This file contains 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
pip install -r requirements.txt | |
Ignoring numpy: markers 'python_version > "3.10"' don't match your environment | |
Ignoring numba: markers 'python_version < "3.9"' don't match your environment | |
Collecting numpy==1.22.0 | |
Using cached numpy-1.22.0-cp310-cp310-win_amd64.whl (14.7 MB) | |
Collecting cython==0.29.30 | |
Using cached Cython-0.29.30-py2.py3-none-any.whl (985 kB) | |
Collecting scipy>=1.11.2 | |
Using cached scipy-1.11.2-cp310-cp310-win_amd64.whl (44.0 MB) | |
Collecting torch>=1.7 |
This file contains 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 re | |
import sqlite3 | |
from tabulate import tabulate | |
conn = sqlite3.connect('bookshelf.db') | |
c = conn.cursor() | |
c.execute("""CREATE TABLE IF NOT EXISTS books ( | |
title TEXT, | |
author TEXT, |