asyncoro

 2 likes

asyncoro is a Python framework for developing concurrent, distributed programs with asynchronous completions and coroutines. Asynchronous completions implemented in asyncoro are socket I/O operations (non-blocking sockets), database cursors, sleep timers and locking primitives.

License model

  • FreeOpen Source

Country of Origin

  • US flagUnited States

Platforms

  • Mac
  • Windows
  • Linux
  No rating
2likes
0comments
0news articles

Features

Suggest and vote on features
  1.  Python-based
  2.  Asynchronous
  3.  Fault tolerant

 Tags

  • Python
  • coroutines
  • concurrent
  • distributed-programming

asyncoro News & Activities

Highlights All activities

Recent activities

Show all activities

asyncoro information

  • Developed by

    US flagGiridhar Pemmasani
  • Licensing

    Open Source and Free product.
  • Alternatives

    8 alternatives listed
  • Supported Languages

    • English

AlternativeTo Category

Development

Our users have written 0 comments and reviews about asyncoro, and it has gotten 2 likes

asyncoro was added to AlternativeTo by pgiri on Jul 9, 2012 and this page was last updated Aug 30, 2017.
No comments or reviews, maybe you want to be first?
Post comment/review

What is asyncoro?

asyncoro is a Python framework for developing concurrent, distributed programs with asynchronous completions and coroutines. Asynchronous completions implemented in asyncoro are socket I/O operations (non-blocking sockets), database cursors, sleep timers and locking primitives. Programs developed with asyncoro have same logic and structure as Python programs with threads, except for a few syntactic changes. asyncoro supports socket I/O notification mechanisms epoll, kqueue, /dev/poll (and poll and select, where necessary), and Windows I/O Completion Ports (IOCP) for high performance and scalability, and SSL for security. asyncoro also supports remote execution of coroutines, coroutines monitoring other coroutines etc., for distributed, fault-tolerant programming.