Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mnot/nbhttp
non-blocking HTTP. All further development will be at mnot/thor.
https://github.com/mnot/nbhttp
Last synced: 3 months ago
JSON representation
non-blocking HTTP. All further development will be at mnot/thor.
- Host: GitHub
- URL: https://github.com/mnot/nbhttp
- Owner: mnot
- Archived: true
- Created: 2009-06-13T02:37:09.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2014-09-30T14:30:01.000Z (about 10 years ago)
- Last Synced: 2024-07-18T21:58:40.796Z (4 months ago)
- Language: Python
- Homepage:
- Size: 314 KB
- Stars: 231
- Watchers: 15
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
nbhttp - Tools for building non-blocking HTTP components
NOTE: This is no longer maintained! See mnot/thor.
* About nbhttp
nbhttp is a set of libraries for building non-blocking (a.k.a. asynchronous
or event-driven) HTTP clients, servers and intermediaries.Its aims are to expose full HTTP functionality in a conformant manner, with
the maximum potential for performance.It is NOT YET SUITABLE FOR PRODUCTION USE. In particular, the code has not
been optimised or benchmarked, nor are there limits on resource usage, logging
or any number of other things that make a practical web server or intermediary
a useful thing.However, it's lots of fun to prototype and play with.
* Requirements
nbhttp needs Python 2.5 or greater; see
Optionally, it will take advantage of the pyevent extension, if installed.
See .* Installation
If you have setuptools, you can install from the repository:
> easy_install nbhttp
Otherwise, download a tarball and install using:
> python setup.py install
* SUPPORT, REPORTING ISSUES AND CONTRIBUTING
See to give feedback, report issues, and
contribute.* License
Copyright (c) 2008-2009 Mark Nottingham
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.