WildSiphon / Mailfoguess

OSINT tool to guess and verify the email address of a person from information such as firstname, middlename, lastname, username...
GNU General Public License v3.0
58 stars 5 forks source link

TrioDeprecationWarning: trio.MultiError is deprecated #1

Closed brownbag270 closed 1 year ago

brownbag270 commented 1 year ago

This appears to be for verifying Gmail permutations:

usr/local/lib/python3.10/dist-packages/anyio/_backends/_trio.py:164: TrioDeprecationWarning: trio.MultiError is deprecated since Trio 0.22.0; use BaseExceptionGroup (on Python 3.11 and later) or exceptiongroup.BaseExceptionGroup (earlier versions) instead (https://github.com/python-trio/trio/issues/2211)

  class ExceptionGroup(BaseExceptionGroup, trio.MultiError):

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range

list index out of range
smurfix commented 1 year ago

You need to update anyio – to the current master from git, since 4.0 has not yet been released. Alternately, temporarily downgrade Trio to 0.21.

WildSiphon commented 1 year ago

I can't reproduce your issue. I need more informations to investigate:

Here's my packages version:

$ pip list | grep "holehe\|httpx\|trio"
holehe           1.61
httpx            0.23.1
trio             0.22.0
brownbag270 commented 1 year ago

Hi WildSiphon,

Apologies for the delay. I have these:

osint@osint:~/Desktop$ pip list | grep "holehe\|httpx\|trio"

holehe                         1.61

httpx                          0.23.3

trio                           0.22.0

trio-websocket                 0.9.2
WildSiphon commented 1 year ago

You need to update anyio – to the current master from git, since 4.0 has not yet been released.

I didn't see this comment before. Thanks for the help 🙏

Alternately, temporarily downgrade Trio to 0.21.

You could do this or temporarily use a lower version of python (< 3.11).