plugins

Python IDE autocomplete missing some methods from AppDaemon plugin class

Python IDE autocomplete missing some methods from AppDaemon plugin class Question: I’m trying to use autocomplete for the Hass class from the Python AppDaemon package. Autocomplete is showing some of the inherited methods from the superclass such as get_state(), but some methods are missing, such as log() and get_entity(). This behavior is the same in …

Total answers: 2

Alternatives to Psychopy

Alternatives to Psychopy Question: Main question: I’m trying to build a brain-computer interface (BCI) experiment in Python that involves "high frequency" flashing (SSVEP), decision-making stimuli (P300), signal acquisition (EEG, with OpenBCI), and classifiers. I’ve been trying to use Psychopy toolbox for the interface part, but, unfortunately, it has been such a headache to make it …

Total answers: 1

How to include third party Python packages in Sublime Text 2 plugins

How to include third party Python packages in Sublime Text 2 plugins Question: I’m writing a sublime text 2 plugin that uses a module SEAPI.py which in itself imports the requests module. Since sublime text 2 uses it’s own embedded python interpreter, it doesn’t see the requests module installed in my ubuntu machine (I get …

Total answers: 2

Using Sphinx to write personal websites and blogs

Using Sphinx to write personal websites and blogs Question: Sphinx is a Python library to generate nice documentation from a set of ReST formatted text files. I wonder if any one has written Sphinx plugins to make it generate personal websites and blogs. Especially for blogs, there needs to be a way to automatically list …

Total answers: 8

Building a minimal plugin architecture in Python

Building a minimal plugin architecture in Python Question: I have an application, written in Python, which is used by a fairly technical audience (scientists). I’m looking for a good way to make the application extensible by the users, i.e. a scripting/plugin architecture. I am looking for something extremely lightweight. Most scripts, or plugins, are not …

Total answers: 18