Skip to main content

A Python library to interact with official nandbox Bot API.

Project description

A Python nandbox Bot API

A Python library to interact with official Nandbox Bot API. A bot token is required and can be obtained this way.

Build your first bot

You can easily build your bot by following the below steps:

1.Setup your configuration object once you get your bot configuration data from nandbox app , copy it to a config object.

If you don't know how to get bot configuration data and token from nandbox

  • Open your bot in nandbox app then open the top right menu and click to Get token .This process explained in this video.

You will get data like this:

token:90091783784280234234WBBPmJAnSD5ILIkc6N6QjY3ZzeY
url:wss://<SERVER>:<PORT>/nandbox/api/  
download:https://<SERVER>:<PORT>/nandbox/download/  
upload:https://<SERVER>:<PORT>/nandbox/upload/

Add your token and the other data to config.json file just like below :

{
    "Token": "<your token>",
    "URI": "wss://<SERVER>:<PORT>/nandbox/api/",
    "DownloadServer": "https://<SERVER>:<PORT>/nandbox/download/",  
    "UploadServer": "https://<SERVER>:<PORT>/nandbox/upload/"
}

2.Implement your main.py file : To do that please follow the next instructions:

  1. Make sure config.json file is created.
  2. Implement the CallBack.on_connect function.
  3. Implement the rest of the functions as your application requires.
import json

from nandboxbots.nandbox import Nandbox
from nandboxbots.NandboxClient import NandboxClient
from nandboxbots.util.Utils import get_unique_id

CONFIG_FILE = "./config.json"

f = open(CONFIG_FILE)
config = json.load(f)
f.close()

TOKEN = config['Token']

client = NandboxClient.get(config)

nandbox = Nandbox()

napi = nandbox.Api()


class CallBack(nandbox.Callback):
    def on_connect(self, api):
        global napi
        napi = api
        print("Connected")

    def on_close(self):
        print("Closed")

    def on_error(self):
        print("Error")

    def on_receive(self, incoming_msg):
        print("Message Received")

        if incoming_msg.is_text_msg():
            chatId = incoming_msg.chat.id
            text = incoming_msg.text
            reference = get_unique_id()
            napi.send_text(chat_id=chatId, text=text, reference=reference)


callBack = CallBack()
client.connect(config['Token'], callBack)

Have a look at the test folder, you might find useful examples.

License

MIT License

Copyright (c) 2023 nandbox

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nandboxbotsapi-1.5.1.tar.gz (37.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nandboxbotsapi-1.5.1-py3-none-any.whl (68.1 kB view details)

Uploaded Python 3

File details

Details for the file nandboxbotsapi-1.5.1.tar.gz.

File metadata

  • Download URL: nandboxbotsapi-1.5.1.tar.gz
  • Upload date:
  • Size: 37.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for nandboxbotsapi-1.5.1.tar.gz
Algorithm Hash digest
SHA256 33a55ff909015470e41ff800cbf11f34886813eafc03ce0c41c36eabc361e562
MD5 0b75c508ae4c052bae8efaee71fa3f1d
BLAKE2b-256 d68b4d2c54402751a1bd3330e43b74c3951f82c39382a9e3ecab81701ff9fd66

See more details on using hashes here.

File details

Details for the file nandboxbotsapi-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: nandboxbotsapi-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for nandboxbotsapi-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 90fc13304d37eddb97da92f93c10b96b89f3f49dc8898c97351792d2abe92ff7
MD5 16d82087510e59ea8d151bc1f8cb5e98
BLAKE2b-256 0b44cfee2534cec811c1b16af18d82b7ae0961565e7af47c58572bbe7c9218f2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page