-
Notifications
You must be signed in to change notification settings - Fork 45
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
.all() not working #34
Comments
can you tell me more about your environment? |
Sure:
|
seems to be issues with python3.6 specifically, i'm working through getting the tests functional again. |
so i've got the tests working again, however i'm not sure if it will solve the issue. |
I'll get to test this out this week. |
Sorry this took me so long...no dice. Following the documented example.
The same object (successfully) deserialized by .load() doesn't try to decode bytes. |
can you paste the whole process? |
@dschofield, it might be that you created this bucket with an older version of nodb, and so there might be legacy items in the bucket, are you able to check the bucket is empty before you start testing ? |
Magically, it's working just fine now. Thanks! `from nodb import NoDB a_user={'name': 'David', 'age': 53} nodb.save(a_user) nodb.load('David') nodb.save(b_user) nodb.load('Kat') [{'name': 'David', 'age': 53}, {'name': 'Kat', 'age': 47}] |
should probably write a test to determine if that will be an issue |
#31 is still an issue.
I've installed 0.5.1 from tag 0.5.1:
pipenv install git+https://github.com/Miserlou/NoDB.git@0.5.1#egg=nodb
and tried locally from the 0.5.1 tarball also
(btw, the version in setup.py still shows 0.4.0)
nodb.all() returns the error
The text was updated successfully, but these errors were encountered: