bwb
Project description
bwb
bot with bot.
Usage
Install with pip install bwb
.
# Import one of:
from bwb.tanner import bwb
from bwb.jason import bwb
from bwb.tdev import bwb
from bwb.molly import bwb
Handshaking
On boot up, send 000000handshake
to BWB chat.
When you see a 000000handshake
:
secret = bwb.init()
await client.send_message(BWB, '000000handshake ' + secret)
When you see a 000000handshake [secret data]
:
bwb.init(secret_data)
await client.send_message(BWB, bwb.wrap('🤝'))
When you see and authed '🤝', reply with '🤝'.
Interaction
Run every incoming message through bwb.parse()
since it's inexpensive. This will decrypt and remove base58 encoding. If the command is invalid, text
will be None
.
Example:
if text.startswith('!'):
...
else:
authed, text = bwb.parse(text)
if note text: return
Use bwb.wrap()
to auth and encode outgoing commands.
Params:
wrap(text, 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) # 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
bwb-1.0.4.tar.gz
(3.1 kB
view details)
Built Distribution
bwb-1.0.4-py3-none-any.whl
(4.0 kB
view details)
File details
Details for the file bwb-1.0.4.tar.gz
.
File metadata
- Download URL: bwb-1.0.4.tar.gz
- Upload date:
- Size: 3.1 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 | cd395bfd369c27f61de2e8957a8e33b4b325d3cf9ff9d5b3b1d680346ac21e1d |
|
MD5 | 416938ab75d188346f34271f5448a6f6 |
|
BLAKE2b-256 | 7db9ffb20a86c3313d800b0d9d57d8df6f4ff394cb632c96824590629529651c |
File details
Details for the file bwb-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: bwb-1.0.4-py3-none-any.whl
- Upload date:
- Size: 4.0 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 | cda45aa3e2caafd8dc25a4be58763c686faaefed51f1c5513b79fad1828f3abd |
|
MD5 | e6bc5da193e3d1f0cbd37bcdb02c4a3b |
|
BLAKE2b-256 | f74d1480b18bffdd875f6fb50ce240dcf895bcefef287a126dce28db43dd89d5 |