Ports 搜索

共有19,819项符合%22HTTP Server%22的查询结果,以下是第12,92112,930项(搜索用时0.01秒)
devel/dissy-10 (Score: 9.2878623E-4)
Graphical frontend to the objdump disassembler
Dissy is a graphical frontend to the objdump disassembler. Dissy can be used for debugging and browsing compiler-generated code.
devel/funcparserlib-0.3.6 (Score: 9.2878623E-4)
Recursive descent parsing library based on functional combinators
Parser combinators are just higher-order functions that take parsers as their arguments and return them as result values. Parser combinators are: * First-class values * Extremely composable * Tend to make the code quite compact * Resemble the readable notation of xBNF grammars Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that it's very easy to write them without thinking about look-aheads and all that hardcore parsing stuff. But the recursive descent parsing is a rather slow method compared to LL(k) or LR(k) algorithms. So the primary domain for funcparserlib is parsing little languages or external DSLs (domain specific languages). The library itself is very small. Its source code is only 0.5 KLOC, with lots of comments included. It features the longest parsed prefix error reporting, as well as a tiny lexer generator for token position tracking.
devel/glob2-0.4.1 (Score: 9.2878623E-4)
Glob that captures patterns and supports recursive wildcards
Version of the glob module that can capture patterns and supports recursive wildcards.
devel/grizzled-0.9.4 (Score: 9.2878623E-4)
The Grizzled Python Utility Library
The Grizzled Utility Library is a general-purpose Python library with a variety of different modules and packages. It's roughly organized into subpackages that group different kinds of utility functions and classes.
devel/grouch-0.4 (Score: 9.2878623E-4)
System for describing and enforcing a Python object schema
Grouch is a system for describing and enforcing a Python object schema. That is, it provides you with a language for describing the intended type signatures of your objects (collectively, the "object schema"), and tools to walk an object graph, checking that every value found matches your object schema. An object schema describes every class in a collection of objects -- in particular, it specifies the type of every instance attribute of every class. Grouch includes a type language for specifying attribute types, a tool to parse specially-formatted class docstrings and output a complete object schema, and another tool for walking a persistent object graph and ensuring that every scrap of data in it conforms to the object schema extracted from your class docstrings. The API for defining, querying, and enforcing types is fairly complete and well-documented, so you can use Grouch's type system in other ways as well.
devel/inflect-0.2.5 (Score: 9.2878623E-4)
Generate plurals, singular nouns, ordinals, indefinite articles
Correctly generate plurals, singular nouns, ordinals, indefinite articles; convert numbers to words
devel/simpletal-4.3 (Score: 9.2878623E-4)
Stand alone TAL Python implementation to power HTML & XML templates
SimpleTAL is a stand alone Python implementation of the TAL, TALES and METAL specifications used in Zope to power HTML and XML templates. SimpleTAL is an independent implementation of TAL; there are no dependencies on Zope nor is any of the Zope work re-used.
devel/logilab-common-1.2.2 (Score: 9.2878623E-4)
Common low-level libraries shared among logilab projects
The package logilab.common contains several modules providing low level functionalities shared among some python projects developed by logilab.
devel/tconfpy-2.112 (Score: 9.2878623E-4)
Python Configuration File Parser
'tconfpy' is an advanced configuration file parser and validator for Python programs. By using 'tconfpy', Python programmers can provide their users with an external configuration file for setting program options, defining defaults, and so on. 'tconfpy' offloads the responsibility for parsing and validating a configuration file from the main application. The Python programmer need only deal with the results and any errors or warnings generated during the parsing process.
devel/mimeparse-0.1.4 (Score: 9.2878623E-4)
Basic functions for handling mime-types in Python
This module provides basic functions for parsing mime-type names and matching them against a list of media-ranges.