(docs_url=PG_SQL_DOCS_URL,
keyword_regex=PG_SQL_DOCS_REGEX)
| 73 | |
| 74 | |
| 75 | def get_keywords_pg_docs(docs_url=PG_SQL_DOCS_URL, |
| 76 | keyword_regex=PG_SQL_DOCS_REGEX): |
| 77 | resp_text = get_file_from_url(docs_url) |
| 78 | # Sample entry - <code class="token">ABORT</code> |
| 79 | keywords = extract_keywords(resp_text, keyword_regex) |
| 80 | |
| 81 | return keywords |
| 82 | |
| 83 | |
| 84 | def get_all_keywords(): |
no test coverage detected