13 projects tagged "Python Modules"
IMDbPY is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters, and companies. It can retrieve data from both the IMDb's Web server and a local copy of the whole database. The IMDbPY package can be very easily used by programmers and developers to provide access to the IMDb's data to their programs. Some simple example scripts are included in the package.
Modeling Framework fills the gap between the Python object world and relational databases in that it allows users to transparently create, retrieve, update, or delete Python objects from a database without having to write a single line of SQL. Its main features include generation of database schema, generation of Python code templates ready to be used, support for transparent mapping of (class) inheritance in relational databases, object-oriented query language, use of standard Python getters to traverse relationships (the related objects are automatically fetched when needed and when appropriate), and automatic checking for referential-integrity constraints, etc. Supported databases are MySQL, Oracle, PostgreSQL, and SQLite.
Elixir is a declarative layer on top of SQLAlchemy. It is a fairly thin wrapper that provides the ability to define model objects following the Active Record design pattern, and using a DSL syntax similar to that of the Ruby on Rails ActiveRecord system. It does not intend to replace SQLAlchemy's core features, but instead focuses on providing a simpler syntax for defining model objects when you do not need the full expressiveness of SQLAlchemy's manual mapper definitions.
WebPython is a Web-application development toolkit written in the Python programming language. It contains an object relational database layer, portable over MySQL and PostgreSQL; a document templating engine complete with simple built-in automation; and a mechanism to store Python objects in an SQL database, among other features.
python-musicbrainz2 provides simple, object oriented access to the MusicBrainz Web service. The MusicBrainz Project (see http://musicbrainz.org) provides music metadata maintained by its large and constantly growing user community. This package helps you to write CD ripper applications, taggers, and media players by giving easy access to music metadata.
dbo is yet another database object framework written entirely in Python. Tables are represented using schema objects that encapsulate column information and supporting metadata. Row instances are represented as a dictionary. Features include database independence (with Postgres and MySQL support), automatic type conversion, database schema extraction, sequence emulation, on-the-fly table joins, and more.