Vinyzu / DiscordGenerator

Dislock, the most advanced Discord Browser Generator. Powered by hCaptcha Solving AI.
GNU General Public License v3.0
214 stars 55 forks source link

No temp mail file incluied #10

Closed ADylax closed 2 years ago

ADylax commented 2 years ago

from TempMail import TempMail ModuleNotFoundError: No module named 'TempMail'

Vinyzu commented 2 years ago

Did you installed all the requierements? You can check this specific package with pip show tempmail-lol

D4yno commented 2 years ago

Seems like that library doesn't work for all, i keep unistalling and reinstalling but no luck it throws "ModuleNotFoundError: No module named 'TempMail'"

Also on captcha when you click to solve - it automatically closes after reading the captcha question: lion dog, etc It doesn't wait untill full captcha is shown

Vinyzu commented 2 years ago

I will contact the creator of the package as some people reported this issue.

The captcha gets closed because the ai doesnt support some tasks/captcha types.

AlexanderEpolite commented 2 years ago

I will contact the creator of the package as some people reported this issue.

The captcha gets closed because the ai doesnt support some tasks/captcha types.

@aimarket

Edit: seems to be working for me. I'm not too sure how Python works, but the basic usage in the readme seems to work.

D4yno commented 2 years ago

Make an exception on failed captcha/tasks :D great contribution by the way, i knew playwright had potential and the way you have modified the whole thing is just genius.

CrazyKnifeAim1 commented 2 years ago

Seems like that library doesn't work for all, i keep unistalling and reinstalling but no luck it throws "ModuleNotFoundError: No module named 'TempMail'"

Also on captcha when you click to solve - it automatically closes after reading the captcha question: lion dog, etc It doesn't wait untill full captcha is shown

i fixed it change your imports to from TempMail import tempMail it should work otherwise locate where the tempmail dll is hidden

aimarket commented 2 years ago

I will contact the creator of the package as some people reported this issue. The captcha gets closed because the ai doesnt support some tasks/captcha types.

@aimarket

Edit: seems to be working for me. I'm not too sure how Python works, but the basic usage in the readme seems to work.

As mentioned in the reply, following the README should workout just fine.

Ex.

from TempMail import TempMail #imports everything from TempMail library

inbox = TempMail.generateInbox() #returns an Inbox object with Email and Token

print("Email Address: "+ inbox.address) #View output below
print("Authorization Token: "+ inbox.token)

When installing, make sure its: pip install tempmail-lol

CrazyKnifeAim1 commented 2 years ago

getting an error for that

aimarket commented 2 years ago

I would like to see the error message.

CrazyKnifeAim1 commented 2 years ago

inbox = TempMail.generateInbox() #returns an Inbox object with Email and Token

print("Email Address: "+ inbox.address) #View output below
print("Authorization Token: "+ inbox.token)

I would like to see the error message.

C:\Users\forst\Downloads\NiggaGenerator (do not share)\DiscordGenerator-main>main.py Traceback (most recent call last): File "C:\Users\forst\Downloads\NiggaGenerator (do not share)\DiscordGenerator-main\main.py", line 34, in inbox = TempMail.generateInbox() #returns an Inbox object with Email and Token AttributeError: module 'TempMail' has no attribute 'generateInbox'

sorry for the name of the file

aimarket commented 2 years ago

from TempMail import TempMail ModuleNotFoundError: No module named 'TempMail'

Type pip list in the terminal and see if tempmail-lol 1.1.0 is in the list.

Vinyzu commented 2 years ago

Should be fixxed with newest version. Update your code.