Winloop icon indicating copy to clipboard operation
Winloop copied to clipboard

An Alternative library for uvloop compatability with windows

Results 19 Winloop issues
Sort by recently updated
recently updated
newest added

Hi, here's a thing I noticed a while ago when using the Python REPL in combination with winloop. The problem is that certain calls to the built-in help() function don't...

bug

env_\.venv\Lib\site-packages\aiohttp\connector.py:942: RuntimeWarning: An HTTPS request is being sent through an HTTPS proxy. This support for TLS in TLS is known to be disabled in the stdlib asyncio (Python

bug
help wanted

I have my simple console echoing script. (python3.12) If I run this using pycharm's run configuration this works normally echoing the console input back to stdout. However any other running...

In python 3.9: ![image](https://github.com/Vizonex/Winloop/assets/15188456/fbcc7662-cce9-43dd-aa88-6681081addc8) but in python 3.8: ![image](https://github.com/Vizonex/Winloop/assets/15188456/b2678e9f-208e-4641-8705-b7765946bb94)

In uvicorn, I have added a new file “winloop.py”. ![image](https://github.com/Vizonex/Winloop/assets/15188456/13e3cd91-de78-4116-977b-995af5e1009a) uvicorn/config.py: ![image](https://github.com/Vizonex/Winloop/assets/15188456/c6b15843-d463-4c86-84a9-41c0d924c820) Next: from uvicorn import run run("app_compat:create_app_fastapi", host="0.0.0.0", workers=int(args["workers"]), port=int(port), loop="winloop", factory=True) Result: ![image](https://github.com/Vizonex/Winloop/assets/15188456/82f58298-f694-40e5-ae05-e8a95d1752de) Pid is 23052 and 4604....

bug
question

using aiohttp with an http proxy with an https request shows an `path\to\venv\Lib\site-packages\aiohttp\connector.py:899: RuntimeWarning: An HTTPS request is being sent through an HTTPS proxy. This support for TLS in TLS...

bug

when freezing the script ``` import winloop import asyncio async def hello(): print("Hello") async def main(): tasks = [] for i in range(10): tasks.append(hello()) await asyncio.gather(*tasks) if __name__ == '__main__':...

bug
help wanted

I have spoken to Scoder one of the Cython developers and It seems I have no response for solving the [Macro issue](https://github.com/cython/cython/issues/4310#issuecomment-1694484715) Does anyone have any ideas or workarounds to...

enhancement
help wanted

python version: 3.9.13 ![企业微信截图_17230016294711](https://github.com/user-attachments/assets/955a038d-0d02-41b3-a5dc-536b969bb8a2)

https://aiomultiprocess.omnilib.dev/en/latest/guide.html#using-uvloop code: ```PYTHON async def fetch_detail(url: str, pool: aiomultiprocess.Pool): async with aiohttp.ClientSession() .get(url) as response: html = await response.text() return html async def aiomultiprocess_main(): main_url = "http://am.adianshi.com:6805/" async with aiomultiprocess.Pool(loop_initializer=winloop.new_event_loop())...