Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text

Questions with tag python

Questions with tag python

Tags
Sorting
Results
per page
Filter

   
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi all, I have a bot developed in Python and it was working fine until the datafeeds api stopped responding. My request: datafeed_url = "https://spx.symphony...
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
Hello everyone, I generated my Python BDK bot using the Symphony Generator (https://github.com/finos/generator-symphony). When I tried to launch the Python B...
Kaosar Ahmed
310 × 3 Administrator
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
I'm trying to send in an object into jinja2 template but this compartive doesn't work in any fashion. Is there any documentation that clearly states how this...
1 Votes
2 Answers
12K Views
1 Votes 2 Answers 12K Views
Hi there, I am following the tutorial to build my first demo bot using the symphony-bdk-python . When I get to the step : \BotProject>pip3 install -r require...
one year ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Hi, Starting up the demo bot from chatper 4, runs fine. It looks good and replies with teh @mention followed by /command but the bot's online status at the S...
one year ago
0 Votes
2 Answers
2K Views
0 Votes 2 Answers 2K Views
Hi, I am at: https://learn.symphony.com/courses/take/bdk-2-python/lessons/27987560-demo-configuration-hello-world and trying to run the bot at 3:44 for the f...
one year ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
hi, I am following the Developing Bots using BDK for Python. I have an unexpected pb when I run the bot using command python -m src I am getting the error be...
2 years ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Hi.. I have created a bot by the BotGenerator. I have configured the config.yaml by referring the working sample including the firm's proxy setup. The servic...
2 years ago
1 Votes
1 Answers
1K Views
1 Votes 1 Answers 1K Views
Using the Python BDK, I am looking to add custom formatting to my MessageML/Jinja2 templates with CSS. 1. After doing some testing, I see that I can add inli...
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hey guys, we are making heavy use of the @activites.slash decorator, something along the lines of: But think duplicating that decorator 20 times for various ...
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
I am using the Python BDK 2.0. The RealTimeEventListener contains methods which are looking relevant for catching the event which is getting raised when I st...
2 years ago
1 Votes
1 Answers
4K Views
1 Votes 1 Answers 4K Views
Hi guys! Does anyone know how to prevent the asyncio.exceptions.TimeoutError? Is there anything I can do? I am using Python BDK. Thanks
2 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
How to show invalid command message. Example we are using /Help or /CommandName to show the command activity, but if the user type "/CommandName test" or "/C...
2 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
I'm implementing a UserJoinedRoomContext watcher in my bot. The code gets called python async def on_activity(self, context: UserJoinedRoomContext): user = a...
2 years ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Hi Team, are there any examples for a Headless Bot in Python? I am very interested in creating a chatbot that sends notifications based on external events. A...
2 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
I am trying to follow the Developing Bots using BDK for Python, but I'm having a problem when I try to run the bot using command py -m src I am getting the e...
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Does symphony bot (messaging) support jinja2?
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
We are trying to add external contact to our bot, which is asking to send request. How can this be done using Python SDK?