alnoda-workspaces/workspaces/notebook-old-workspace/nbviewer/nbviewer/providers/dropbox/handlers.py

16 lines
534 B
Python
Raw Normal View History

2022-05-30 19:24:06 +12:00
# -----------------------------------------------------------------------------
# Copyright (C) Jupyter Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
# -----------------------------------------------------------------------------
def uri_rewrites(rewrites=[]):
return rewrites + [
(
r"^http(s?)://www.dropbox.com/(sh?)/(.+?)(\?dl=.)*$",
u"/url{0}/dl.dropbox.com/{1}/{2}",
)
]