* Add delete container and list tags endpoints to MediaStore * Black reformat * Fixed Lint problems * Check if dictionary was deleted effectively * lint fix * MediaPackageClientError * Lint Fix * Test unknown channel describe * Concatenation Fix * MediaPackage - fix error message * MediaPackage ClientError part2 * Mediastoredata not working Base url tests and renaming typo List Items not returning proper JSON and wrongly hitting get_object response MediaStore2 Tests * More implementation * Fix tests and format * Comments fix * Comments 2 * MediastoreData - alternative logic to figure out appropriate host Co-authored-by: av <arcovoltaico@gmail.com> Co-authored-by: Bert Blommers <info@bertblommers.nl>
12 lines
278 B
Python
12 lines
278 B
Python
from __future__ import unicode_literals
|
|
|
|
from .responses import MediaStoreDataResponse
|
|
|
|
url_bases = [
|
|
"https?://data.mediastore.(.+).amazonaws.com",
|
|
]
|
|
|
|
response = MediaStoreDataResponse()
|
|
|
|
url_paths = {"{0}/$": response.dispatch, "{0}/(?P<Path>[^/.]+)$": response.dispatch}
|