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

cards #143

Closed
hheisego opened this issue Oct 27, 2020 · 5 comments
Closed

cards #143

hheisego opened this issue Oct 27, 2020 · 5 comments
Assignees
Labels
Milestone

Comments

@hheisego
Copy link

Good day Team,

python 3.7 is stills supported?
getting couple errors while importing:

from webexteamssdk.cards.card import AdaptiveCard
from webexteamssdk.cards.inputs import Text, Number
from webexteamssdk.cards.components import TextBlock
from webexteamssdk.cards.actions import Submit

@sQu4rks
Copy link
Contributor

sQu4rks commented Oct 27, 2020

Hi @hheisego

thanks for raising this issue.

Could you elaborate on the errors you are seeing? Also could you provide the version of the webexteamssdk you are using?

@levensailor
Copy link
Contributor

having the same issue with latest version of webexteamssdk


from webexteamssdk import WebexTeamsAPI
from webexteamssdk.cards.card import AdaptiveCard
from webexteamssdk.cards.inputs import Text, Number
from webexteamssdk.cards.components import TextBlock
from webexteamssdk.cards.actions import Submit

api = WebexTeamsAPI(access_token='nope')
greeting = TextBlock("Hey hello there! I am a adaptive card")
first_name = Text('first_name', placeholder="First Name")
age = Number('age', placeholder="Age")
submit = Submit(title="Send me!")
card = AdaptiveCard(
    body=[greeting, first_name, age], 
    actions=[submit])

api.messages.create(text="fallback", personEmail="jlevensailor@presidio.com", cards=card)

File "app.py", line 2, in
from webexteamssdk.cards.card import AdaptiveCard
ModuleNotFoundError: No module named 'webexteamssdk.cards'

@DJF3
Copy link

DJF3 commented Mar 10, 2021

I have the exact same issue. This example came straight from the documentation but I have not found a way to get it to work.
(python 3.7 and 3.9.1)
Any updates on this Card issue?

@aquaMAX
Copy link

aquaMAX commented Jul 13, 2021

duplicate issue
but i need to fix it manual when using pip install
#155

@cmlccie cmlccie added the bug label Feb 19, 2024
@cmlccie cmlccie added this to the v1.7 milestone Feb 19, 2024
@cmlccie cmlccie self-assigned this Mar 31, 2024
@cmlccie
Copy link
Collaborator

cmlccie commented Mar 31, 2024

This was/is a documentation bug that was fixed in the code 16 months ago (b0e552c). I will make sure the docs get updated when we release v1.7.

@cmlccie cmlccie closed this as completed Mar 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants