Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
chatat
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
chatat
Commits
93d81769
Kaydet (Commit)
93d81769
authored
May 31, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add listened channels
üst
2aa8fd00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
9 deletions
+20
-9
__main__.py
chatat/__main__.py
+16
-9
twitch.py
chatat/twitch.py
+4
-0
No files found.
chatat/__main__.py
Dosyayı görüntüle @
93d81769
...
...
@@ -114,11 +114,21 @@ class ChatInterface:
def
_run_cmd
(
self
,
cmd
:
str
):
cmd
=
cmd
.
split
(
" "
)
message
=
None
if
"switch"
in
cmd
:
self
.
channel
=
Channel
(
cmd
[
1
])
message
=
Message
.
from_simple
(
"<system>"
,
"<system>"
,
f
"Channel switched to {self.channel}"
)
message
=
Message
.
from_system
(
f
"Channel switched to {self.channel}"
)
self
.
pubpen
.
publish
(
"switch_channel"
,
self
.
channel
)
elif
"ls"
in
cmd
and
hasattr
(
self
,
"_conn"
):
if
len
(
self
.
_conn
.
_active_channels
)
<
1
:
message
=
"No channel is currently listening"
else
:
message
=
f
"Listened channels are {', '.join(map(str, self._conn._active_channels))}"
message
=
Message
.
from_system
(
message
)
if
message
:
self
.
pubpen
.
publish
(
"message"
,
message
)
...
...
@@ -131,16 +141,13 @@ if __name__ == "__main__":
with
ChatInterface
(
auth
,
pubpen
)
as
display
:
connection
=
loop
.
create_connection
(
lambda
:
TwitchChatProtocol
(
auth
,
loop
,
channels
=
[
Channel
(
"btaskaya"
)],
on_con_lost
=
on_con_lost
,
pubpen
=
pubpen
,
auth
,
loop
,
channels
=
[],
on_con_lost
=
on_con_lost
,
pubpen
=
pubpen
),
"irc.twitch.tv"
,
6667
,
)
loop
.
run_until_complete
(
connection
)
_
,
conn
=
loop
.
run_until_complete
(
connection
)
display
.
_conn
=
conn
task
=
loop
.
create_task
(
display
.
get_char
())
loop
.
run_forever
()
...
...
chatat/twitch.py
Dosyayı görüntüle @
93d81769
...
...
@@ -56,6 +56,10 @@ class Message:
action
:
Actions
channel
:
Channel
@classmethod
def
from_system
(
cls
,
message
:
str
,
level
:
str
=
"info"
):
return
cls
(
"<system>"
,
message
,
None
,
None
,
f
"<system:{level}>"
)
@classmethod
def
from_simple
(
cls
,
channel
:
Channel
,
author
:
str
,
message
:
str
):
return
cls
(
author
,
message
,
None
,
None
,
channel
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment