Skip to content
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

Cannot import bitshares aio #316

Open
evgeniy-russkih opened this issue Jul 21, 2022 · 2 comments
Open

Cannot import bitshares aio #316

evgeniy-russkih opened this issue Jul 21, 2022 · 2 comments

Comments

@evgeniy-russkih
Copy link

Hi! I was looking into async bitshares module but seems it's not usable right now?
What I'm doing wrong. The above exception appears even with the example code.

import asyncio

from bitshares.aio import BitShares
from bitshares.aio.instance import set_shared_bitshares_instance

async def info(loop, bitshares):
    await bitshares.connect()
    set_shared_bitshares_instance(bitshares)
    print(await bitshares.info())


def main():
    loop = asyncio.get_event_loop()
    bitshares = BitShares(loop=loop)
    loop.run_until_complete(info(loop, bitshares))


if __name__ == '__main__':
    main()

Traceback

  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1006, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 688, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 883, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "C:\work\outsource\crowdwiz\venv\lib\site-packages\bitshares\aio\__init__.py", line 2, in <module>
    from .bitshares import BitShares
  File "C:\work\outsource\crowdwiz\venv\lib\site-packages\bitshares\aio\bitshares.py", line 8, in <module>
    from bitsharesapi.aio.bitsharesnoderpc import BitSharesNodeRPC
ModuleNotFoundError: No module named 'bitsharesapi.aio'
python-BaseException
@dentuwu

This comment was marked as abuse.

@xeroc
Copy link
Member

xeroc commented Aug 29, 2023

Interstingly, when loading from the sources, i can import the module just fine.
Seems the release did not include some files.

How did you install python-bitshares?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants