pudo / dataset

Easy-to-use data handling for SQL data stores with support for implicit table creation, bulk loading, and transactions.
https://dataset.readthedocs.org/
MIT License
4.78k stars 298 forks source link

Can't execute 'from stuf import stuf' #303

Closed therden closed 4 years ago

therden commented 5 years ago

Recently found dataset, and am interested in using in a project. But I found a problem while following along in the examples in Quickstart. Attempting to execute

from stuf import stuf

as shown at the end of the "Reading Data from Tables: section results in

No module found named 'stuf'

Any ideas?

pudo commented 4 years ago

stuf is a non-standard re-implementation of Python's dict type, available here: https://pypi.org/project/stuf/

The example is supposed to illustrate that you can inject your own dict types instead of the default, OrderedDict...