0

i want to build a smart contract with neo-python and in my sc i want to have this module:

from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete

but i get
No module named boa.blockchain How can i get this module linked?

TimRicta
  • 135
  • 1
  • 2
  • 8
  • Possible duplicate of [Python error "ImportError: No module named"](https://stackoverflow.com/questions/338768/python-error-importerror-no-module-named) – Adrian W Jul 09 '18 at 13:12

1 Answers1

0

you forgot to put from, and also did you install it with pip install neo-boa ?

from boa.blockchain.vm.Neo.Storage import GetContext, Get, Put, Delete
Druta Ruslan
  • 7,171
  • 2
  • 28
  • 38