bwb
Project description
bwb
bot with bot.
Usage
Install with pip install --upgrade bwb.
from bwb import bwb
bwb = bwb.bwb(TELEGRAM_ID)
Handshaking
Boot up:
client.send_message(CHAT_ID, '000000init ' + bwb.init())
On 000000init [data]:
event.respond('000000handshake ' + bwb.handshake(data))
On 000000handshake [data]:
event.respond(bwb.wrap('secret ' + bwb.secret(data), handshake=True))
On Handshake OTP authed 123456secret [data]:
bwb.set_secret(data)
event.respond(bwb.wrap('🤝'))
On OTP authed 123456🤝:
event.respond('🤝')
Interaction
Run every incoming message through bwb.parse() since it's inexpensive. This will decrypt and remove base58 encoding.
Once decoded, send it through bwb.check_auth() which will return True or False if the code is valid.
Example:
text = bwb.parse(text)
if text.startswith('!'):
...
elif text.startswith('000000'):
text = text[6:]
elif bwb.check_auth(text, handshake=True):
handshake_authed = True
text = text[6:]
elif bwb.check_auth(text):
authed = True
text = text[6:]
else:
return
Use bwb.wrap() to auth and encode outgoing commands.
Params:
wrap(text, handshake=False, target=None, b58=False, enc=False)
Examples:
out = bwb.wrap('ping') # broadcast all bots
out = bwb.wrap('ping', target=TANNER) # auth for Tannerbot
out = bwb.wrap('ping', target=JASON, enc=True) # base58 encrypt
out = bwb.wrap('ping', target=MOLLY, b58=True) # base58
Development
Setup
Clone the repo.
To test your changes:
pip install --upgrade ~/path/to/bwb
Deployment
Install setuptools:
python3 -m pip install --user --upgrade setuptools wheel
- Increment version number in
setup.py
Build and upload:
bash build-upload.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bwb-3.0.0.tar.gz.
File metadata
- Download URL: bwb-3.0.0.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09d5a6e573f2723b1629263335b4ebd0b30c2cfb6b022060178877c17cf50c46
|
|
| MD5 |
64bd6e56c89aff724ce6252bd03b1985
|
|
| BLAKE2b-256 |
2545931504771e75e9423090f3c4a12d148a3b295034231d97fd73b55d011c02
|
File details
Details for the file bwb-3.0.0-py3-none-any.whl.
File metadata
- Download URL: bwb-3.0.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.14.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
984f5c2edfc8a31ea31e3934d35b0b094db412a7709ab133bd1c4622ea7245c3
|
|
| MD5 |
59a9e60fb2c146c3c2d7b58ee1d5376f
|
|
| BLAKE2b-256 |
7de555de44cc3f800fb8b95a0c10a0023681bdaf2b7c59020452c9d162bf5191
|