*ANNOUNCING*
eGenix Antispam Bot for Telegram
Version 0.6.0
A simple, yet effective bot implementation
to address Telegram signup spam.
This announcement is also available on our web-site for online reading:
https://www.egenix.com/company/news/eGenix-Antispam-Bot-for-Telegram-0.6.0
*ANNOUNCING*
eGenix Antispam Bot for Telegram
Version 0.5.0
A simple, yet effective bot implementation
to address Telegram signup spam.
This announcement is also available on our web-site for online reading:
https://www.egenix.com/company/news/eGenix-Antispam-Bot-for-Telegram-0.5.0
ANNOUNCING
eGenix Antispam Bot for Telegram
Version 0.3.0
A simple, yet effective bot implementation
to address Telegram signup spam.
This
On Mon, 4 Apr 2022 14:40:57 +0200, eGenix Team wrote:
>
>
> ANNOUNCING
>
> eGenix Antispam Bot for Telegram
>
> Version 0.2.0
>
>
ANNOUNCING
eGenix Antispam Bot for Telegram
Version 0.2.0
A simple, yet effective bot implementation
to address Telegram signup spam
m new here, can anyone help me built a bot than can input
data
in a website?
This is not for spam purposes, I just need to reserve a place in the
library at the university but they are completed in a matter of minutes
and
I can't waste time "camping&quo
On Wed, 2 Dec 2020 at 04:13, Álvaro d'Ors wrote:
>
> Hi guys, I'm new here, can anyone help me built a bot than can input data
> in a website?
I never used it, but you can try Chatterbot:
https://chatterbot.readthedocs.io/en/stable/
--
https://mail.python.org/mailman/listinfo/python-list
On 01/12/2020 21:53, Álvaro d'Ors wrote:
Hi guys, I'm new here, can anyone help me built a bot than can input data
in a website?
This is not for spam purposes, I just need to reserve a place in the
library at the university but they are completed in a matter of minutes and
I can
Hi guys, I'm new here, can anyone help me built a bot than can input data
in a website?
This is not for spam purposes, I just need to reserve a place in the
library at the university but they are completed in a matter of minutes and
I can't waste time "camping" the website. T
Apologies for the terrible formatting, let me try that again:
A:
from sopel.module import commands, rule
import random
q_and_as = [('Why?', 'because'), ('Can I kick it?', 'nope')]
@commands("quizme")
def ask_q(bot, trigger):
q = random.
Hi everyone. I'm working with the Sopel (previously Willie and before that,
Jenni/Phenny) python IRC bot as I'd like to set up a trivia quiz for our IRC
channel.
With Sopel, the @rule decorator lets you set a string that the bot will
listen out for and which triggers a correspondin
On 18 Jul 2013 18:52, "Matt" wrote:
>
> Anyone have any luck with creating Jabber Bots?
>
> Everyone I have found so far for python 3.3 has been outdated, or the
required modules are outdated.
You can find some modules here.
http://stackoverflow.com/questions/1901828/best-python-xmpp-jabber-clie
Anyone have any luck with creating Jabber Bots?
Everyone I have found so far for python 3.3 has been outdated, or the required
modules are outdated.
--
http://mail.python.org/mailman/listinfo/python-list
2012/5/14 Emile van Sebille :
> On 5/13/2012 2:25 PM admin lewis said...
>
>> Hi,
>> I want write a bot in python, it should explore a site, click links
>> and extract some info. I know mechanize but I would like to know if
>> there is something better for performan
On 5/13/2012 2:25 PM admin lewis said...
Hi,
I want write a bot in python, it should explore a site, click links
and extract some info. I know mechanize but I would like to know if
there is something better for performance.
Have you looked into Scrapy? http://scrapy.org
Emile
--
http
Hi,
I want write a bot in python, it should explore a site, click links
and extract some info. I know mechanize but I would like to know if
there is something better for performance.
Thanks a lot lewis.
--
Linux Server, Microsoft Windows 2003/2008 Server, Exchange 2007
http
On 11/10/2010 6:49 AM alexander said...
Hi,
Can anyone help on this?
/
Probably most of us, but as it's obviously homework, and expected to
take you 1-2 hours for the level class you're taking, and that it's now
six hours later, why not post where you're at and we can help you wrap
ith
> a brief readme for features. It should take about about 1-2 hours to
> complete.
> Basic requirements: Build a Python driven IM bot with the following
> features
> * A user can add the bot to his/her Google talk/jabber friends list.
> * The user types the words "sub [
with
a brief readme for features. It should take about about 1-2 hours to
complete.
Basic requirements: Build a Python driven IM bot with the following
features
* A user can add the bot to his/her Google talk/jabber friends list.
* The user types the words "sub [feed_url]" to the bo
Someone Something wrote:
> I have a irc spam bot (only testing on my channel :P ) whose main loop is
> the following:
Poor choice of words on your part. Anything spam-related is evil and
will not get a response.
That said, "IRC bots" are certainly okay and common, and are use
gt; wrote:
>
>> On Sun, Nov 8, 2009 at 2:00 AM, Someone Something
>> wrote:
>> > I have a irc spam bot (only testing on my channel :P ) whose main loop
>> is
>> > the following:
>> >
>> > privc="PRIVMSG "+self.channel
>> >
I'm just testing it on my channel! I promise! Besides, I'm doing it to learn
about sockets! Please!
On Sat, Nov 7, 2009 at 8:07 PM, Krister Svanlund wrote:
> On Sun, Nov 8, 2009 at 2:00 AM, Someone Something
> wrote:
> > I have a irc spam bot (only testing on my channe
I have a irc spam bot (only testing on my channel :P ) whose main loop is
the following:
privc="PRIVMSG "+self.channel
while True:
self.sock.send(privc=" :SPAM SPAM SPAM!");
time.sleep(2);
And it gives an error "Broken Pipe".
How can I fix this?
--
Thanks a lot!
On Sun, Sep 13, 2009 at 4:29 PM, MRAB wrote:
> Someone Something wrote:
>
>> I"m trying to write an IRC bot just for fun (in python of course). Here's
>> my current code:
>>
>> 1 #!/usr/local/bin/python
>> 2 import time
>> 3
Someone Something wrote:
I"m trying to write an IRC bot just for fun (in python of course).
Here's my current code:
1 #!/usr/local/bin/python
2 import time
3 import socket
4
5 def message (x, channel,s):
6 y="PRIVMSG"+" "+ channel+&quo
Anyone?
On Sun, Sep 13, 2009 at 3:58 PM, Someone Something wrote:
> I"m trying to write an IRC bot just for fun (in python of course). Here's
> my current code:
>
> 1 #!/usr/local/bin/python
> 2 import time
> 3 import socket
> 4
> 5 def message (x
I"m trying to write an IRC bot just for fun (in python of course). Here's my
current code:
1 #!/usr/local/bin/python
2 import time
3 import socket
4
5 def message (x, channel,s):
6 y="PRIVMSG"+" "+ channel+" :"+x
7 s.send(y);
8 hos
Hello,
I have coded an IRC bot in Python. Each inbound packet is parsed, and
once the bot decides whether it is a command directed at the bot or
not, it will either
discard the packet or make a function call to an access control
checker function. If the invoking user is found to have sufficient
##
# MsnClient Class -- A basic class that enables one to create an MSN
client this way:
# x = MsnClient(to_msnid, bot_msnid, bot_msnid_password, messege);
x.tell()
# (C) Timothy Makobu, 2007
##
On Wed, 11 Jul 2007 03:51:27 -0700, ddtm <[EMAIL PROTECTED]> wrote:
>I have another problem with my IRC bot. There is privmsg(self, user,
>channel, msg) function (this function handles the incoming IRC data)
>in the code that was mentioned above. I have a special condition in
>
I have another problem with my IRC bot. There is privmsg(self, user,
channel, msg) function (this function handles the incoming IRC data)
in the code that was mentioned above. I have a special condition in
this function that if a user sends to bot a private message (in other
words: if channel
ROTECTED]> wrote:
> >> >On 3, 16:01, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote:
> >> > [snip]
>
> >> >Thank you very much! It's a very useful information. One more
> >> >question: can I cancel the DelayedCall using its ID (it is
ECTED]> wrote:
>> > [snip]
>>
>> >Thank you very much! It's a very useful information. One more
>> >question: can I cancel the DelayedCall using its ID (it is returned
>> >from callLater(...)) from another function? In example bot there are
>> &g
useful information. One more
> >question: can I cancel the DelayedCall using its ID (it is returned
> >from callLater(...)) from another function? In example bot there are
> >two functions:
> >def joined(self, channel):
> > ...
> >def privmsg(self, user, channel,
(it is returned
>from callLater(...)) from another function? In example bot there are
>two functions:
>def joined(self, channel):
> ...
>def privmsg(self, user, channel, msg):
> ...
>For example, I add callLater(...) to joined(...) function and I'd like
>to cancel this in
On 3, 16:01, Jean-Paul Calderone <[EMAIL PROTECTED]> wrote:
> On Tue, 03 Jul 2007 09:46:59 -, ddtm <[EMAIL PROTECTED]> wrote:
> >I'm using an example of IRC bot (_ttp://twistedmatrix.com/projects/
> >words/documentation/examples/ircLogBot.py) to create my
On Tue, 03 Jul 2007 09:46:59 -, ddtm <[EMAIL PROTECTED]> wrote:
>I'm using an example of IRC bot (_ttp://twistedmatrix.com/projects/
>words/documentation/examples/ircLogBot.py) to create my own bot. But I
>have a problem. I'm trying to make my bot send messages period
I'm using an example of IRC bot (_ttp://twistedmatrix.com/projects/
words/documentation/examples/ircLogBot.py) to create my own bot. But I
have a problem. I'm trying to make my bot send messages periodically.
But I can't find a way of adding Timer or something similar to my code
s
gozerbot
a python irc and jabber bot
see http://code.google.com/p/gozerbot
you need:
* a shell
* python 2.4 or higher
* if you want mysql support: the py-MySQLdb module
* if you want jabber support: the xmpppy module
why gozerbot?
* user management by userhost
* fleet
I'm currently writing a IRC bot for fun...here is the code that I have
writen so far:
import sys
import socket
import string
import time
HOST="irc.freenode.net"
PORT=6667
NICK="PapaJorgio_"
IDENT="Papa"
REALNAME="Jorgio"
CHANNEL = &
40 matches
Mail list logo