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
1 answer

Can't install yowsup

I want to create a simple Whatsapp Bot, so I searched about it. First I tryied the official Whatsapp API, but I'm making it just for fun, so I don't think they'll accept my request. Anyway, I tryed installing yowsup, but when I try pip install…
Hue
  • 13
  • 2
0
votes
1 answer

Read output from subprocess cli, yowsup-cli to store the output

I have made the following subprocess to interact with the yowsup-cli. connection_string = "python /root/yowsup/yowsup-cli demos --yowsup --config config.json" popen_parameters = connection_string.split(" ") proc = Popen(popen_parameters,…
sinaps1
  • 57
  • 9
0
votes
1 answer

How can I fix yowsup stream: code 503 error?

I'm running presence subscription for too many numbers via yowsup-cli. But after a while I get stream:error code = "503" error. This usually happens after 15 minutes. How can I solve this problem? I'm getting this error: { "data": "D 2020-04-24…
devapp
  • 1
  • 1
0
votes
1 answer

the yowsup library does not work when I try to register

I installed the next packages in my raspberry with pip3: -python-axolotl -protobuf -six -argparse -readline -pillow -tqdm -requests -pycrypto -blinker Next I installed yowsup with pip3 install yowsup So, I download a repository,…
0
votes
1 answer

Running yowsup in Visual Studio

I have add a yowsup project in visual studio 2015. In command prompt I run it using yowsup-cli -demos, my question is how to run it from visual studio?
xxi123
  • 61
  • 6
0
votes
1 answer

yowsup registration error with --cc or C

I am using this command to register my device yowsup-cli registration -d -E android -m 404 -n 24 -r sms -C +91 -p +9189******** this is the version of yowsup2. yowsup-cli v2.0.15 yowsup v2.5.2 and getting…
Kalariya_M
  • 1,357
  • 12
  • 20
0
votes
2 answers

Unable to do Whatsapp Registration using yowsup-cli

I am trying to write a sample python script that sends message to the listed whatsapp number. Upon little research, i found this python library "yowsup". I am trying to register using the cli command written below: yowsup-cli registration…
Gaurav Parashar
  • 1,347
  • 2
  • 19
  • 21
0
votes
1 answer

Interact with python script inside nodejs application at runtime

Hello I'm trying to interact with a python script inside a nodejs application at runtime. The python script is more a command center for doing whatsapp operations called yowsup. https://github.com/tgalal/yowsup/tree/master I'm able to run the…
Kingalione
  • 4,237
  • 6
  • 49
  • 84
0
votes
1 answer

How to send simple message with yowsup

I'm trying to send a message to a whatsapp number with yowsup. I was able to request a SMS and password. But when I run: yowsup-cli demos -d -c config_test -s "number" "Message test" -d I'm getting this message and the message is not…
Filipe Ferminiano
  • 8,373
  • 25
  • 104
  • 174
0
votes
2 answers

Trying to send a message with Yowsup Python

Hello there im trying to send a message with yowsup but i have not been successful can you please help me im getting IndentationError: unexpected indent Thank you from yowsup.layers.interface import YowInterfaceLayer,…
Saxtor
  • 449
  • 1
  • 4
  • 15
0
votes
2 answers

Register mobile number with WhatsApp using Yowsup and phone

I have successfully registered a number with WhatsApp using Yowsup CLI like so: Get the SMS: python yowsup-cli registration --phone xxxxxxxxxxx --cc 1 -r sms Register after getting the code: python yowsup-cli registration --register xxx-xxx…
0
votes
2 answers

fixing old_version on yowsup

I have been tring to register number on Yowsup, but I got old_version error. Here is my env_s40.py file: from .env import YowsupEnv import hashlib class S40YowsupEnv(YowsupEnv): _VERSION = "2.16.11" _OS_NAME= "S40" _OS_VERSION =…
Cholowao
  • 947
  • 12
  • 18
0
votes
0 answers

Yowsup - Whatsapp Python Library

I am absolutely new to Python and the Rasberry Pi. I had a look at the Yowsup library to be able to send a Whatsapp message with my Rasberry Pi. By using yowsup-cli I can send a message etc. My problem.... I dont understand the sample programs at…
Systellence
  • 119
  • 2
  • 8
0
votes
1 answer

Yowsup authorization not working

I recently tried implementing yowsup python client on my raspberry pi (running raspbian). I have downloaded all relevant libraries for yowsup and completed the 2 step registration process. I took the sample layer.py and run.py files from the yowsup…
user1861013
  • 139
  • 8
0
votes
2 answers

How to get the message sender in yowsup cli echo?

I'm using Yowsup cli to send and receive messages using whatsapp. I could register and send the messages. But when I execute this command to listen the incoming messages: yowsup-cli demos --login number:password --echo -E s40 I can see the message…
Denise
  • 69
  • 7