From 335397554f299683a4f3a0e1af27480d76ce6853 Mon Sep 17 00:00:00 2001 From: Romain J Date: Thu, 4 Jun 2020 00:14:50 +0200 Subject: [PATCH] feat(botCore|launcher): add features to the core launcher --- .idea/tuxbot-bot-rewrite.iml | 2 + .idea/workspace.xml | 9 +- README.md | 2 +- Tuxbot_bot.egg-info/PKG-INFO | 11 + Tuxbot_bot.egg-info/SOURCES.txt | 25 ++ Tuxbot_bot.egg-info/dependency_links.txt | 1 + Tuxbot_bot.egg-info/entry_points.txt | 4 + Tuxbot_bot.egg-info/requires.txt | 29 ++ Tuxbot_bot.egg-info/top_level.txt | 1 + build/lib/tuxbot/__init__.py | 14 + build/lib/tuxbot/__main__.py | 139 ++++++++ build/lib/tuxbot/cogs/images/__init__.py | 5 + build/lib/tuxbot/cogs/images/images.py | 175 ++++++++++ build/lib/tuxbot/cogs/logs/__init__.py | 14 + build/lib/tuxbot/cogs/logs/logs.py | 323 ++++++++++++++++++ build/lib/tuxbot/cogs/network/__init__.py | 5 + build/lib/tuxbot/cogs/network/network.py | 105 ++++++ build/lib/tuxbot/core/__init__.py | 8 + build/lib/tuxbot/core/bot.py | 65 ++++ build/lib/tuxbot/core/config.py | 41 +++ build/lib/tuxbot/core/data_manager.py | 26 ++ build/lib/tuxbot/core/utils/functions/cli.py | 89 +++++ .../lib/tuxbot/core/utils/functions/extra.py | 114 +++++++ build/lib/tuxbot/logging.py | 39 +++ build/lib/tuxbot/setup.py | 292 ++++++++++++++++ dist/Tuxbot_bot-3.0.0-py3.8.egg | Bin 0 -> 44154 bytes setup.cfg | 2 + tuxbot/__init__.py | 6 +- tuxbot/__main__.py | 118 +++++-- tuxbot/cogs/network/network.py | 2 +- tuxbot/core/bot.py | 30 +- tuxbot/logging.py | 154 ++------- tuxbot/setup.py | 4 +- 33 files changed, 1680 insertions(+), 174 deletions(-) create mode 100644 Tuxbot_bot.egg-info/PKG-INFO create mode 100644 Tuxbot_bot.egg-info/SOURCES.txt create mode 100644 Tuxbot_bot.egg-info/dependency_links.txt create mode 100644 Tuxbot_bot.egg-info/entry_points.txt create mode 100644 Tuxbot_bot.egg-info/requires.txt create mode 100644 Tuxbot_bot.egg-info/top_level.txt create mode 100644 build/lib/tuxbot/__init__.py create mode 100644 build/lib/tuxbot/__main__.py create mode 100644 build/lib/tuxbot/cogs/images/__init__.py create mode 100644 build/lib/tuxbot/cogs/images/images.py create mode 100644 build/lib/tuxbot/cogs/logs/__init__.py create mode 100644 build/lib/tuxbot/cogs/logs/logs.py create mode 100644 build/lib/tuxbot/cogs/network/__init__.py create mode 100644 build/lib/tuxbot/cogs/network/network.py create mode 100644 build/lib/tuxbot/core/__init__.py create mode 100644 build/lib/tuxbot/core/bot.py create mode 100644 build/lib/tuxbot/core/config.py create mode 100644 build/lib/tuxbot/core/data_manager.py create mode 100644 build/lib/tuxbot/core/utils/functions/cli.py create mode 100644 build/lib/tuxbot/core/utils/functions/extra.py create mode 100644 build/lib/tuxbot/logging.py create mode 100644 build/lib/tuxbot/setup.py create mode 100644 dist/Tuxbot_bot-3.0.0-py3.8.egg diff --git a/.idea/tuxbot-bot-rewrite.iml b/.idea/tuxbot-bot-rewrite.iml index 3a04e2e..d728f09 100644 --- a/.idea/tuxbot-bot-rewrite.iml +++ b/.idea/tuxbot-bot-rewrite.iml @@ -2,6 +2,8 @@ + + diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 6ce748b..22b2f9c 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,10 +2,15 @@ + + + + + - + @@ -117,7 +122,7 @@ - +