Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haugebot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dnns01
haugebot
Commits
56f4d021
Commit
56f4d021
authored
3 years ago
by
dnns01
Browse files
Options
Downloads
Patches
Plain Diff
Use event_loop for info loop
parent
a63b3bac
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.idea/haugebot.iml
+1
-1
1 addition, 1 deletion
.idea/haugebot.iml
.idea/misc.xml
+1
-1
1 addition, 1 deletion
.idea/misc.xml
haugebot_twitch/haugebot.py
+4
-3
4 additions, 3 deletions
haugebot_twitch/haugebot.py
haugebot_twitch/info_cog.py
+4
-0
4 additions, 0 deletions
haugebot_twitch/info_cog.py
with
10 additions
and
5 deletions
.idea/haugebot.iml
+
1
−
1
View file @
56f4d021
...
...
@@ -16,7 +16,7 @@
<content
url=
"file://$MODULE_DIR$"
>
<excludeFolder
url=
"file://$MODULE_DIR$/venv"
/>
</content>
<orderEntry
type=
"
inheritedJdk
"
/>
<orderEntry
type=
"
jdk"
jdkName=
"Python 3.9 (haugebot) (2)"
jdkType=
"Python SDK
"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
</component>
<component
name=
"TemplatesService"
>
...
...
This diff is collapsed.
Click to expand it.
.idea/misc.xml
+
1
−
1
View file @
56f4d021
...
...
@@ -3,5 +3,5 @@
<component
name=
"JavaScriptSettings"
>
<option
name=
"languageLevel"
value=
"ES6"
/>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.
8
(haugebot)"
project-jdk-type=
"Python SDK"
/>
<component
name=
"ProjectRootManager"
version=
"2"
project-jdk-name=
"Python 3.
9
(haugebot)
(2)
"
project-jdk-type=
"Python SDK"
/>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
haugebot_twitch/haugebot.py
+
4
−
3
View file @
56f4d021
...
...
@@ -34,11 +34,11 @@ class HaugeBot(commands.Bot, ABC):
super
().
__init__
(
irc_token
=
IRC_TOKEN
,
prefix
=
PREFIX
,
nick
=
NICK
,
initial_channels
=
[
CHANNEL
],
client_id
=
CLIENT_ID
,
client_secret
=
CLIENT_SECRET
)
self
.
info_cog
=
InfoCog
(
self
)
self
.
pipi_cog
=
PipiCog
(
self
)
#
self.pipi_cog = PipiCog(self)
self
.
add_cog
(
GiveawayCog
(
self
))
self
.
add_cog
(
VoteCog
(
self
))
self
.
add_cog
(
self
.
info_cog
)
self
.
add_cog
(
self
.
pipi_cog
)
#
self.add_cog(self.pipi_cog)
@staticmethod
async
def
send_me
(
ctx
,
content
,
color
):
...
...
@@ -54,8 +54,9 @@ class HaugeBot(commands.Bot, ABC):
async
def
event_ready
(
self
):
print
(
'
Logged in
'
)
self
.
info_cog
.
start_info_loop
()
asyncio
.
create_task
(
self
.
info_cog
.
info_loop
())
asyncio
.
create_task
(
self
.
pipi_cog
.
pipimeter_loop
())
#
asyncio.create_task(self.pipi_cog.pipimeter_loop())
@staticmethod
def
get_percentage
(
part
,
total
):
...
...
This diff is collapsed.
Click to expand it.
haugebot_twitch/info_cog.py
+
4
−
0
View file @
56f4d021
...
...
@@ -11,6 +11,10 @@ class InfoCog:
def
__init__
(
self
,
bot
):
self
.
bot
=
bot
def
start_info_loop
(
self
):
loop
=
asyncio
.
get_event_loop
()
loop
.
create_task
(
self
.
info_loop
())
async
def
info_loop
(
self
):
while
True
:
sleep_duration
=
config
.
get_int
(
"
WusstestDuSchonLoop
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment