WebWhatsapp-Wrapper
An API for sending and receiving messages over web.whatsapp [Working as of 18th May 2018]
File Explorer
Download Latest Version (.zip)- logomark-01.png
- logomark-01.png.bkp
- logomark-01.svg
- logomark-02.png
- logomark-02.svg
- logomark-03.png
- logomark-03.svg
- logotype-a-04.png
- logotype-a-04.svg
- logotype-a-05.png
- logotype-a-05.svg
- logotype-a-06.png
- logotype-a-06.svg
- logotype-b-07.png
- logotype-b-07.svg
- logotype-b-08.png
- logotype-b-08.svg
- logotype-b-09.png
- logotype-b-09.svg
- conf.py
- contribution_guide.md
- index.rst
- make.bat
- Makefile
- base.txt
- development.txt
- requirements-docs.txt
- .test
- log.txt
- Pipfile
- Pipfile.lock
- webapi.ini
- webapi.py
- wsgi.py
- async_echo.py
- echo.py
- log_all.py
- message_with_thumb.py
- new_messages_observer.py
- remote.py
- send_media.py
- test_remote.py
- commit.sh
- git-update-fork.sh
- .eslintrc.json
- .gitignore
- wapi.js
- __init__.py
- chat.py
- contact.py
- message.py
- number_status.py
- whatsapp_object.py
- __init__.py
- async_driver.py
- consts.py
- helper.py
- wapi_js_wrapper.py
- .all-contributorsrc
- .env
- .gitignore
- .travis.yml
- docker-compose.yml
- docker-entrypoint.sh
- Dockerfile
- ISSUE_TEMPLATE.md
- LICENSE.txt
- Makefile
- MANIFEST.in
- pylint.rc
- README.md
- requirements.txt
- setup.py
- tox.ini
# Installation Guide
git clone https://github.com/mukulhase/WebWhatsapp-Wrapper
Downloads the entire project code from GitHub to your computer.
cd WebWhatsapp-Wrapper
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker network create selenium
Type this command into your terminal and run it.
docker run -d -p 4444:4444 -p 5900:5900 --name firefox --network selenium -v /dev/shm:/dev/shm selenium/standalone-firefox-debug:3.14.0-curium
Runs the built image as an actual container.
docker build -t webwhatsapi .
Builds a runnable image based on the Dockerfile.
docker run --network selenium -it -e SELENIUM='http://firefox:4444/wd/hub' -v $(pwd):/app webwhatsapi /bin/bash -c "pip install ./;pip list;python sample/remote.py"
Runs the built image as an actual container.
docker run --network selenium -it -e SELENIUM='http://firefox:4444/wd/hub' -v "%cd%:/app" webwhatsapi /bin/bash -c "pip install ./;pip list;python sample/remote.py"
Runs the built image as an actual container.
Pulled directly from this repo's README.
3. Python
Easydocker run --network selenium -it -e SELENIUM='http://firefox:4444/wd/hub' -v $(pwd):/app webwhatsapi /bin/bash -c "pip install ./;pip list;python sample/remote.py"
Runs the built image as an actual container.
docker run --network selenium -it -e SELENIUM='http://firefox:4444/wd/hub' -v "%cd%:/app" webwhatsapi /bin/bash -c "pip install ./;pip list;python sample/remote.py"
Runs the built image as an actual container.
docker run --network selenium -it -e SELENIUM='http://firefox:4444/wd/hub' -v "$(pwd):/app".ToLower() webwhatsapi /bin/bash -c "pip install ./;pip list;python sample/remote.py"
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
