-
Notifications
You must be signed in to change notification settings - Fork 67
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
Comments
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. |
Three interesting decisions I like the sound of:
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"? |
I've added an issue in the Custard repo for the JavaScript half of this: sensiblecodeio/custard#400 |
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 |
@pwaller argues, persuasively IMO, that in Python it should mostly look like property access rather than dictionary access:
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. |
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 |
Basically, like scraperwiki.sqlite.save_var, but cleaned up.
*maybe not in javascript if we can't work out how to do that
The text was updated successfully, but these errors were encountered: