Stephen Daves
Stephen Daves
This allows a user to pull from a remote server, check for changes, commit them to git, and then push. Check out the demo I included to see how I...
Currently I am unable to create a custom link attribute because I cannot call the Tag constructor without the Head.node function being exposed. I created a 1 line PR to...
Currently its not possible to create your own instance of a Tag, exposing the Head.node function allows this feature.
Hello, Using the iamacommandhandler interface currently depends on having a hard reference to DomainService and all of its dependencies. This pull request aims at making interfaces standalone for the DomainService...
Getting this error before the fix: AttributeError: module 'pfun.console' has no attribute 'print'
This allows calling `python -m shortcut whatever` to create a shortcut for the `whatever` file. Currently the shortcut binary must be in your system path to be able to use...
There are several new tools that only support typing-extensions >= 4.0, and the 3.0 version has no security updates in the last 2 years.
This uses the final function from the typing module in python 3.8+ and removes the dependency of `typing-extensions`
This allows stateless to be imported in the browser: https://jupyterlite.readthedocs.io/en/stable/_static/lab/index.html ``` # within pyodide (browser WASM python) import micropip await micropip.install('stateless') import stateless print(dir(stateless)) ```