Ports 搜索

共有17,754项符合%E6%8E%A7%E5%88%B6%E5%8F%B0的查询结果,以下是第10,42110,430项(搜索用时0.01秒)
devel/mercator-0.3.3 (Score: 7.3261835E-5)
Procedural terrain library
Mercator is a procedural terrain library. It is primarily aimed at terrain for multiplayer online games and forms one of the WorldForge (http://www.worldforge.org) core libraries. It is intended to be used as a terrain library on both the client, and the server.
devel/hghooks-0.7.0 (Score: 7.3261835E-5)
Set of Mercurial hooks
hghooks is a simple module that adds several useful hooks for use in Mercurial hooks system. Right now it includes hooks for: * pep8 checking of python files * pyflakes checking of python files * checking for forgotten pdb statements in python files * Trac integration. This includes: - Making sure at least a ticket is mentioned in the changeset message - Updating the Trac ticket with the changeset
devel/hypothesis-1.18.1 (Score: 7.3261835E-5)
Library for property based testing
Hypothesis is a library for testing your Python code against a much larger range of examples than you would ever want to write by hand. It's based on the Haskell library, Quickcheck, and is designed to integrate seamlessly into your existing Python unit testing work flow.
devel/Ice-3.6.2 (Score: 7.3261835E-5)
Modern alternative to object middleware such as CORBA/COM/DCOM/COM+
Python and Ice have much in common: they both are suited for a wide variety of tasks, excel at application integration, and are easy for developers to use. An Ice language mapping for Python is a recent and welcome addition to the Ice product portfolio, enabling developers to take advantage of the productivity offered by Python's friendly syntax and extensive function library.
devel/jenkins-job-builder-1.6.1 (Score: 7.3261835E-5)
Manage Jenkins jobs with YAML
Jenkins Job Builder takes simple descriptions of Jenkins jobs in YAML or JSON format and uses them to configure Jenkins. You can keep your job descriptions in human readable text format in a version control system to make changes and auditing easier. It also has a flexible template system, so creating many similarly configured jobs is easy.
devel/TestGears-0.2 (Score: 7.3261835E-5)
Python module to run tests written as simple functions
TestGears provides automatic discovery of unittest.TestCases and the ability to run tests that are written as simple functions. It generates a standard unittest.TestSuite for use with any of the standard frontends, and provides a distutils command to run tests with zero configuration.
devel/monotonic-1.1 (Score: 7.3261835E-5)
Python 3 monotonic time module for Python 2
This module provides a monotonic() function which returns the value (in fractional seconds) of a clock which never goes backwards. It is compatible with Python 2 and Python 3. On Python 3.3 or newer, monotonic will be an alias of time.monotonic from the standard library. On older versions, it will fall back to an equivalent implementation:
devel/ode-1.2.0 (Score: 7.3261835E-5)
Python bindings for The Open Dynamics Engine
PyODE is a set of open-source Python bindings for The Open Dynamics Engine, an open-source physics engine. PyODE also includes an XODE parser. Like ODE, PyODE may be distributed under the terms of either the GNU Lesser General Public License or a BSD-style license.
devel/plan-0.5 (Score: 7.3261835E-5)
Python package for writing and deploying cron jobs
Plan is a Python package for writing and deploying cron jobs. Plan will convert Python code to cron syntax. You can easily manage your cron jobs with Plan like a charm. It is designed for elegancy and writing cron jobs with as little amount of code as possible. It's extensible but comes with several good useful job types out of the box.
devel/pytimeparse-1.1.5 (Score: 7.3261835E-5)
Small Python module to parse various kinds of time expressions.
The single function pytimeparse.timeparse.timeparse, defined in the library, (also available as pytimeparse.parse) parses time expressions like the following: 32m 2h32m 3d2h32m 1w3d2h32m ... It returns the time as a number of seconds (an integer value if possible, otherwise a floating-point number): >>> from pytimeparse import parse >>> parse('1.2 minutes') 72