zope.app.zapi 3.5.0
pip install zope.app.zapi
Released:
Zope application programming interface
Navigation
Verified details
These details have been verified by PyPIOwner
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Zope Public License (ZPL 2.1)
- Author: Zope Corporation and Contributors
Classifiers
- Development Status
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
CHANGES
3.5.0 (2011-03-01)
Removed BBB imports of deprecated parts (services, multiviews etc.) which were removed in zope.component 3.6, thus requiring at least this version.
Using Python’s doctest module instead of depreacted zope.testing.doctest.
3.4.1 (2009-07-23)
Explicitely list all dependencies. Fixes test failures.
3.4.0 (2007-10-03)
Initial public release as an individual package.
Zope Application Programming Interface
This package provides a collection of commonly used APIs to make imports simpler.
Mostly, the APIs provided here are imported from elsewhere. A few are provided here.
principals()
The principals method returns the authentication service. If no service is defined, a ComponentLookupError is raised:
>>> from zope.app import zapi >>> zapi.principals() #doctest: +NORMALIZE_WHITESPACE Traceback (most recent call last): ... ComponentLookupError: (<InterfaceClass zope.authentication.interfaces.IAuthentication>, '')
But if we provide an authentication service:
>>> import zope.interface >>> from zope.authentication.interfaces import IAuthentication >>> class FakeAuthenticationUtility: ... zope.interface.implements(IAuthentication) >>> fake = FakeAuthenticationUtility()>>> from zope.app.testing import ztapi >>> ztapi.provideUtility(IAuthentication, fake)
Then we should be able to get the service back when we ask for the principals:
>>> zapi.principals() is fake True
Download
Project details
Verified details
These details have been verified by PyPIOwner
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Zope Public License (ZPL 2.1)
- Author: Zope Corporation and Contributors
Classifiers
- Development Status
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file zope.app.zapi-3.5.0.tar.gz
.
File metadata
- Download URL: zope.app.zapi-3.5.0.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1af828759934b3db7024d4b219d94e337a16fac92793202e4791e4278e52e67b |
|
MD5 | 2196486136eda9cffd4cca0ed8330d14 |
|
BLAKE2b-256 | 6d40bc9f0b75bf859b6d6ae7273456b994b8eaca61bf7e6714e2f68535ae5ba4 |