Questions tagged [yowsup]

Yowsup is a Python library that allows you to login and use the WhatsApp service and provides you with all capabilities of an official WhatsApp client, allowing you to create a full-fledged custom WhatsApp client.

About Yowsup

Yowsup is a python library that allows you to do all the previous in your own app. Yowsup allows you to login and use the WhatsApp service and provides you with all capabilities of an official WhatsApp client, allowing you to create a full-fledged custom WhatsApp client.

A solid example of Yowsup's usage is Wazapp. Wazapp is full featured WhatsApp client that is being used by hundreds of thousands of people around the world. Yowsup is born out of the Wazapp project. Before becoming a separate project, it was only the engine powering Wazapp. Now that it matured enough, it was separated into a separate project, allowing anyone to build their own WhatsApp client on top of it. Having such a popular client as Wazapp, built on Yowsup, helped bring the project into a much advanced, stable and mature level, and ensures its continuous development and maintenance.

Yowsup also comes with a cross platform command-line frontend called yowsup-cli. yowsup-cli allows you to jump into connecting and using WhatsApp service directly from command line.

62 questions
0
votes
0 answers

nagios alerts with yowsup-cli

I've created the following command to send nagios alerts via whatsapp. This command sends the alerts to a whatsapp group. /usr/bin/yowsup-cli demos -c /etc/yowsup-cli.conf -s 49phonenumber-1471509469 '***** NAGIOS Notification ***** -- Type:…
Erjol Bane
  • 47
  • 8
0
votes
1 answer

pywhatsapp/yowsup2 not running under apache/wsgi

Pywhatsapp (wrapper for yowsup2 - an whatsapp python api) to send messages from my Django app. from whatsapp import Client whatsapp_client.send_message(to, message) above code sends the message fine when I use Django's default development server.…
gowthaman
  • 3
  • 2
0
votes
1 answer

yowsup2 no module named _sqlite3

I'm having the below error when I try to run the yowsup-cli command to send a message. This is the command I'm running: yowsup-cli demos -c /etc/yowsup-cli.conf -s 'phone number' "text" I'm running it on Linux CentOS 5.11 which comes with python…
Erjol Bane
  • 47
  • 8
0
votes
1 answer

yowsup2 receives incomplete messages and strange characters

I am try Yowsup2 with demo EchoClient: yowsup-cli demos -c config.example -e I receive messages, but they are incomplete and contain strange characters at the end of each text. For example: I send "What is your name?" from my mobile phone to…
Juan Ma
  • 1
  • 1
0
votes
2 answers

yowsup installation on windows

I am following these procedures for installation: https://github.com/tgalal/yowsup/blob/master/README.md and completed yowsup2 installation successfully with this command pip install yowsup2 and now I am trying to register my phone number in…
Mihir Chauhan
  • 141
  • 1
  • 11
0
votes
0 answers

Python WhatsApp: No module named yowsup

I am keep getting this error despite of it's already installed. Check below: MacBook:examples User$ python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright",…
Volatil3
  • 14,253
  • 38
  • 134
  • 263
0
votes
1 answer

Python Yowsup - Group Messages

I installed YowSup and configured it, when yowsup recieves a message from group it crashes, this is what i've got: As i can see there's something with asyncore but i dont know what and why. http://pastebin.com/raw/tuY7geWC
Kaczper
  • 103
  • 1
  • 2
  • 11
0
votes
1 answer

yowsup-celery How to run yowsup-celery in daemon mode passing whats app config file as argument

I am using: yowsup-celery: https://github.com/jlmadurga/yowsup-celery For trying to integrate whats app in my system. I have been successfully able to store messages and want to now run celery in daemon mode rather than running in terminal To run it…
Alok Agarwal
  • 3,071
  • 3
  • 23
  • 33
0
votes
0 answers

Yowsup working on normal EC2 instance but not on Heroku

I have developed a micro-service in django to access the yowsup2 library for whatsapp. Everything works fine on my local environment with the procfile configured correctly. web: gunicorn XXXXX.wsgi --workers=1 After I configured it on…
Moiz Arsiwala
  • 61
  • 1
  • 8
0
votes
1 answer

How to read whatsapp receiving message via yowsup-cli?

I am newbie in yowsup.I am a php programmer i have read receiving whatsapp messages via yowsup-cli. Is it possible? Thanks in advance
jobindcruz
  • 1
  • 1
  • 2
0
votes
1 answer

Python: Subprocess cannot get the process' outputs

Background information: I am writing a Python application which will receive WhatsApp messages and perform some actions based on the provided commands. For that, I have installed yowsup, which is also a Python application which deals with the…
user1688175
0
votes
0 answers

unorderable type error in module python-axolotl-curve25519.py

I wanted to install the module python-axolotl-curve25519.py but I keep getting an unorderable type error .TypeError: unorderable types: NoneType() >= str(). I have tried it on python 3.4 and python 2.7. but I keep getting the same error from both…
kehindesalaam
  • 45
  • 1
  • 8
0
votes
2 answers

Yowsup installation missing connectionmanager.py

It seems that I cannot get yowsup properly installed under Windows 7. I am following these procedures for installation: https://github.com/tgalal/yowsup/blob/master/README.md doing a pip install yowsup2 python setup.py install I have omitted…
tfv
  • 6,016
  • 4
  • 36
  • 67
0
votes
1 answer

syntax error in YOWSUP

i am following this tutorial : http://xebee.xebia.in/index.php/2013/11/25/yowsup-the-whatsapp-api/ in step 3 when i execute this on my terminal : $ python yowsup-cli -c config.example -r sms i get a syntax error saying File "yowsup-cli", line…
-1
votes
1 answer

How to make submenus?

I would like a help to make submenus, from the menu number "1". I tried using the code below but it did not work. Here is my code: @signals.message_received.connect def handle(message): # Main menu if message.command == "Olá": …
Maicon Costa
  • 23
  • 1
  • 5