Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deuill/slidge-whatsapp
Mirror of Whatsapp/XMPP gateway
https://github.com/deuill/slidge-whatsapp
bridge whatsapp xmpp
Last synced: 17 days ago
JSON representation
Mirror of Whatsapp/XMPP gateway
- Host: GitHub
- URL: https://github.com/deuill/slidge-whatsapp
- Owner: deuill
- License: agpl-3.0
- Created: 2024-12-02T20:14:11.000Z (25 days ago)
- Default Branch: master
- Last Pushed: 2024-12-09T01:13:36.000Z (19 days ago)
- Last Synced: 2024-12-11T08:39:04.980Z (17 days ago)
- Topics: bridge, whatsapp, xmpp
- Language: Go
- Homepage: https://git.sr.ht/~nicoco/slidge-whatsapp
- Size: 726 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slidge-whatsapp
[Home](https://sr.ht/~nicoco/slidge) |
[Docs](https://slidge.im/slidge-whatsapp) |
[Issues](https://todo.sr.ht/~nicoco/slidge-whatsapp) |
[Patches](https://lists.sr.ht/~nicoco/public-inbox) |
[Chat](xmpp:[email protected]?join)A
[feature-rich](https://slidge.im/slidge-whatsapp/features.html)
[WhatsApp](https://whatsapp.com) to
[XMPP](https://xmpp.org/) puppeteering
[gateway](https://xmpp.org/extensions/xep-0100.html), based on
[slidge](https://slidge.im) and
[whatsmeow](https://github.com/tulir/whatsmeow).[![builds.sr.ht status](https://builds.sr.ht/~nicoco/slidge-whatsapp/commits/master/ci.yml.svg)](https://builds.sr.ht/~nicoco/slidge-whatsapp/commits/master/ci.yml)
[![containers status](https://builds.sr.ht/~nicoco/slidge-whatsapp/commits/master/container.yml.svg)](https://builds.sr.ht/~nicoco/slidge-whatsapp/commits/master/container.yml)
[![pypi status](https://badge.fury.io/py/slidge-whatsapp.svg)](https://pypi.org/project/slidge-whatsapp/)## Installation
Refer to the [slidge admin documentation](https://slidge.im/core/admin/)
for general info on how to set up an XMPP server component.### Containers
From [dockerhub](https://hub.docker.com/r/nicocool84/slidge-whatsapp)
```sh
# use ravermeister/slidge-whatsapp for arm64 (thanks raver! <3)
docker run docker.io/nicocool84/slidge-whatsapp
```### Python package
With [pipx](https://pypa.github.io/pipx/):
```sh
# for the latest stable release (if any)
pipx install slidge-whatsapp# for the bleeding edge
pipx install slidge-whatsapp==0.0.0.dev0 \
--pip-args='--extra-index-url https://slidge.im/repo'# to update bleeding edge installs
pipx install slidge-whatsapp==0.0.0.dev0 \
--pip-args='--extra-index-url https://slidge.im/repo' --forceslidge-whatsapp --help
```Make sure to install `ffmpeg` for full outgoing media compatibility; for
example, in Debian/Ubuntu:```sh
sudo apt install ffmpeg
```## Dev
```sh
git clone https://git.sr.ht/~nicoco/slidge
git clone https://git.sr.ht/~nicoco/slidge-whatsapp
cd slidge-whatsapp
docker-compose up
```