<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: BrainBot</title>
    <description>The latest articles on DEV Community by BrainBot (@brainbot).</description>
    <link>https://dev.to/brainbot</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Forganization%2Fprofile_image%2F3106%2F69b609ad-9f8b-4595-8faa-9650947adf0c.jpg</url>
      <title>DEV Community: BrainBot</title>
      <link>https://dev.to/brainbot</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brainbot"/>
    <language>en</language>
    <item>
      <title>Meet BrainBot! 🧠🤖</title>
      <dc:creator>Ben Soyka</dc:creator>
      <pubDate>Tue, 06 Oct 2020 18:30:17 +0000</pubDate>
      <link>https://dev.to/brainbot/meet-brainbot-nbn</link>
      <guid>https://dev.to/brainbot/meet-brainbot-nbn</guid>
      <description>&lt;p&gt;BrainBot is a fun new bot for Ryver, a team communication platform. It's written in Python using &lt;a href="https://pypi.org/project/pyryver/"&gt;the &lt;code&gt;pyryver&lt;/code&gt; module&lt;/a&gt; and uses an existing account to log in.&lt;/p&gt;

&lt;p&gt;The bot's main feature is its ability to bring in a random and fun conversation starter to liven up a group chat on Ryver.&lt;/p&gt;

&lt;h1&gt;
  
  
  BrainBot is looking for contributors, and we'd love your help.
&lt;/h1&gt;

&lt;p&gt;The bot is open-source on GitHub and usually has a handful of open issues you can work on to improve the BrainBot experience for everyone.&lt;/p&gt;

&lt;p&gt;All you need to do to get started is visit the bsoyka/brainbot repo on GitHub:&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vJ70wriM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/github-logo-ba8488d21cd8ee1fee097b8410db9deaa41d0ca30b004c0c63de0a479114156f.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/bsoyka"&gt;
        bsoyka
      &lt;/a&gt; / &lt;a href="https://github.com/bsoyka/brainbot"&gt;
        brainbot
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A simple and fun Ryver bot to liven up the conversation
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;h1&gt;
BrainBot &lt;a href="https://github.com/bsoyka/brainbot/releases/tag/v0.3.1"&gt;&lt;img src="https://camo.githubusercontent.com/9574763591c85f8de72dd840ff576bcfe9ec8808/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d302e332e312d6f72616e6765" alt="Version 0.3.1"&gt;&lt;/a&gt; &lt;a href="https://github.com/bsoyka/brainbot/blob/master/LICENSE"&gt;&lt;img src="https://camo.githubusercontent.com/ee1ac68d16bf982ae3b5fa88102f0736c907d2ec/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e" alt="MIT License"&gt;&lt;/a&gt; &lt;a href="https://raw.githubusercontent.com/bsoyka/brainbot/master/#contributors-"&gt;&lt;img src="https://camo.githubusercontent.com/b73dddddcd48595c50a5f6a0f9320ed1747c5867/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f616c6c5f636f6e7472696275746f72732d332d6f72616e67652e737667" alt="All Contributors"&gt;&lt;/a&gt; &lt;a href="https://github.com/bsoyka/brainbot/stargazers"&gt;&lt;img src="https://camo.githubusercontent.com/06f23671a1acf3e5ea8b9e2a17a11b22e10e4a6c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f62736f796b612f627261696e626f743f7374796c653d736f6369616c" alt="GitHub stars"&gt;&lt;/a&gt;
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;A simple and fun Ryver bot to liven up the conversation&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
Usage&lt;/h2&gt;
&lt;p&gt;First of all, clone this repo to your local machine.&lt;/p&gt;
&lt;div class="highlight highlight-source-shell"&gt;&lt;pre&gt;$ git clone https://github.com/bsoyka/brainbot.git
...
$ &lt;span class="pl-c1"&gt;cd&lt;/span&gt; brainbot&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Now, make sure you have all the requirements installed and up-to-date:&lt;/p&gt;
&lt;div class="highlight highlight-source-shell"&gt;&lt;pre&gt;$ pip install --upgrade -r requirements.txt&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Next up, you'll need to set up some environment variables. Copy or rename the &lt;code&gt;.env.example&lt;/code&gt; file to &lt;code&gt;.env&lt;/code&gt; and fill in the values.&lt;/p&gt;
&lt;p&gt;Finally, run the bot with this simple command:&lt;/p&gt;
&lt;div class="highlight highlight-source-shell"&gt;&lt;pre&gt;$ python main.py&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Take a look at &lt;a href="https://github.com/bsoyka/brainbot/wiki"&gt;the BrainBot wiki&lt;/a&gt; to learn how to use the bot once it's up and running.&lt;/strong&gt;&lt;/p&gt;
&lt;h2&gt;
Contributors ✨
&lt;/h2&gt;
&lt;p&gt;Thanks goes to these wonderful people (&lt;a href="https://allcontributors.org/docs/en/emoji-key" rel="nofollow"&gt;emoji key&lt;/a&gt;):&lt;/p&gt;



&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;tbody&gt;
&lt;tr&gt;
    &lt;td&gt;
&lt;a href="http://bsoyka.me" rel="nofollow"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xj4m3w_e--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://avatars0.githubusercontent.com/u/37779854%3Fv%3D4" width="100px;" alt=""&gt;&lt;br&gt;&lt;b&gt;Ben Soyka&lt;/b&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/bsoyka/brainbot/commits?author=bsoyka" title="Code"&gt;💻&lt;/a&gt; &lt;a href="https://raw.githubusercontent.com/bsoyka/brainbot/master/#ideas-bsoyka" title="Ideas, Planning, &amp;amp; Feedback"&gt;🤔&lt;/a&gt; &lt;a href="https://github.com/bsoyka/brainbot/commits?author=bsoyka" title="Documentation"&gt;📖&lt;/a&gt; &lt;a href="https://raw.githubusercontent.com/bsoyka/brainbot/master/#maintenance-bsoyka" title="Maintenance"&gt;🚧&lt;/a&gt; &lt;a href="https://github.com/bsoyka/brainbot/pulls?q=is%3Apr+reviewed-by%3Absoyka" title="Reviewed Pull Requests"&gt;👀&lt;/a&gt;
&lt;/td&gt;
    &lt;td&gt;
&lt;a href="https://github.com/LukeG294"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gehXdJzL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://avatars3.githubusercontent.com/u/62516707%3Fv%3D4" width="100px;" alt=""&gt;&lt;br&gt;&lt;b&gt;LukeG294&lt;/b&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/bsoyka/brainbot/commits?author=LukeG294" title="Code"&gt;💻&lt;/a&gt; &lt;a href="https://raw.githubusercontent.com/bsoyka/brainbot/master/#ideas-LukeG294" title="Ideas, Planning, &amp;amp; Feedback"&gt;🤔&lt;/a&gt; &lt;a href="https://github.com/bsoyka/brainbot/pulls?q=is%3Apr+reviewed-by%3ALukeG294" title="Reviewed Pull Requests"&gt;👀&lt;/a&gt;
&lt;/td&gt;
    &lt;td&gt;
&lt;a href="https://www.linkedin.com/in/swapniljha001" rel="nofollow"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wO3wKkHZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://avatars0.githubusercontent.com/u/11735419%3Fv%3D4" width="100px;" alt=""&gt;&lt;br&gt;&lt;b&gt;Swapnil Jha&lt;/b&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="https://github.com/bsoyka/brainbot/commits?author=swapniljha001" title="Code"&gt;💻&lt;/a&gt;
&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;



&lt;p&gt;This project follows the &lt;a href="https://github.com/all-contributors/all-contributors"&gt;all-contributors&lt;/a&gt; specification. Contributions of any kind welcome!&lt;/p&gt;
&lt;/div&gt;



&lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/bsoyka/brainbot"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;p&gt;If you have any questions about using or contributing to BrainBot, feel free to ask in a comment or email &lt;a href="mailto:brainbot@bsoyka.me"&gt;brainbot@bsoyka.me&lt;/a&gt;!&lt;/p&gt;

</description>
      <category>contributorswanted</category>
      <category>hacktoberfest</category>
    </item>
  </channel>
</rss>
