PYOAN4k电视是什么意思思

【欧美】my own love - 歌单 - 网易云音乐
【欧美】my own love
网易云音乐多端下载
同步歌单,随时畅听320k好音乐
网易公司版权所有(C)杭州乐读科技有限公司运营:Peter and the Wolf, Op. 67: VI. Juuri silloin ilmestyi metsan reunasta nakyviin joukko metsastajia. He seuravisat suden jalkia ja ammuskelivat pyssyillaan-Lasse Pyosti, Peter and the Wolf, Op. 67: VI. Juuri silloin ilmestyi metsan reunasta nakyviin joukko metsastajia. He seuravisat suden jalkia ja ammuskelivat pyssyillaanMP3下载,歌词下载 - 虾米音乐
Loading...
Peter and the Wolf, Op. 67: VI. Juuri silloin ilmestyi metsan reunasta nakyviin joukko metsastajia. He seuravisat suden jalkia ja ammuskelivat pyssyillaan
@微博好友,送歌给Ta!
Sorry,此歌曲暂无文本歌词。
使用手机扫码收听单曲
打开虾米音乐APP
点击 扫一扫
扫描二维码
这张专辑的其他歌曲
关注虾米:pyoai 2.5.0
The oaipmh module is a Python implementation of an "Open Archives
Initiative Protocol for Metadata Harvesting" (version 2) client and server.
The protocol is described here:
http://www.openarchives.org/OAI/openarchivesprotocol.html
.. -*- restructuredtext -*-OAIPMH======.. image:: https://travis-ci.org/mpasternak/pyoai.svg?branch=master
:target: https://travis-ci.org/mpasternak/pyoaiThe oaipmh module is a Python implementation of an "Open ArchivesInitiative Protocol for Metadata Harvesting" (version 2) client andserver. The protocol is described here:http://www.openarchives.org/OAI/openarchivesprotocol.htmlBelow is a simple implementation of an OAIPMH client:&&& from oaipmh.client import Client&&& from oaipmh.metadata import MetadataRegistry, oai_dc_reader&&& URL = 'http://uni.edu/ir/oaipmh'&&& registry = MetadataRegistry()&&& registry.registerReader('oai_dc', oai_dc_reader)&&& client = Client(URL, registry)&&& for record in client.listRecords(metadataPrefix='oai_dc'):&&&
print recordThe pyoai package also contains a generic server implementation of the OAIPMH protocol, this is used as the foundation of the `MOAI Server Platform`_.. _MOAI Server Platform: http://pypi.python.org/pypi/MOAIChangelog=========2.5.1 (unreleased)~~~~~~~~~~~~~~~~~2.5.0 ()~~~~~~~~~~~~~~~~~~- Added Python 3 compatibility (contributed by Tobias Kurze, Uli K?hler and Micha? Pasternak)- Travis support and badges (Micha? Pasternak)2.4.5 ()~~~~~~~~~~~~~~~~~~- Added switch in client to force harvesting using HTTP Get method (contributed by Stefan Oderbolz).- Added unofficial GetMetadata verb in server and client. GetMetadata is
identical to GetRecord, but only returns the first element below the
oai:metadata element, it does not return the oai enveloppe.2.4.4 ()~~~~~~~~~~~~~~~~~~
* Changed contact info, Migrated code from Subversion to Mercurial2.4.3 ()~~~~~~~~~~~~~~~~~~Changes-------
* Convert lxml.etree._ElementUnicodeResult and ElementStringResult
to normal string and unicode objects, to prevent errors when these
objects get pickled. (lp #617439)2.4.2 ()~~~~~~~~~~~~~~~~~~Changes-------
* OAI_DC and DC namespace declarations should not be declared on the document
root, but on the child of the metadata element. According to the OAI spec
2.4.1 ()~~~~~~~~~~~~~~~~~~Changes------- * When specifying a date (not a datetime) for the until parameter,
default to 23:59:59 instead of 00:00:002.4 ()~~~~~~~~~~~~~~~~Changes-------* Included support for description elements in OAI Identify headers,
added 'toolkit' description by default.2.3.1 ()~~~~~~~~~~~~~~~~~~Changes-------* Raise correct error when from and until parameters have different granularities2.3 ()~~~~~~~~~~~~~~~~Changes-------* Fixed bug and added tests for handling invalid dateTime formats,
the server will now respond with a BadArgument (XML) error instead
of a python traceback.* Use buildout to create testrunner and environment as opposed to
``test.py`` script.
Install buildout by:
$ python bootstrap.py
$ bin/buildout
Run the tests by doing:
$ bin/test
To get a python interpreter with the ``oaipmh`` library importable::
$ bin/devpython2.2.1 ()~~~~~~~~~~~~~~~~~~Changes-------* Added xml declaration to server output* Prettyprint xml output* compatibility fix: should be compatible with lxml 2.0 now* server resumption tokens now work with POST requests.* Fix for client code that handles 503 response from server.2.2 ()~~~~~~~~~~~~~~~~Changes-------* Support for BatchingServer. A BatchingServer implements the
IBatchingOAI interface. This is very similar to IOAI, but methods
get a 'cursor' and 'batch_size' argument. This can be used to
efficiently implement batching OAI servers on top of relational
databases.* Make it possible to explicitly pass None as the from or until parameters
for a OAIPMH client.* an extra nsmap argument to Server and BatchingServer allows the
programmer to specify either namespace prefix to namespace URI mappings
that should be used in the server output.* fixed a bug where the output wasn't encoded properly as UTF-8.2.1.5 ()~~~~~~~~~~~~~~~~~~Changes-------* compatibility fix: it should work with lxml 1.1 now.2.1.4 ()~~~~~~~~~~~~~~~~~~Changes-------* Distribute as an egg.2.1.3~~~~~Changes-------* Add infrastructure to deal with non-XML compliant OAI-PMH
an XMLSyntaxError is raised in that case.* added tolerant_datestamp_to_datetime which is a bit more tolerant
than the normal datestamp_to_datetime when encountering bad
datestamps.* Split off datestamp handling into separate datestamp module.2.0~~~Changes-------* Add support for day-only granularity (YYYY-MM-DD) in client.
calling 'updateGranularity' with the client will check with the
server (using identify()) to see what granularity the server
If the server only supports day level granularity, the
client will make sure only YYYY-MM-DD timestamps are sent.2.0b1~~~~~Changes-------* Added framework for implementing OAI-PMH compliant servers.* Changed package structure: now a oaipmh namespace package. Client
functionality now in oaipmh.client.* Refactoring of oaipmh.py module to reuse code for both client and
server.* Extended testing infrastructure.* Switched over from using libxml2 Python wrappers to the lxml binding.* Use generators instead of hacked up __getitem__. This means that the
return from listRecords, listIdentifiers and listSets are now not
normal lists but iterators. They can easily be turned into a normal
list by using list() on them, however.1.0.1 ~~~~~Bugs fixed----------* Typo in oaipmh.py1.0~~~Bugs fixed----------* Added an encoding parameter to the serialize call, which fixes a
unicode bug.0.7.4~~~~~Bugs fixed----------* A harvest can return records with &header status~"deleted"=""& that
contain no metadata and are merely an indication that that
metadata-set for that resource is no longer on the OAI service.
These records should be used to remove metadata from the catalog if
it is there, bur should never be stored or catalogued
themselves. They aren't now. (Fixed in zope/OAICore/core.py)0.7 ~~~Initial public release.
Py Version
Uploaded on
Home Page:
OAI-PMH xml archive
Categories
Package Index Owner:
faassen, gbuijs, jsproc
Package Index Maintainer:
Copyright (C) , 上传我的文档
 下载
 收藏
粉丝量:205
本人上传文档大多数来源于互联网,如有侵权,请告之,本人会立刻删除!
 下载此文档
新型炸药2,6-二氨基-3,5-二硝基吡啶-1-氧化物的射流冲击感度实验研究
下载积分:500
内容提示:新型炸药2,6-二氨基-3,5-二硝基吡啶-1-氧化物的射流冲击感度实验研究
文档格式:PDF|
浏览次数:4|
上传日期: 02:26:42|
文档星级:
全文阅读已结束,如果下载本文需要使用
 500 积分
下载此文档
该用户还上传了这些文档
新型炸药2,6-二氨基-3,5-二硝基吡啶-1-氧化物的射流
关注微信公众号Prospects.ac.uk
Looking for that perfect career?We guide millions of students to make the right choice.Match your skills and personality to 400+ job profiles.Advertisementin Manchester}

我要回帖

更多关于 4k电视是什么意思 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信