-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How does software understand from what account to invite or to delete user? #195
Comments
I don't understand your question, and you're not filling in the issue template so I don't have a code sample or output from you to go on. Is this related to #194? |
Not very connected, but yes, it is a bot few bots. |
SkPy isn't really designed to handle multiple connections in a single session -- why do you need multiple accounts? If you're automating multiple accounts from a single host, you're more likely to be flagged for spam. If you obtain a >>> sk
Skype(userId='fred.2')
>>> sk.contacts["anna.7"]
SkypeUser(id='anna.7', ...)
>>> sk.contacts["anna.7"].skype is sk
True |
I have one account which can do newsletter (but real man can use it too), but another accounts for inner use only. So, don't think that they can be market as spam. Ok, I see. So, if I want to invite or delete one bot from another bot, I have to search them in Skype manually by login? I can't only send |
If you're just running two bots then you don't need to automate their mutual invite as that's a one-time operation -- just add one as a contact of the other through a client. As stated above, you need to fetch a potential contact from the |
Hello! I found that
SkypeUser.invite()
andSkypeContact.delete()
methods are not called on bot account which was logged. Explain me please, how do software will differ from what account it has toinvite()
ordelete()
users?Will this user in which
SkypeUser
was found this contact be fetched from thisSkypeUser
object?The text was updated successfully, but these errors were encountered: