saaj
saaj
As a user of Sqliteviz, In order to share my data and its visualisation(s) with others, I want to be able to import/download external data and the inquiry by just...
(original idea from #56) As a user of sqliteviz, In order to import data whose machine-readable representation is only available in JSON, I want to be able to import JSON...
Steps to reproduce: 1. Prepare an inquiry (with a chart) 2. Re-open Sqliteviz 3. Load a database and open inquiry 4. Hide another panel (i.e. leave only SQL one) 5....
As a user of Sqliteviz, In order to simplify my workflow with bigger databases, I want to be able to query them directly in sqliteviz w/o the need to pre-aggregate...
(from #62) As a user of sqliteviz, In order to understand what functions are available for the query, I want to be able filter available in the query editor and/or...
As a user of Sqliteviz, In order to study structure and/or dynamics of complex networks (e.g. biological or infrastructure), I want to be able to visualise a graph (a set...
As a user of Sqliteviz, In order to demonstrate a prepared visualisation(s), I want to be able to hide all other controls and keep only the chart(s) on the screen....
The case mentioned in docopt definition, `ngxtop [options] query ...`, leads to `KeyError: ''` [here](https://github.com/lebinh/ngxtop/blob/master/ngxtop/ngxtop.py#L297) because `` is not defined.
`stix2` has decent exception hierarchy in [`exceptions.py`][1]. Yet, in many places it raises Python built-in exceptions like `ValueError`, `AttributeError` and others. Mixing own and Python built-in exceptions makes no clear...
Here's the code to illustrate the issue (python 2.7, mysql 5.5.32): ``` import MySQLdb connection = MySQLdb.connect(user = 'guest', db = 'test', charset = 'utf8') cursor = connection.cursor() cursor.execute(u"SELECT 'abcdё'...