Skip to content

Releases: suspectedesp/bot-hosting-wrapper

Bot Hosting Wrapper v1.4

10 Apr 12:21

Choose a tag to compare

Version 1.4 (v1.4)

Breaking News:

  • The first file (about.py) now has an asynchronous version (vasync/about.py)
  • The license has been changed from MIT to a more appropriate one (The Unlicense)

Information

You can find the Wiki here
You can find the automatically generated function documentation here
You can find known issues here

Latest Changelog (Summary)

  • Updated Wiki, Readme, Git Attributes, VSCode Workspace and more
  • Changed License from MIT to Unlicense
  • Changed small stuff in config
  • Added asynchronous about me
  • Added docstrings and Security.md

Full Changelog: v1.3...v1.4

Bot Hosting Wrapper v1.3

08 Feb 10:47

Choose a tag to compare

Warning

Since this (official) release, many functions from about.py use return instead of printing stuff to the console.
This means that you'll have to recheck if your code is still behaving correctly for certain functions

Functions which had bug-creating rewrites (about.py):

  • change_language
  • coins_amount
  • about
  • id_check
  • claimable
  • show
  • affiliate_data

Latest Changelog

  • Updated about.py, panel.py README, Examples & Bug Report
  • Fixed Stupid Bugs
  • Tested & rewritten for better performance
  • Added get_server_resources
  • Full Changelog: v1.2.2...v1.3

Bot Hosting Wrapper v1.3-BETA

01 Feb 11:31

Choose a tag to compare

Pre-release

Warning

Since this release, many functions from about.py use return instead of printing stuff to the console.
This means that you'll have to recheck if your code is still behaving correctly for certain functions

Functions which had bug-creating rewrites (about.py):

  • change_language
  • coins_amount
  • about
  • id_check
  • claimable
  • show

Latest Changelog

  • Updated about.py, panel.py README, Examples & Bug Report
  • Fixed Stupid Bugs
  • Tested & rewritten for better performance
  • Full Changelog: v1.2.2...v1.3-BETA

Bot Hosting Wrapper v1.2.2

18 Jan 10:17

Choose a tag to compare

Latest Changelog:

  • Updated License, README, Examples & pyproject.toml
  • Fixed Stupid Bugs
  • Tested & rewritten for optimization & automation

Full Changelog: v1.2.1...v1.2.2

Bot Hosting Wrapper v1.2.1

29 Dec 01:13

Choose a tag to compare

Latest Changelog:

  • Added an api wrapper for the control panel
  • Fixed Stupid Bugs
  • Tested & rewritten for optimization & automation
  • Updated the latest README & Usage Wiki & EXAMPLES

What's Changed

New Contributors

Full Changelog: v1.1.5...v1.2.1

Bot Hosting Wrapper v1.1.5

22 Jul 05:19

Choose a tag to compare

Everything important is in the README and Wiki

  • Added Deleting server
  • Readme updates
  • Optimization of the code mess I've created
  • Fixed functions like get_info

Full Changelog: v1.1.0...v1.1.5

Bot Hosting Wrapper v1.1.0

19 Jan 15:51

Choose a tag to compare

Everything important is in the README and Wiki

Notice: Completely revamped how it works.
Full Changelog: v1.0.4...v1.1.0

Bot Hosting Wrapper v1.0.4

16 Jan 22:17

Choose a tag to compare

Everything important is in the README
Full Changelog: v1.0.3...v1.0.4
Pypi Page

Bot Hosting Wrapper v1.0.3

14 Jan 10:40

Choose a tag to compare

Servers Information

Show all Servers and some Information about them:

from bot_hosting_wrapper import show_servers

auth_key = "your_authorization_key"
show_servers(auth_key)

Specific Server Information

View general information about a Server:

from bot_hosting_wrapper import get_server_info

auth_key = "your_authorization_key"
get_server_info(auth_key)

Change your server's Coding Language:

from bot_hosting_wrapper import change_language

auth_key = "your_authorization_key"
change_language(auth_key)

Account Information

Getting genuine Account Information:

from bot_hosting_wrapper import about_account

auth_key = "your_authorization_key"
about_account(auth_key)

Getting your current coins amount:

from bot_hosting_wrapper import coins_amount
auth_key = "your_authorization_key"
coins_amount(auth_key)

License

MIT License

Copyright (c) 2024 Vortex

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.