Skip to content

Sync a Discord channel with a GroupMe chat seamlessly.

Notifications You must be signed in to change notification settings

Theelx/groupme-discord

 
 

Repository files navigation

GroupMeDiscord

This is a fork of karmanyaahm's amazing fork of the original Discord-Groupme bridge. Currently the only additions over karmanyaahm's version are the ability to relay images from Groupme chats to Discord (and vice versa), and the ability to host it using flask and apache, though I'm willing to add more if requested!

See HOSTING.md for information on how to host this with flask and apache on an Ubuntu VPS, the original README using ngrok remains below.

I highly recommend getting your own VPS and not using ngrok if possible, as a cheap VPS at somewhere like Galaxygate (disclosure: affiliate link gives me 10% comission) can be $3/month with high performance as opposed to ngrok costing at least $5/month if you want any more than 40 connections/minute. A bridge between Discord and Groupme with only 1 person on each end can easily surpass 40 connections per minute (each message takes a connection to Discord and Groupme, so only 1 messages every 3 seconds) during active chatting.


Some Python scripts to interface between Discord and GroupMe.

Requirements

These scripts require Python 3.6+.
Before starting, make sure that you install the requirements with:

cd ~/path/to/GroupMe/
python3 -m pip install -r requirements.txt
touch last_message_id.txt
touch groupme_channels.txt
echo "{'0'}" > groupme_channels.txt # make sure ast.literal_eval intiailizes as a set

If you have issues with the discord.py installation, use the following command:

python3 -m pip install -U https://github.com/Rapptz/discord.py/archive/rewrite.zip#egg=discord.py

You also need to be able to expose the flask webserver.
The easiest method to do this is by using the ngrok tool. View the documentation here.
(Note that Theelx#4980 recommends using a VPS to host it, see HOSTING.md for instructions on that) Once ngrok is setup and authorized, execute the following command to recieve your ngrok URL (you'll need this later):

ngrok http 5000

Keep this process running as you start the application.

Discord Bot

In order to send messages from Discord to GroupMe, you will need to create a Bot Application.
To do this, first go to https://discordapp.com/developers/applications/me and login with your Discord account. Click "New App", fill in your App name, then click "Create App". image
You should be redirected to the application page of your bot.
Scroll down to the following prompt and select "Create a Bot User":
image
You will now be able to view the token of your bot application. image
Copy this token and paste it into your credentials.py file.

Webhook

The webserver will be sending GroupMe messages to a dedicated channel by using a Discord Webhook.
To create a webhook, navigate to a channel's edit page and select "Webhooks".
After creating a webhook, copy the webhook URL shown:
image
And paste it into your config file: image
There's just one more thing to do on the Discord side: enable User Settings -> Appearance -> Developer Mode and right click the channel that the webhook is using. Paste this number into your config file too.

GroupMe

Now that you've set up the Discord constants, you'll also need to setup your GroupMe Bot.
Navigate to https://dev.groupme.com/bots, login with your GroupMe account, and click "Create Bot". image
Fill in the appropriate fields, and in the Callback URL field, enter the URL that you got from ngrok. image
Once you've created the Bot, click on the bot's field to see the Bot ID. Copy this string and paste it in your config file:
image image
One more to go! On the same page, click the "Access Token" button to retrieve your access token. Copy this string and paste it into your config file:
image image

Configuration

Replace all the values in app.py.sample and credentials.py.sample with their proper values (you'll need to use stuff from the previous setup sections), and then rename the files to remove the .sample ending. You should have app.py and credentials.py now, and then you're set to go to the next step!

Usage

Create a folder named images inside this repo directory for image processing to work as intended. Run the application:

python3 everything_main.py

You should see any messages appear in the chosen Discord channel, and you will also be able to send messages and images to the GroupMe chat.

About

Sync a Discord channel with a GroupMe chat seamlessly.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.8%
  • Shell 1.2%