No complete support for python3, unable to import trello module
See original GitHub issueI have the latest version of py-trello, checked with pip list
, as well as Python 3. I see some others having this error, but I haven’t come across any fixes yet.
My code errors on the line from the README:
from trello import TrelloClient
EDIT: It’s because there’s no support for Python3, currently. It worked on python2.7.
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
From trello import TrelloClient stopped working - Stack Overflow
I have a python 2.7 script that has been working fine for several years up until last week. The error I'm receiving is...
Read more >py-trello Documentation - Read the Docs
Modules trello package. Submodules trello.attachments module ... Board attributes are stored as normal Python attributes; access to all sub-.
Read more >py-trello - Bountysource
My code errors on the line from the README: from trello import TrelloClient. EDIT: It's because there's no support for Python3, currently.
Read more >py-trello - PyPI
Python wrapper around the Trello API. ... from trello import TrelloClient client = TrelloClient( api_key='your-key', ... Required Python modules.
Read more >Automate That Trello Board With Python | by Mike Wolfe | CodeX
Next, we need to open up the file and import the requests module. This will allow us to send API requests. import requests....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I am using it now just with
from trello.trelloclient import TrelloClient
and everything seems to work, maybe you can verify this @ededdneddyfan and this issue resolved itself 😃(I am only using
board.open_cards()
,board.closed_cards()
andcard.fetch_actions()
)Python: Python 3.7.0 py-trello: py-trello 0.11.3
There’s probably a confusion here and in #220 – There is an older unmaintained trello project on PyPI (what you get when doing pip install
trello
). However, this project,py-trello
is a completely different project, although the import name is the same.According to the git history of this project, that import never existed, so this issue must refer to the old unmaintained trello project.