Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposal: scraperwiki.sql.variable for getting/setting variables. #35

Open
fawkesley opened this issue Aug 21, 2013 · 6 comments
Open

Comments

@fawkesley
Copy link
Contributor

Basically, like scraperwiki.sqlite.save_var, but cleaned up.

  • same interface in Python and JavaScript.
  • share basic datatypes (string, number, list, dict) between Python and JavaScript. Bonus for "native" dates.
  • looks like a dictionary(*): scraperwiki.sql.variable['myvar'] = 7
  • stored in SQL table _sw_variable (note: starts with underscore to show that it's an internal table)

*maybe not in javascript if we can't work out how to do that

@fawkesley
Copy link
Contributor Author

As an example, the magic table scraper stores its settings in allSettings.json. Other tools / scrapers store their settings in a database table called swvariables (thanks to scraperwiki.sqlite.save_var).

This is an attempt to make a single (decent) way of doing this so we don't keep re-inventing this stuff.

@zarino
Copy link
Contributor

zarino commented Aug 28, 2013

Three interesting decisions I like the sound of:

  1. It's just a dictionary, you can access variables by key rather than as an argument to a function.
  2. It's the same in Python and JavaScript.
  3. It basically has nothing to do with SQLite.

Although that 3rd one does make me wonder why it's under the "scraperwiki.sql" namespace – the fact that it's based on SQL is an implementation detail. Perhaps it should be "scraperwiki.var"?

@zarino
Copy link
Contributor

zarino commented Aug 28, 2013

I've added an issue in the Custard repo for the JavaScript half of this: sensiblecodeio/custard#400

@drj11
Copy link
Contributor

drj11 commented Aug 28, 2013

It's in the sql namespace because it stores the sqlite store. I don't think it's an implementation detail, I think it's an advertised feature of the interface.

On the issue of it living in .sql or not I'm persuadable.

It should be called .variable, not .var

@drj11
Copy link
Contributor

drj11 commented Jun 9, 2014

@pwaller argues, persuasively IMO, that in Python it should mostly look like property access rather than dictionary access:

scraperwiki.sql.variable.my_favourite_status = "begruddled"

This is so that people are discouraged, by the syntax, from doing programmatic things to the variables (like iterating over all the variables, if people want to do that, they should probably be storing things in a table).

I approve.

obviously in JavaScript land, it's all the same.

@frabcus
Copy link
Contributor

frabcus commented Jun 30, 2014

For examples of bad code that results from the lack of this facility, see the Twitter search tool: http://github.com/scraperwiki/twitter-search-tool/

One thing in particular - saving an individual variable without danger of damaging others is very important. i.e. it internally doing an "update ... where" for just the variable.

There's an interesting question about when the variable gets gotton again - i.e. when it does a round trip from Javascript. I'm not sure what the answer is though - needs a bit of discussion.

I've made this a Trello card: https://trello.com/c/kWLodpHG/66-variable-saving-loading-for-tools-simpler

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants