Code Monkey home page Code Monkey logo

Comments (3)

gawel avatar gawel commented on May 31, 2024

You'r lucky that the first join work. I think channels passwords should probably be stored in a [passwords] section

If you have:

[passwords]
mychannel = mysecret

This way you can use this in join() https://github.com/gawel/irc3/blob/master/irc3/__init__.py#L189

if target.strip('#&') in config.passwords:
   ..

And other plugins will not have to take care of the password

from irc3.

No-0n3 avatar No-0n3 commented on May 31, 2024

Hi,

Thanks for a quick reply. I will test it and give you the results.

BR, No-0n3

from irc3.

No-0n3 avatar No-0n3 commented on May 31, 2024

Hi,

I have tested it now and it works fine. Here you have a code snippet on how I wrote the code in the if statement.

def join(self, target):
    """join a channel"""
    if target.strip('#&') in self.config.passwords:
        target += " %s" % self.config.passwords[target.strip('#&')]

    self.send('JOIN %s' % target)

I tested both with and without str() on the text gotten from the config and it worked. So you can add it.

Best regards, No-0n3

from irc3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.