<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: webex_bot package to be installed on Linux OS systems in Webex for Developers</title>
    <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221664#M3929</link>
    <description>&lt;P&gt;Thanks! It worked! Though not in room, but the users could use it for 1:1 purpose. Now 2 users are using this bot (I + one more user). I see that if any input provided, I am getting the response twice which is equal to the current number of users currently opened the bot window. Has it something to do with the code?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Nov 2024 18:45:28 GMT</pubDate>
    <dc:creator>o1</dc:creator>
    <dc:date>2024-11-07T18:45:28Z</dc:date>
    <item>
      <title>webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218426#M3908</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;I am using a webex_bot package with python3.11 on my personal system from where I can connect to the bot &amp;amp; send notifications based on the requirements.&lt;/P&gt;
&lt;P&gt;But the same code if I try to execute from UCS servers where I have CentOS7/Redhat installed, I am getting webex_bot package not available error. I tried different ways to install webex_bot on my UCS systems with Python 3.6 or Python3.11, but it doesn't work.&lt;/P&gt;
&lt;P&gt;Though it's working on my local system, I cant use it for 24X7 health check of the devices. I want to trigger the python job from either m UCS or ESXi hosts to take care of required notification 24X7, but the problem is with the webex_bot package installation. Can someone please help here or share a wiki which could guide to have a proper installation of webex_bot&amp;gt;&lt;/P&gt;
&lt;P&gt;Local Machine:&lt;/P&gt;
&lt;P&gt;etc % python3.11&lt;BR /&gt;Python 3.11.4 (v3.11.4:d2340ef257, Jun 6 2023, 19:15:51) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin&lt;BR /&gt;Type "help", "copyright", "credits" or "license" for more information.&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; import webex_bot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UCS server:&lt;/P&gt;
&lt;P&gt;[root@&amp;lt;server_name&amp;gt; library]# python3.11&lt;BR /&gt;Python 3.11.5 (main, Oct 21 2024, 17:26:52) [GCC 8.5.0 20210514 (Red Hat 8.5.0-18)] on linux&lt;BR /&gt;Type "help", "copyright", "credits" or "license" for more information.&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; import webex_bot&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "&amp;lt;stdin&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;BR /&gt;ModuleNotFoundError: No module named 'webex_bot'&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2024 06:50:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218426#M3908</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-01T06:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218431#M3909</link>
      <description>&lt;P&gt;Hi 1o,&lt;/P&gt;
&lt;P&gt;pip install webex-bot would be the way to go in the python terminal of your UCS Linux, in this way you get the library and it should. Come up.&lt;/P&gt;
&lt;P&gt;A couple of disclaimers about this solution:&lt;/P&gt;
&lt;P&gt;* Not sure about your code structure/organization but in the most default &amp;nbsp;case, you had your commands defined in the Webex_bot folder in your CentOS, if you do this solution, you will bring a clean copy of webex_bot without your custom code and basically you have to code a lot again on your UCS or copy the custom commands from the centOS to the UCS Linux.&lt;/P&gt;
&lt;P&gt;* If you copy pasted the Webex_bot folder on your centOS, where again I am assuming you did all your custom code to meet the requirements, instead of doing pip install and did all you coding on that folder you could copy paste that Webex_bot folder &amp;nbsp;from CentOS into the path of the where the main.py exists in the UCS, fix any the import statements to match the new folder structure and that will work.&lt;/P&gt;
&lt;P&gt;Both of the approaches above are McGivers/Jimmy Rigging to get you back up quick after a las minute move &amp;nbsp;but they are not for sure the best practice at all, the right way to go is to containerize your code with Docker, test it in your PC to make sure it works and finally you install docker on your UCS Linux, load up the fully tested container with you code and you have a hassle free server migration.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2024 07:22:05 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218431#M3909</guid>
      <dc:creator>mparra.fusionet</dc:creator>
      <dc:date>2024-11-01T07:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218766#M3912</link>
      <description>&lt;P&gt;Thanks! As mentioned in my post, my code works on my local environment with python3.11 virtual environment &amp;amp; I get the expected notifications inside the webex room I created.&lt;/P&gt;
&lt;P&gt;While commenting, it doesn't work on my UCS with pip install or yum, it's installed without any error &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me try to run the code from my UCS now. Thanks! (I might have tried pip install 10 times before generating this post , but it dint work.) Now it worked.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Nov 2024 19:07:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5218766#M3912</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-01T19:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5219440#M3913</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;I was able to install the required packages &amp;amp; triggered the script, but getting following error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2024-11-03 23:08:48 [INFO] [webex_bot.webex_bot.webex_bot.get_me_info]:102 Running as bot 'Device_Hardware_Info' with email ['abc@webex.bot']&lt;BR /&gt;2024-11-03 23:08:49 [INFO] [webex_websocket_client.webex_bot.websockets.webex_websocket_client._connect_and_listen]:213 Opening websocket connection to wss://mercury-connection-partition2-a.wbx2.com/v1/apps/wx2/registrations/be9d3f99-5a4c-4529-8aa9-9b857901ee2c/messages&lt;BR /&gt;2024-11-03 23:08:59 [ERROR] [webex_websocket_client.webex_bot.websockets.webex_websocket_client.run]:241 runException: &lt;BR /&gt;2024-11-03 23:09:00 [INFO] [webex_websocket_client.webex_bot.websockets.webex_websocket_client._connect_and_listen]:213 Opening websocket connection to wss://mercury-connection-partition2-a.wbx2.com/v1/apps/wx2/registrations/ce566a33-a905-4f24-8d73-76b46b172c9e/messages&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 655, in __await_impl_timeout__&lt;BR /&gt;return await self.__await_impl__()&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 659, in __await_impl__&lt;BR /&gt;_transport, _protocol = await self._create_connection()&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 1069, in create_connection&lt;BR /&gt;sock = await self._connect_sock(&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 973, in _connect_sock&lt;BR /&gt;await self.sock_connect(sock, address)&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 634, in sock_connect&lt;BR /&gt;return await fut&lt;BR /&gt;^^^^^^^^^&lt;BR /&gt;asyncio.exceptions.CancelledError&lt;/P&gt;
&lt;P&gt;The above exception was the direct cause of the following exception:&lt;/P&gt;
&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/webex_bot/websockets/webex_websocket_client.py", line 239, in run&lt;BR /&gt;asyncio.get_event_loop().run_until_complete(_connect_and_listen())&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 653, in run_until_complete&lt;BR /&gt;return future.result()&lt;BR /&gt;^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;[Previous line repeated 1 more time]&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/webex_bot/websockets/webex_websocket_client.py", line 227, in _connect_and_listen&lt;BR /&gt;async with connect as _websocket:&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 637, in __aenter__&lt;BR /&gt;return await self&lt;BR /&gt;^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 654, in __await_impl_timeout__&lt;BR /&gt;async with asyncio_timeout(self.open_timeout):&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/timeouts.py", line 111, in __aexit__&lt;BR /&gt;raise TimeoutError from exc_val&lt;BR /&gt;TimeoutError&lt;/P&gt;
&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;
&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 655, in __await_impl_timeout__&lt;BR /&gt;return await self.__await_impl__()&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 659, in __await_impl__&lt;BR /&gt;_transport, _protocol = await self._create_connection()&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 1069, in create_connection&lt;BR /&gt;sock = await self._connect_sock(&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 973, in _connect_sock&lt;BR /&gt;await self.sock_connect(sock, address)&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/selector_events.py", line 634, in sock_connect&lt;BR /&gt;return await fut&lt;BR /&gt;^^^^^^^^^&lt;BR /&gt;asyncio.exceptions.CancelledError&lt;/P&gt;
&lt;P&gt;The above exception was the direct cause of the following exception:&lt;/P&gt;
&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/root/Device_Hardware_Details/bot.py", line 24, in &amp;lt;module&amp;gt;&lt;BR /&gt;bot.run()&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/webex_bot/websockets/webex_websocket_client.py", line 246, in run&lt;BR /&gt;asyncio.get_event_loop().run_until_complete(_connect_and_listen())&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/base_events.py", line 653, in run_until_complete&lt;BR /&gt;return future.result()&lt;BR /&gt;^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/backoff/_async.py", line 151, in retry&lt;BR /&gt;ret = await target(*args, **kwargs)&lt;BR /&gt;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;BR /&gt;[Previous line repeated 1 more time]&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/webex_bot/websockets/webex_websocket_client.py", line 227, in _connect_and_listen&lt;BR /&gt;async with connect as _websocket:&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 637, in __aenter__&lt;BR /&gt;return await self&lt;BR /&gt;^^^^^^^^^^&lt;BR /&gt;File "/usr/local/lib/python3.11/site-packages/websockets/legacy/client.py", line 654, in __await_impl_timeout__&lt;BR /&gt;async with asyncio_timeout(self.open_timeout):&lt;BR /&gt;File "/usr/local/lib/python3.11/asyncio/timeouts.py", line 111, in __aexit__&lt;BR /&gt;raise TimeoutError from exc_val&lt;BR /&gt;TimeoutError&lt;/P&gt;
&lt;P&gt;Can someone please help here? When executed from my local machine, I dont see this error.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2024 07:13:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5219440#M3913</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-04T07:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5219907#M3915</link>
      <description>&lt;P&gt;Seems there is some basic network connection issue - the connection is timing out when trying to connect to the websocket service at &lt;STRONG&gt;wss://mercury-connection-partition2-a.wbx2.com/v1/apps/wx2/registrations/be9d3f99-5a4c-4529-8aa9-9b857901ee2c/messages&lt;/STRONG&gt;&lt;BR /&gt;Perhaps a DNS or firewall issue..?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2024 18:52:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5219907#M3915</guid>
      <dc:creator>DavidStaudt</dc:creator>
      <dc:date>2024-11-04T18:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221299#M3918</link>
      <description>&lt;P&gt;I have added a proxy to the server. Using the proxy, I can connect to google.com, but couldn't connect to WebSocket. Is there any way to resolve this?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 05:17:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221299#M3918</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-07T05:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221305#M3919</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/355663"&gt;@o1&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;In the past 7 months the webex_bot library added proxy support by changing the underlying websocket library from websockets to websockets_proxy, before that there was no proxy support (this reminds me to update some previous old posts when I told people that it wasn't supported).&lt;BR /&gt;&lt;BR /&gt;So,&amp;nbsp; if your UCS linux server is behind a proxy for internet access, besides setting up the proxy on the UCS Linux as you did already, you need to add via code (assuming you have webex_bot == 0.5.2 which is where support for proxies was added 7 months ago) the following lines:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN class="pl-k"&gt;import&lt;/SPAN&gt; &lt;SPAN class="pl-s1"&gt;os&lt;/SPAN&gt;

&lt;SPAN class="pl-k"&gt;from&lt;/SPAN&gt; &lt;SPAN class="pl-s1"&gt;webex_bot&lt;/SPAN&gt;.&lt;SPAN class="pl-s1"&gt;commands&lt;/SPAN&gt;.&lt;SPAN class="pl-s1"&gt;echo&lt;/SPAN&gt; &lt;SPAN class="pl-k"&gt;import&lt;/SPAN&gt; &lt;SPAN class="pl-v"&gt;EchoCommand&lt;/SPAN&gt;
&lt;SPAN class="pl-k"&gt;from&lt;/SPAN&gt; &lt;SPAN class="pl-s1"&gt;webex_bot&lt;/SPAN&gt;.&lt;SPAN class="pl-s1"&gt;webex_bot&lt;/SPAN&gt; &lt;SPAN class="pl-k"&gt;import&lt;/SPAN&gt; &lt;SPAN class="pl-v"&gt;WebexBot&lt;/SPAN&gt;

&lt;SPAN class="pl-c"&gt;# (Optional) Proxy configuration&lt;/SPAN&gt;
&lt;SPAN class="pl-c"&gt;# Supports https or wss proxy, wss prioritized.&lt;/SPAN&gt;
&lt;SPAN class="pl-s1"&gt;proxies&lt;/SPAN&gt; &lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt; {
    &lt;SPAN class="pl-s"&gt;'https'&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;'http://proxy.esl.example.com:80'&lt;/SPAN&gt;,  #Proxy port and proxy would need to be set here!
    &lt;SPAN class="pl-s"&gt;'wss'&lt;/SPAN&gt;: &lt;SPAN class="pl-s"&gt;'socks5://proxy.esl.example.com:1080'&lt;/SPAN&gt;
}

&lt;SPAN class="pl-c"&gt;# Create a Bot Object&lt;/SPAN&gt;
&lt;SPAN class="pl-s1"&gt;bot&lt;/SPAN&gt; &lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt; &lt;SPAN class="pl-v"&gt;WebexBot&lt;/SPAN&gt;(&lt;SPAN class="pl-s1"&gt;teams_bot_token&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pl-s1"&gt;os&lt;/SPAN&gt;.&lt;SPAN class="pl-en"&gt;getenv&lt;/SPAN&gt;(&lt;SPAN class="pl-s"&gt;"WEBEX_TEAMS_ACCESS_TOKEN"&lt;/SPAN&gt;),
               &lt;SPAN class="pl-s1"&gt;approved_rooms&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;[&lt;SPAN class="pl-s"&gt;'06586d8d-6aad-4201-9a69-0bf9eeb5766e'&lt;/SPAN&gt;],
               &lt;SPAN class="pl-s1"&gt;bot_name&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pl-s"&gt;"My Teams Ops Bot"&lt;/SPAN&gt;,
               &lt;SPAN class="pl-s1"&gt;include_demo_commands&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;True&lt;/SPAN&gt;,
               &lt;SPAN class="pl-s1"&gt;proxies&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pl-s1"&gt;proxies&lt;/SPAN&gt;)
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Key Take-aways:&lt;/P&gt;
&lt;P&gt;1- Make sure you have webex_bot 0.5.2&lt;/P&gt;
&lt;P&gt;2- Make sure you populate the proxies dictionary and pass it as a parameter when instantiating the WebexBot object as depicted above&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 05:33:19 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221305#M3919</guid>
      <dc:creator>mparra.fusionet</dc:creator>
      <dc:date>2024-11-07T05:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221331#M3920</link>
      <description>&lt;P&gt;Thanks a lot! This worked as expected. Now the Websocket is opened from my UCS server &amp;amp; I can generate the required o/p on my bot based on the inputs. Now to use this bot for multiple users, I added the bot in the webex room. In the approved_rooms parameter, I mentioned the id of the room. But I dont see any response inside the room based on my input. Getting the response in the room is important where I can add multiple users. Am I missing any parameter to add here to get the response in the webex room where I already added my bot?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 07:03:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221331#M3920</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-07T07:03:08Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221333#M3921</link>
      <description>&lt;P&gt;Here is one more question : how can I make other users to use the bot? While testing with the other users, I found out that, other users are not able to receive the required output based on the input they provide. Do I need to add the users anywhere in the bot or the room?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 07:15:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221333#M3921</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-07T07:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221618#M3926</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/355663"&gt;@o1&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;Without looking at the main.py where the bot.run() is it is hard to guess but please remove all restrictions, like, there was another one where you can restrict it to specific users, if you have it also remove it from the instantiation of the Webex_bot object&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN class="pl-s1"&gt;approved_rooms&lt;/SPAN&gt;&lt;SPAN class="pl-c1"&gt;=&lt;/SPAN&gt;[&lt;SPAN class="pl-s"&gt;'06586d8d-6aad-4201-9a69-0bf9eeb5766e'&lt;/SPAN&gt;]&lt;/PRE&gt;
&lt;P&gt;Or any other restriction to user defined in the webex_bot library, we make extensive use of bots an the beauty is that they can be shared with anyone by default as long as they talk directly to the bot in 1:1 message,&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 16:44:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221618#M3926</guid>
      <dc:creator>mparra.fusionet</dc:creator>
      <dc:date>2024-11-07T16:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221664#M3929</link>
      <description>&lt;P&gt;Thanks! It worked! Though not in room, but the users could use it for 1:1 purpose. Now 2 users are using this bot (I + one more user). I see that if any input provided, I am getting the response twice which is equal to the current number of users currently opened the bot window. Has it something to do with the code?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:45:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221664#M3929</guid>
      <dc:creator>o1</dc:creator>
      <dc:date>2024-11-07T18:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: webex_bot package to be installed on Linux OS systems</title>
      <link>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221665#M3930</link>
      <description>&lt;P&gt;Yes this has to be related to the code, I’m guessing you might be also using the standard webexpythonsdk to get via a for statement who this bot is talking to and from there send a message to that list of spaces&amp;nbsp;&lt;/P&gt;&lt;P&gt;Natively 1:1 messages stay within that 1:1 space, only via code you could be achieving that behavior&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:51:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/webex-for-developers/webex-bot-package-to-be-installed-on-linux-os-systems/m-p/5221665#M3930</guid>
      <dc:creator>parram2.hhc</dc:creator>
      <dc:date>2024-11-07T18:51:54Z</dc:date>
    </item>
  </channel>
</rss>

