From bd4e0865605d29bd60cc07cc3b887b79a47f926e Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Wed, 17 Dec 2025 22:27:58 +0000 Subject: [PATCH 1/3] Remove Travis info from README That information is long gone now. --- README | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README b/README index e13969c..9a72afd 100644 --- a/README +++ b/README @@ -1,10 +1,6 @@ ScraperWiki Python library ========================== -.. image:: https://travis-ci.org/scraperwiki/scraperwiki-python.png?branch=master - :alt: Build Status - :target: https://travis-ci.org/scraperwiki/scraperwiki-python - This is a Python library for scraping web pages and saving data. It is the easiest way to save data on the ScraperWiki platform, and it can also be used locally or on your own servers. From c5d48777a488e24dd736a319e53d674447590cc3 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Wed, 17 Dec 2025 22:29:09 +0000 Subject: [PATCH 2/3] Update README for accuracy of functions The information was outdated. --- README | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README b/README index 9a72afd..72237c5 100644 --- a/README +++ b/README @@ -63,14 +63,11 @@ scraperwiki.sql.select(sqlfrag[, vars]) ``vars`` is an optional list of parameters, inserted when the select command contains ‘?’s. This is like the feature in the ``.execute`` command, above. scraperwiki.sql.commit() - Commits to the file after a series of execute commands. (sql.save auto-commits after every action). + Functionality now removed. (sql.save auto-commits after every action). scraperwiki.sql.show_tables([dbname]) Returns an array of tables and their schemas in the current database. -scraperwiki.sql.table_info(name) - Returns an array of attributes for each element of the table. - scraperwiki.sql.save_var(key, value) Saves an arbitrary single-value into a table called ``swvariables``. Intended to store scraper state so that a scraper can continue after an interruption. From 2ac960240285b59c4f9cdeeb77911d4c5a9883d4 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Wed, 17 Dec 2025 22:29:44 +0000 Subject: [PATCH 3/3] Clarify `sql.commit()` --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 72237c5..8f87636 100644 --- a/README +++ b/README @@ -63,7 +63,7 @@ scraperwiki.sql.select(sqlfrag[, vars]) ``vars`` is an optional list of parameters, inserted when the select command contains ‘?’s. This is like the feature in the ``.execute`` command, above. scraperwiki.sql.commit() - Functionality now removed. (sql.save auto-commits after every action). + Functionality now removed. It is retained, but does nothing. (sql.save auto-commits after every action). scraperwiki.sql.show_tables([dbname]) Returns an array of tables and their schemas in the current database.