#๐Ÿ”’ Failed building wheel for gevent (Await)

37 messages ยท Page 1 of 1 (latest)

mental wraithBOT
#

@mystic skiff

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

mystic skiff
#

I'm trying to install Await
On python 3.8
Asks for Microsoft visual studio c++ 14
So I installed it and it works perfectly fine because I also had the same issue with Cython?
and once I installed and Pip installed it IN c++ 14 it worked
But Await still doesnt work

#

How do I send the code in format?

noble pilot
#

!code

mental wraithBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

mystic skiff
#

it's too long for the ''' it goes straight into txt file

#

do you need the full output?

#

or a certain part of it

#

should work? i hope

plucky hollow
#

Why are you trying to install await?
It's last release was almost 10 years ago and it's github homepage has been deleted.

mystic skiff
#

a package that I'm trying to see if works requires Await

#

Are there alternatives?

plucky hollow
#

what package

mystic skiff
#

might be weird but i promise it's not what it looks like

#

LMAO

#

import trio
import httpx

from holehe.modules.social_media.snapchat import snapchat

async def main():
email = "[email protected]"
out = []
client = httpx.AsyncClient()

await snapchat(email, client, out)

print(out)
await client.aclose()

trio.run(main)

mental wraithBOT
#

Hey @mystic skiff!

It looks like you're trying to paste code into this channel.

Discord has support for Markdown, which allows you to post code with full syntax highlighting. Please use these whenever you paste code, as this helps improve the legibility and makes it easier for us to help you.

To do this, use the following method:
```py
print('Hello, world!')
```

This will result in the following:

print('Hello, world!')```
You can **edit your original message** to correct your code block.
mystic skiff
#

oops

#

'''import trio
import httpx

from holehe.modules.social_media.snapchat import snapchat

async def main():
email = "[email protected]"
out = []
client = httpx.AsyncClient()

await snapchat(email, client, out)

print(out)
await client.aclose()

trio.run(main)'''

#

nvm im too tired for this discord thing LMAO my bad

plucky hollow
#

await is build in python syntax, just like def or return, it's not a package

mystic skiff
#

when i attempt to run

mystic skiff
#

Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:37:02) [MSC v.1924 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

import trio

import httpx

from holehe.modules.social_media.snapchat import snapchat

async def main():
... email = "[email protected]"
... out = []
... client = httpx.AsyncClient()
...
await snapchat(email, client, out)
File "<stdin>", line 1
await snapchat(email, client, out)
^
IndentationError: unexpected indent

plucky hollow
#

In the python repl, if you press enter on an empty line you will end the function

noble pilot
mystic skiff
#

i know
I'm not using it to spy on random people
Or intrude

#

Like as much as you can't really believe a simple text message on the internet
I'm not

noble pilot
#

!rule 5 Sadly even if you have pure intentions, we still can't help on things that may be malicious, and I also wouldn't be surprised if this violates at least one website's TOS. @plucky hollow thoughts?

mental wraithBOT
#

5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.

mystic skiff
#

Aw
No worries then
I'm sorry for involving

#

Thank you :)

plucky hollow
#

Yeah this doesn't seem like something we'd help with.

#

!close

mental wraithBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.