Ports 搜索

共有17,754项符合%E6%8E%A7%E5%88%B6%E5%8F%B0的查询结果,以下是第13,64113,650项(搜索用时0.017秒)
devel/bullet-2.83.7 (Score: 6.4104104E-5)
3D collision detection and rigid body dynamics library
Bullet is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library. It is free for commercial use under the ZLib license. The library is being used by several professional game developers on PC, PlayStation 3, XBox 360 and Nintendo Wii. Sony Computer Entertainment provides a parallel SPU optimized version, and collaborations with IBM, Intel, AMD and NVidia to exploit their parallel hardware. Bullet is native part of Blender 3D modeler and it supports COLLADA Physics file format.
devel/ezpyinline-0.1 (Score: 6.4104104E-5)
Easy embedded Inline C for Python
The ezpyinline is a pure python module which requires almost no setup to allows you put C source code directly "inline" in a Python script or module, then the C code is automatically compiled and then loaded for immediate access from Python. ezpyinline is forked from PyInline (http://pyinline.sourceforge.net/) but aim to be as easy as possible and do all the magics for you.
devel/adb-1.1.1 (Score: 6.4104104E-5)
Pure-python implementation of ADB and Fastboot protocols
py-adb is mainly targeted to users that need to communicate with Android devices in an automated fashion, such as in automated testing. It does not have a daemon between the client and the device, and therefore does not support multiple simultaneous commands to the same device. It does support any number of devices and never communicates with a device that it wasn't intended to, unlike the Android project's ADB.
devel/apscheduler-3.2.0 (Score: 6.4104104E-5)
In-process task scheduler with Cron-like capabilities
Advanced Python Scheduler (APScheduler) is a Python library that lets you schedule your Python code to be executed later, either just once or periodically. You can add new jobs or remove old ones on the fly as you please. If you store your jobs in a database, they will also survive scheduler restarts and maintain their state. When the scheduler is restarted, it will then run all the jobs it should have run while it was offline.
devel/dal-20081016 (Score: 6.4104104E-5)
Database abstraction layer for Python
PyDal is a database abstraction layer for Python. It provides a DBAPI 2.0 wrapper for DBAPI 2.0 drivers. Sounds strange, but even drivers that fully conform to the DBAPI can differ enough to make building database independent applications difficult. Two major abstractions handled by PyDal are paramstyles and datetime objects. PyDal makes it possible to use the same paramstyle and datetime types with any module that conforms to DBAPI 2.0. In addition, paramstyles and datetime types are configurable.
devel/paver-1.2.3 (Score: 6.4104104E-5)
Easy build, distribution and deployment scripting
Paver is a Python-based software project scripting tool along the lines of Make or Rake. It is not designed to handle the dependency tracking requirements of, for example, a C program. It is designed to help out with all of your other repetitive tasks (run documentation generators, moving files about, downloading things), all with the convenience of Python's syntax and massive library of code.
devel/fake-factory-0.5.7 (Score: 6.4104104E-5)
Generate fake data using python
*Faker* is a Python package that generates fake data for you. Whether you need to bootstrap your database, create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service, Faker is for you. Faker is heavily inspired by PHP's [Faker][php-faker], Perl's [Data::Faker][perl-faker], and by ruby's [Faker][ruby-faker].
devel/filemagic-1.6 (Score: 6.4104104E-5)
Python API for libmagic, the library behind the Unix file command
filemagic provides a Python API for libmagic, the library behind Unix file command. It enables the Python developer to easilty test for file types from the extensive identification library that is shipped with libmagic. Features: * Simple, Python API * Identifies named files or strings * Return a textual description, mime type or mime encoding * Provide custom magic files to customize file detection * Support for both Python2 and Python3 * Support for both CPython and PyPy
devel/rose-1.0.0 (Score: 6.4104104E-5)
Small library for keeping your version up-to-date easily everywhere
A small library for keeping your version up-to-date easily & everywhere. The pain of having to update your setup.py, your Sphinx conf.py, your __init__.py & everything else on every release of your Python package sucks. By putting your version number in a top-level VERSION file & using this library, you can cut duplication & tedious manual work without having to lean on crazy import hacks. Inspired by crazy discussion with George Hickman (ghickman) at PyCon 2013.
devel/lockfile-0.12.2 (Score: 6.4104104E-5)
Platform-independent file locking module
The lockfile module exports a FileLock class which provides a simple API for locking files. Unlike the Windows msvcrt.locking function, the Unix fcntl.flock, fcntl.lockf and the deprecated posixfile module, the API is identical across both Unix (including Linux and Mac) and Windows platforms. The lock mechanism relies on the atomic nature of the link (on Unix) and mkdir (on Windows) system calls.