Martin O'Hanlon
Martin O'Hanlon
The Flash and LED example in the recipes as an unrequired `import os` 
Fill in the details or delete as appropriate :) **Describe the bug** The 2 button example here (https://bluedot.readthedocs.io/en/latest/recipes.html#id1) is missing the code. The code is a copy of the dpad...
Block properties were introduced in minecraft 1.8, these havent replaced block data but supplement it. Functions should be introduced / modified to work with block properties
There are use cases (particularly when creating python packages) where it is required to create shortcuts to files which dont exist [yet]. The full path would have to be defined...
call `xdg-user-dir` if possible to return the desktop location ```python def _get_desktop_folder(self): import subprocess try: return subprocess.check_output(['xdg-user-dir', 'DESKTOP']).decode('utf-8').strip() except subprocess.CalledProcessError: return os.path.join(os.path.join(os.path.expanduser('~')), 'Desktop') ``` Based on requests in https://github.com/martinohanlon/shortcut/pull/7 from...
At the moment the shortcut created is simply named the same as the file, it would be useful to be able to provide your own name of file. Based on...
Errors being raised are not always desirable in scripted situations, an option to ignore errors is required. Based on requests in https://github.com/martinohanlon/shortcut/pull/7 from @kiwi0fruit
Rather than raised errors, the option should exist to log errors to an open file object, including stderr. Based on requests in https://github.com/martinohanlon/shortcut/pull/7 from @kiwi0fruit