Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tolgatasci committed Mar 17, 2021
1 parent 6a40eb6 commit 6b16a9f
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,38 @@
# whatsapp-api-python
# Whatsapp Unofficial Api Python
Whatsapp unofficial api for python. Very EASY and very FAST.

First one register and get device https://whatsapp.securedatainfo.com/

Use git clone https://github.com/tolgatasci/whatsapp-api-python

Load module

from api import Api

Example

'''
api = Api(device_token="")
messages = api.messages(limit=20)
print(messages)

incoming_message = api.incoming_messages()
print(incoming_message)

show_message = api.show_message("")
print(show_message)

files = {'file': ('test.jpg', open('test.jpg', 'rb'))}
send_message = api.send_message(message_body="test", phone_numbers=["+905467751802"], files=files)
print(send_message)

send_code = api.send_code(code="053666", phone="+905467751802")
print(send_code)
info = api.info()
print(info)

core_get = api.GET(method='test',params=dict(test="1"))
core_post = api.GET(method='test', params=dict(test="1"))
'''


0 comments on commit 6b16a9f

Please sign in to comment.