A cython wrapper over the tolk library.
You can install cytolk with
pip install cytolk
make sure to clone this repository recursively, as this repository depends on the original tolk repo
git clone --recursive https://github.com/pauliyobo/cytolk
Then run
python setup.py install
Note: this will build the extension using the generated c code present in the repository. By doing so you are not required to have cython installed on your machine. If you would like to build directly from the .pyx file, you will have to install the requirements which as of now are only cython and setuptools
pip install -r requirements.txt
And set the environment variable BUILD_CYTOLK
set BUILD_CYTOLK=1
As of 0.1.7 it is now possible to use a context manager to utilize tolk's functionality. Using tolk.load() and tolk.unload() is still possible.
# This example makes use of tolk's context manager
# The old example can be found in the examples directory in the file named tolk_example.py
# They are exactly the same, only difference being that the old one does not use the context manager
from cytolk import tolk
# No need to load or unload anything, let the manager handle it for us
with tolk.tolk():
# detect the screenreader in use, in my case NVDA
print(f"screenreader detected is {tolk.detect_screen_reader()}")
# does this screenreader suport speech and braille?
if tolk.has_speech():
print("this screenreader supports speech")
if tolk.has_braille():
print("this screenreader supports braille")
# let's speak some text
tolk.speak("hello")
# good, let's now output some text on the braille display, if any in use
tolk.braille("hello")
The library will not work if it can not interface to your current screen reader. Therefore, you must place the appropriate DLL that interfaces to your screen reader in your working directory. Cytolk comes already packed with the NVDA DLLs.
Note: as of cytolk 0.1.6 placing the DLLs is no longer required, as the library automatically modifies the search path to detect the DLLs that are packaged with the extension itself Cytolk needs to find the required DLLs so that the wrapped c library can interface to your current screen reader. For this to work, the libraries need to be placed in the directory where your program is running. Finding those libraries can be annoying some times, and so, the wheel you install already comes packaged with the libraries you will need based on your architecture. This means that if you are using a 32 bit version of python, the libraries you will find in the wheel you install will be only 32 bit. But how do we go about doing this? Easy. Cytolk provides also a command line interface, which allows you to just do that. What you are looking for is this:
python -m cytolk --place_dll
This command will just place the required libraries you will need in your current directory, avoiding you to have to copy them manually. Suggestion to make this process easier are welcome.
Cytolk can't normally be included in a pyinstaller bundled executable because pyinstaller does not know which libraries it needs to collect. To fix this, it is possible to use a hook that ells pyinstaller which libraries to collect.
To use the hook, you will have to manually copy pyinstaller_hooks/hook-cytolk.py
in the pyinstaller hooks folder.
As of 0.1.11 It is also possible to include cytolk in an application that uses nuitka to build an executable.
However, while in pyinstaller's case it was a matter of just copying a file, with nuitka one more step must be applied.
Due to the fact that when c extensions are linked to an executable they can not use the special __file__
attribute, you must disable the extension of the search path when loading cytolk. To do so you can either do:
tolk.load(False)
# code
tolk.unload()
Or
with tolk.tolk(False):
# code
Assuming that is done, you can copy the plugin in the directory nuitka_plugins
and to build the executable make sure to pass the option --user-plugin=path-to-plugin
Note: some, if not all of the documentation, has been added following the already present documentation on the original tolk documentation, adapting it to the name of the functions present on this extension.
Should you be interested on more detailed documentation, you will be able to find so in the original tolk repository.
Second note: in version 0.1.7, calling functions will raise an exception if cytolk hasn't been loaded. The only functions which are not subject to this are
tolk.load
tolk.is_loaded
tolk.unload
tolk.try_sapi
tolk.prefer_sapi
Initializes the tolk library and sets the current screenreader driver, assuming that it's present in the list of supported screenreaders. All the functions to interact with the screenreader driver must be used after tolk is initialized. to verify whether tolk is initialized, call tolk.is_loaded()
args:
- extended_search_path: allows you to decide whether the library should load trying to automatically detect the DLL libraries it depends on or not. Defaults to True.
Note: this same argument can be used in the context manager
Verifies whether tolk has been initialized
deinitializes tolk.
Sets if Microsoft Speech API (SAPI) should be used in the screen reader auto-detection process. The function should be called before tolk is initialized
If auto-detection for SAPI has been turned on through tolk.try_sapi, sets if SAPI should be placed first (true) or last (false) in the screen reader detection list. Putting it last is the default and is good for using SAPI as a fallback option. Putting it first is good for ensuring SAPI is used even when a screen reader is running, but keep in mind screen readers will still be tried if SAPI is unavailable. This function triggers the screen reader detection process if needed. this function can be called before tolk is initialized
Returns the common name for the currently active screen reader driver, if one is set. If none is set, tries to detect the currently active screen reader before looking up the name. If no screen reader is active, None is returned. tolk.load
must be called before using this function.
Returns true if the current screen reader driver supports speech output. This function must be called after tolk is initialized.
Returns true if the current screen reader driver supports braille output. This function must be called after tolk is initialized.
Outputs text through the current screen reader driver. Tolk.output uses both speech and braille if supported. Returns True on success False if otherwise. This function must be called after tolk is initialized.
Args:
- text: the text to output
- interrupt: interrupts any previous speech.
speaks the text through the current screen reader driver. Returns True on success False if otherwise. This function must be called after tolk is initialized.
Args:
- text: the text to speak
- interrupt: interrupts any previous speech.
Brailles text through the current screen reader driver. Returns True on success False if otherwise. This function must be called after tolk is initialized.
Args:
- text (str) text to braille
Returns True if the current screen reader driver is speaking. This function must be called after tolk is initialized.
Silences the current screen reader driver. Returns True on success False if otherwise. This function must be called after tolk is initialized.