Giter Site home page Giter Site logo

multio's People

Contributors

davelindley avatar fuyukai avatar jmaroeder avatar miracle2k avatar mrakitin avatar njsmith avatar pmav99 avatar raylu avatar rnovatorov avatar theelous3 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

multio's Issues

multio.init()

Obviously a stupid error of my part, but from a user perspective I think it would be nice if, in addition to strings, multio.init() also accepted a module.

import curio
import multio
multio.init(curio)   # This throws a KeyError

Also support asyncio ?

Possible values are <dict_keys(['curio', 'trio'])>, not <asyncio>

Any specific reason to not allow asyncio there ?

Uses a CapacityLimiter on trio instead of a Semaphore

Those two are not identical:

import trio

async def main():
	c = trio.Semaphore(10)
	async with c:
		print('one in')
		async with c:
			print('two in')

trio.run(main)
one in
two in

but:

import trio


async def main():
	c = trio.CapacityLimiter(10)
	async with c:
		print('one in')
		async with c:
			print('two in')


trio.run(main)
one in
RuntimeError: this borrower is already holding one of this CapacityLimiter's tokens

This means that I cannot open two connections in the same task https://github.com/Fuyukai/riopg.

Why 3.6.x restrict?

Why did we restrict to 3.6.x and up?

trio currently supports >=3.5.2, and curio doesn't completely shit the bed. Also, it broke my asks tests (it also broke multio's tests)

I reverted it for now.

Use sniffio

How about multio makes multio.init optional, and uses sniffio to initialize itself? I suppose we'd have to make curio support sniffio first.

Possibly, init could be removed completely.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.