Check the copyright laws and the term of service before using it. You might be breaking the law!
- Open the Network tab of the Chrome Inspector
| import __future__ | |
| # import _bootlocale # Doesn't exist on 3.11 on Windows | |
| import _collections_abc | |
| import _compat_pickle | |
| import _compression | |
| # import _dummy_thread # Doesn't exist in 3.9+ in WSL | |
| import _markupbase | |
| import _osx_support |
| # unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" | |
| UNRESERVED_PAT: str = r"([A-Za-z0-9\-\._~])" | |
| # pct-encoded = "%" HEXDIG HEXDIG | |
| PCT_ENCODED_PAT: str = r"(%[A-F0-9][A-F0-9])" | |
| # sub-delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "=" | |
| SUB_DELIMS_PAT: str = r"([!\$&'\(\)\*\+,;=])" | |
| # pchar = unreserved / pct-encoded / sub-delims / ":" / "@" |
| CREATE TABLE accounts( | |
| id serial PRIMARY KEY, | |
| name VARCHAR(256) NOT NULL | |
| ); | |
| CREATE TABLE entries( | |
| id serial PRIMARY KEY, | |
| description VARCHAR(1024) NOT NULL, | |
| amount NUMERIC(20, 2) NOT NULL CHECK (amount > 0.0), | |
| -- Every entry is a credit to one account... |