Ports 搜索

共有5,623项符合/devel/的查询结果,以下是第4,0714,080项(搜索用时0.005秒)
devel/archetypes.schemaextender-2.1.2 (Score: 0.032514982)
Dynamically extend Archetypes schemas with named adapters
Dynamically extend Archetypes schemas with named adapters.
devel/arrow-0.8.0 (Score: 0.032514982)
Better dates and times for Python
Arrow is a Python library that offers a sensible, human-friendly approach to creating, manipulating, formatting and converting dates, times, and timestamps. It implements and updates the datetime type, plugging gaps in functionality, and provides an intelligent module API that supports many common creation scenarios. Simply put, it helps you work with dates and times with fewer imports and a lot less code.
devel/aspects-1.3 (Score: 0.032514982)
Lightweight aspect oriented programming library for Python
aspects is a lightweight approach to aspect oriented programming (AOP) in Python.The aspects.py library provides means to intercept function calls. Functions and methods (also in Python standard library and third party code) can be wrapped so that when they are called, the wrap is invoked first.
devel/aspyct-3.0 (Score: 0.032514982)
Python library including an aspect-oriented programming (AOP) engine
Aspyct AOP engine allows you to perform evolved aspect oriented programming with Python, while remaining clear and simple.
devel/initgroups-2.13.0 (Score: 0.032514982)
Convenience uid/gid helper function used in Zope2
initgroups provides a convenience function to deal with user/group ids on Unix-style systems.
devel/astroid-1.4.6 (Score: 0.032514982)
Extension for Python compiler.ast module
The aim of this module is to provide a common base representation of python source code for projects such as pychecker, pyreverse, pylint... Well, actually the development of this library is essentially governed by pylint's needs. It used to be called logilab-astng.
devel/atomicwrites-1.0.0 (Score: 0.032514982)
Atomic file writes library
Atomic file writes library for Python, featuring race-free assertions, Windows support (although untested) and simple high level API.
devel/attrs-16.0.0 (Score: 0.032514982)
Python attributes without boilerplate
attrs is an MIT-licensed Python package with class decorators that ease the chores of implementing the most common attribute-related object protocols: >>> import attr >>> @attr.s ... class C(object): ... x = attr.ib(default=42) ... y = attr.ib(default=attr.Factory(list)) >>> i = C(x=1, y=2) (If you don't like the playful attr.s and attr.ib, you can also use their no-nonsense aliases attr.attributes and attr.attr). You just specify the attributes to work with and attrs gives you: a nice human-readable __repr__, a complete set of comparison methods, an initializer, and much more without writing dull boilerplate code again and again.
devel/avro-1.8.1 (Score: 0.032514982)
Data serialization system for python
Avro is a data serialization system. Avro provides: * Rich data structures. * A compact, fast, binary data format. * A container file, to store persistent data. * Remote procedure call (RPC). * Simple integration with dynamic languages. Code generation is not required to read or write data files nor to use or implement RPC protocols. Code generation as an optional optimization, only worth implementing for statically typed languages.
devel/Babel-2.3.4 (Score: 0.032514982)
Collection of tools for internationalizing Python applications
Babel is composed of two major parts: * tools to build and work with gettext message catalogs * a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc.