-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
separate bundle creation from URL encoding
- Loading branch information
Showing
3 changed files
with
107 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
"""A package for packaging Shiny applications that run on Python in the browser.""" | ||
|
||
from . import _version | ||
from ._url import decode_shinylive_url, encode_shinylive_url | ||
from ._url import ( | ||
create_shinylive_bundle_file, | ||
create_shinylive_bundle_text, | ||
create_shinylive_url, | ||
decode_shinylive_url, | ||
) | ||
|
||
__version__ = _version.SHINYLIVE_PACKAGE_VERSION | ||
|
||
__all__ = ( | ||
"decode_shinylive_url", | ||
"encode_shinylive_url", | ||
"create_shinylive_url", | ||
"create_shinylive_bundle_text", | ||
"create_shinylive_bundle_file", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters