Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-pyo | Distribution: openSUSE Leap 15.2 |
Version: 0.9.1 | Vendor: openSUSE |
Release: lp152.2.2 | Build date: Sat Nov 9 05:10:09 2019 |
Group: Development/Languages/Python | Build host: obs-arm-9 |
Size: 15064927 | Source RPM: python-pyo-0.9.1-lp152.2.2.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: http://ajaxsoundstudio.com/software/pyo/ | |
Summary: Python digital signal processing module |
PYO is a Python module written in C to help digital signal processing script creation.
GPL-3.0
* Wed Oct 31 2018 Todd R <toddrme2178@gmail.com> - Update to version 0.9.1 * On Windows, use 'directsound' as the default audio host (much more reliable than 'wasapi'). * Fixed phase shifting between the frequency bands of FourBand and MultiBand. * Added a new object: MultiBand, frequency splitter using Linkwitz-Riley crossover filters. * Fixed Compress output level when input's rms is above unity. * Added the ability to remove a project from the project tree. * Added getPrecision() function. Removed print statement when importing pyo. User should use getVersion() and getPrecision() functions if needed. * Fixed crash when asking for more input or output channels than available. * Fixed Server window's Interpreter field scrolling history on MacOS. * Wed May 16 2018 toddrme2178@gmail.com - Update to version 0.9.0 - Bug Fixes: * Fixed HRTF impulse responses interpolation. Interpolation is perform in the spectral domain to avoid phase cancellation that occur in the time domain. - New features: * Added a new object: Expand, which expand the dynamic range of an audio signal. * Added a new object: RMS, which return the rms value of an audio signal. * Added a new object: MidiLinseg, a midi-triggered breakpoints envelope. * Added a Server.makenote(pitch, velocity, duration, channel=0) method, which build both noteon and noteof messages. - Update to version 0.8.9 - Bug Fixes: * Fixed erroneous condition in listscramble function. * Fixed pa_get_devices_infos() function on Windows. * Fixed segfault at exit when a Server object is created but never booted (fixed issue #117). * Fixed window shape in the Harmonizer object (use an halfsine instead of an hanning). * Fixed crash when trying to draw a ControlSlider with width or height of 0. - Enhancements: * Changed the stereo panning law for cosine/sine within Pan object. * Speed-up computation for various objects. * Allow the "mode" argument of Resample object to be changed dynamically. * Added new object: HRTF, Head-Related Transfert Function 3D spatialization. - Update to version 0.8.8 - Bug Fixes: * Added missing binding to stop method in MidiListener. * Removed internal import of the random module. Scripts importing both pyo and random modules segfault on garbage collection at exit. * Added missing static declaration to functions in pyomodule. * E-Pyo: Fixed startup crash when preferences contains unicode characters. * Granulator now compensates for the difference between the loaded sound's sampling rate and pyo's sampling rate, if any. * Fixed PyoArgumentTypeError when ctrl() is called for an object with dataOnly parameter and tk is used instead of wxpython. * Don't try to deactivate jack if it is stopped externally (ex. from qjackctl). * Fixed audio and midi backends memory allocation. * Properly incref and decref server references inside pyo objects. * Fixed path encoding on windows for python 3.6. - Enhancements: * Added Jack midi support to the Server. * Added a new init argument (wintitle) to Scope and Spectrum objects to allow the user to set the title name of their windows. Also added a method to show/hide the channel labels in the GUI. * Added a callback attribute to PVAnal. The function receives magnitudes and true frequencies for every analysis frame. - Update to version 0.8.7 - Bug Fixes: * Disable Microsoft Midi devices by default. Added Server.allowMicrosoftMidiDevices() method to enable them. * Wrap jack api detection inside a try-except statement in case jack2-dbus is used instead of jackd. * Fixed bugs in Expr object's unicode handling. * Fixed windows 10 dependencies. * Fixed ending point of TableRec's time stream (now keep the last value instead of switching back to 0). * Fixed clean-up of VoiceManager object. * Fixed encoding of file path on windows for various objects. - Enhancements: * The server now allow up to 16 channel rms outputs for GUI drawing. * Added getInterpolated method to PyoMatrixObject class. Returns the interpolated value for a floating-point position in the matrix. * OscDataSend now can send more than one message per buffer size. * Update MacOS and Windows build routine to compile for python 2.7, 3.5 and 3.6. - Update to version 0.8.6 - Bug Fixes: * Fixed TableRead which continues to play when freq is negative and loop is off. * Fixed CallAfter segfault when deleted inside its own callback. * Fixed segfault when updating ControlSlider value from the audio thread. * Updated liblo from 0.26 to 0.28 on Windows. This fixes a bug with socket not properly closed. * Fixed segfault in Resample_dealloc function. * Fixed libraries dynamic links in MacOS installer scripts. * Fixed TableRec, TrigTableRec and Looper time stream not started on play. - Enhancements: * Added "speed" argument to Seq object. Useful to create continuous time deceleration or acceleration. * Added setRandomType(dist, x) method to SfMarkerShuffler object. * Added a "Copy" menu item in PyoObject.ctrl() and DataTable.graph() windows. - Update to version 0.8.5 - What's new: * Added pa_get_default_devices_from_host(host) function. This function can greatly help finding the device indexes (especially on Windows) to give to the server in order to use to desired audio host. * Added a new winhost argument to the Server's initialization. On Windows, it defaults to WASAPI. * Check the jack api version before compiling to ensure existing functions are used (jack_port_set_name/jack_port_rename). * Added two examples in 07-effects, 01-flanger.py and 02-schroeder-reverb.py. - Update to version 0.8.4 - Bug fixes: * Fixed GIL conflicts with portaudio, portmidi and jack library calls. * Updated portaudio interface to make it much more secure. * Fixed segfault in MidiListener callback function with python3. * Fixed SfMarkerLooper and SfMarkerShuffler markers not accurate when soundfile sampling rate is not the same as the server's sampling rate. - New features: * Midi input refactoring. Events are now spreaded over the buffer size according to the event's timestamp. * MidiDispatcher can send sysex message with sendx() method. * Added a "title" argument to Server.gui() method. * Added a "setMode" method to Selector object to switch between equal power mode and linear fade. * Added a "setKeepLast" method to TableRead object (will hold last value). * Added "setIsJackTransportSlave" method to Server object (it allows to start/stop the Server from jack transport). * Added "setJackInputPortNames" and "setJackOutputPortNames" methods to Server object. This allow the user to rename jack input/output ports. * Added "id" and "object" attributes to wxgui's object events. - Update to version 0.8.2 - What's new: * Fixed latency issue when using portaudio as audio backend. * TrigFunc and Pattern now accept a tuple as "arg" argument (fixed issue #90). * E-Pyo: Fixed a bug in the documentation window. * Fixed midi input events handling. * Set interpolation to off by default for midi continuous controllers. - Update to version 0.8.1 - New objects: * LogiMap, random generator based on the logistic map. - New functionalities: * Added a method (sysexout()) to send sysex messages to the Server object. * Added PyoTableObject.getBuffer() method. The PyoTableObject now support the buffer protocol (see PEP 3118), which allow a table to share its data memory with any object that support the buffer protocol (ex. numpy array). * Added Server.setCallback() method to allow the user to define a custom process function. This function will be called once per buffer size, just before the computation of the audio objects tree. * Added Server.getCurrentTime() and Server.getCurrentAmp() methods. * Improve Looper object: Added a time stream, which gives the current normalized position. Added loopnow() method, which allows to start a new loop immediately with crossfade. Added appendFadeTime() and fadeInSeconds() methods to give a more flexible control of the behavior of the object. * Added an 'inverse' argument to PVGate object. When set to True, the damping factor is applied to bins with an amplitude above the threshold. * Added a `callback` argument to PyoObject.set() method. The given callback will be executed at the end of the ramp. * Added ctrl() method (and some missing setter) to midi objects. * TableWrite object now takes into account the feedback argument of NewTable object and interpolates to fill in gaps if its writing pointer moves faster than the sampling rate. * Added a reset() method to various delay line-based objects (AllpassWG, Chorus, Freeverb, Harmonizer, STRev, WGVerb, Waveguide). * All objects can be used as iterator (will iterate over its internal sterams). * SigTo ramp time now can be controlled at audio rate. * Iter object now sends a trigger when it reaches the last value. * Iter object now accepts PyoObjects in its list of values. - Bug fixes: * Fixed jack ports auto-connection algorithm. * Several minor bug fixes. - Improvements: * Added low-latency driver WDMKS in the portaudio build routine for Windows. * Replaced all printf calls with PySys_WriteStdout. This allow to redirect messages from pyo to a string or a file, instead of the stdout. - Documentation: * Added new examples, 05-envelopes/ and 06-filters/. * Added a new file, called "How to improve performance of your pyo programs", to the documentation. - Implement single-spec version * Tue Nov 18 2014 toddrme2178@gmail.com - Update to version 0.7.3 * Added new objet: Scope, an audio waveform display. * E-Pyo: Fix marker's line numbering. * E-Pyo: Added Save As Template... menu item. * Fixed bug in Fader decreasing ramp. * Added midi output methods to the Server object. noteout, afterout, ctlout, programout, pressout and bendout. * Server.setMidiOutputDevice(idx) with `idx` greater than the higher portmidi devices index opens all available output devices. * Added new object: FToM, converts an audio stream containning frequencies in hertz to a midi note audio stream. * Added new function: hzToMidi, converts a frequency in hertz to a midi note value. - Update to version 0.7.2 * Server.setMidiInputDevice(idx) with `idx` greater than the higher portmidi input index opens all available devices. * OSX installer: Also install pyo in anaconda site-packages directory if exist. * Added new object : TrigBurst, generates a time/amplitude expandable trigger pattern. * Added new object : Euclide, Euclidean rhythm generator. * Windows installers now check for the current python installation directory before installing files. * E-Pyo: Fixed inconsistencies in Find/Replace behaviours. * Added new object : SmoothDelay, a delay line that does not produce clicks or pitch shifting when the delay time is changing. * Added new object : AttackDetector, audio signal onset detection. * Added new object : Centroid, Computes the spectral centroid of an input signal. - Update to version 0.7.2 * E-Pyo: Added RadioPyo to the template choices. * Fixed Compare when used with None or a string. Print a warning and set 'comp' attribute to 0. * Fixed live interpreter of the server window when using arrow keys navigation. * E-Pyo: Check if WxPython 3.0 is installed, otherwise uses 2.8. * Added anti-aliasing to PyoTableObject's grapher widget. Fixed Ctrl+W on the grapher. - Update to version 0.7.0 * pyo can now be used without any GUI toolkit (WxPython or TKinter). Widgets are simply disabled. * Added Server methods to auto-connect Jack ports to already opened ports. * E-Pyo: output log now in realtime. * Added new object: Tanh, hyperbolic tangent function on audio signal. - Update to version 0.6.9 * Added lot of methods to PyoTableObject (retify, bipolarGain, invert, lowpass, fadein, fadeout, pow). * Added new object: PartialTable, generates waveforms made of inharmonic components. * Added a Scope example in examples/utilities. * Added new object: STRev, Stereo reverb. * Added dataOnly argument to SLMap. User can now control parameters, in ctrl window, that do not accept audio signal but discreet values. * Added new object: ComplexRes, Complex one-pole resonator filter. * Added new object: TrackHold, Performs a 'thru' and hold on its input signal. - Update to version 0.6.8 * Added multi server facility and and embeded callback support for plugin development (code by Guillaume Barrette). * Add a channel offset to the server physical inputs and outputs. * Added support for reading/writing various soundfile formats. FLAC and OGG need libsndfile to be compiled with both of them enabled. * Added new object: PVMix, Mix the most prominent components from two phase vocoder streaming objects. * Added new object: TableScale, Scales values from a table and writes them into another table. * Added new object: Granule, another granular synthesis generator. * Added new object: PVBufTabLoops, phase vocoder buffer with bin independent speed playback (controlled with a PyoTableObject). * Added new object: PVBufLoops, phase vocoder buffer with bin independent speed playback. * Added new objects: PVShift, spectral frequency shifter. PVAmpMod and PVFreqMod, frequency independent modulations. * Added new objects: PVDelay, spectral delays and PVBuffer, phase vocoder recorder and playback. * Added setJackAuto method to the Server to disable (enabled by default) Jack ports auto-connection. * Added graph() method to DataTable object. Opens a multisliders window to edit the table content. * Added new object: PVFilter. Spectral filtering. * Added new object: PVCross, PVMult, PVMorph. Spectral morphing. * Added new object: PVAddSynth, Phase Vocoder additive synthesis object. * Phase Vocoder, first draft. PVAnal, PVSynth, PVTranspose, PVVerb and PVGate. * E-Pyo: Added "Search in Project Files" option. * E-Pyo: Added Filters Menu. User-defined text processing functions. * Now using Sphinx to generate the API documentation. * Added new objects: ButLP, ButHP, ButBP, ButBR, second-order Butterworth filters. * Added new objects: Reson and Resonx, second-order resonant bandpass filters. * Fri May 10 2013 toddrme2178@gmail.com - Initial version
/usr/lib64/python3.6/site-packages/__pycache__ /usr/lib64/python3.6/site-packages/__pycache__/pyo.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/__pycache__/pyo.cpython-36.pyc /usr/lib64/python3.6/site-packages/__pycache__/pyo64.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/__pycache__/pyo64.cpython-36.pyc /usr/lib64/python3.6/site-packages/_pyo.cpython-36m-aarch64-linux-gnu.so /usr/lib64/python3.6/site-packages/_pyo64.cpython-36m-aarch64-linux-gnu.so /usr/lib64/python3.6/site-packages/pyo-0.9.1-py3.6.egg-info /usr/lib64/python3.6/site-packages/pyo.py /usr/lib64/python3.6/site-packages/pyo64.py /usr/lib64/python3.6/site-packages/pyolib /usr/lib64/python3.6/site-packages/pyolib/__init__.py /usr/lib64/python3.6/site-packages/pyolib/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_core.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_core.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_maps.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_maps.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_tkwidgets.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_tkwidgets.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_widgets.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_widgets.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_wxwidgets.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/_wxwidgets.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/analysis.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/analysis.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/arithmetic.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/arithmetic.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/controls.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/controls.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/dynamics.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/dynamics.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/effects.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/effects.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/expression.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/expression.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/filters.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/filters.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/fourier.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/fourier.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/generators.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/generators.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/hrtf.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/hrtf.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/listener.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/listener.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/matrix.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/matrix.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/matrixprocess.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/matrixprocess.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/midi.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/midi.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/opensndctrl.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/opensndctrl.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/pan.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/pan.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/pattern.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/pattern.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/phasevoc.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/phasevoc.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/players.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/players.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/randoms.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/randoms.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/server.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/server.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/tableprocess.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/tableprocess.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/tables.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/tables.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/triggers.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/triggers.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/utils.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/utils.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/wxgui.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/__pycache__/wxgui.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/_core.py /usr/lib64/python3.6/site-packages/pyolib/_maps.py /usr/lib64/python3.6/site-packages/pyolib/_tkwidgets.py /usr/lib64/python3.6/site-packages/pyolib/_widgets.py /usr/lib64/python3.6/site-packages/pyolib/_wxwidgets.py /usr/lib64/python3.6/site-packages/pyolib/analysis.py /usr/lib64/python3.6/site-packages/pyolib/arithmetic.py /usr/lib64/python3.6/site-packages/pyolib/controls.py /usr/lib64/python3.6/site-packages/pyolib/dynamics.py /usr/lib64/python3.6/site-packages/pyolib/effects.py /usr/lib64/python3.6/site-packages/pyolib/expression.py /usr/lib64/python3.6/site-packages/pyolib/filters.py /usr/lib64/python3.6/site-packages/pyolib/fourier.py /usr/lib64/python3.6/site-packages/pyolib/generators.py /usr/lib64/python3.6/site-packages/pyolib/hrtf.py /usr/lib64/python3.6/site-packages/pyolib/listener.py /usr/lib64/python3.6/site-packages/pyolib/matrix.py /usr/lib64/python3.6/site-packages/pyolib/matrixprocess.py /usr/lib64/python3.6/site-packages/pyolib/midi.py /usr/lib64/python3.6/site-packages/pyolib/opensndctrl.py /usr/lib64/python3.6/site-packages/pyolib/pan.py /usr/lib64/python3.6/site-packages/pyolib/pattern.py /usr/lib64/python3.6/site-packages/pyolib/phasevoc.py /usr/lib64/python3.6/site-packages/pyolib/players.py /usr/lib64/python3.6/site-packages/pyolib/randoms.py /usr/lib64/python3.6/site-packages/pyolib/server.py /usr/lib64/python3.6/site-packages/pyolib/snds /usr/lib64/python3.6/site-packages/pyolib/snds/IRMediumHallStereo.wav /usr/lib64/python3.6/site-packages/pyolib/snds/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/accord.aif /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e005a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e025a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e035a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e055a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e065a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e085a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e095a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e115a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e125a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e145a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e155a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e175a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/H-10e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-10/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e005a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e025a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e035a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e055a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e065a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e085a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e095a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e115a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e125a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e145a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e155a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e175a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/H-20e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-20/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e006a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e012a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e018a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e024a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e036a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e042a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e048a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e054a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e066a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e072a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e078a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e084a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e096a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e102a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e108a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e114a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e126a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e132a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e138a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e144a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e156a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e162a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e168a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e174a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/H-30e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-30/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e006a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e013a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e019a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e026a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e032a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e039a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e051a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e058a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e064a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e071a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e077a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e084a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e096a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e103a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e109a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e116a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e122a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e129a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e141a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e148a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e154a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e161a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e167a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e174a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/H-40e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev-40/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e005a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e025a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e035a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e055a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e065a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e085a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e095a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e115a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e125a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e145a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e155a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e175a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/H0e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev0/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e005a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e025a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e035a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e055a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e065a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e085a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e095a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e115a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e125a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e145a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e155a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e175a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/H10e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev10/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e005a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e025a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e035a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e055a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e065a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e085a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e095a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e115a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e125a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e145a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e155a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e175a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/H20e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev20/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e006a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e012a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e018a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e024a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e036a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e042a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e048a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e054a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e066a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e072a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e078a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e084a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e096a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e102a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e108a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e114a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e126a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e132a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e138a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e144a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e156a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e162a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e168a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e174a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/H30e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev30/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e006a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e013a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e019a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e026a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e032a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e039a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e051a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e058a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e064a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e071a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e077a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e084a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e096a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e103a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e109a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e116a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e122a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e129a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e141a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e148a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e154a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e161a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e167a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e174a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/H40e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev40/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e008a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e016a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e024a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e032a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e048a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e056a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e064a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e072a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e088a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e096a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e104a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e112a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e128a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e136a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e144a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e152a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e168a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/H50e176a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev50/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e010a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e020a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e040a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e050a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e070a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e080a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e100a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e110a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e130a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e140a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e160a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e170a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/H60e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev60/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e015a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e045a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e075a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e105a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e135a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e165a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/H70e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev70/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e030a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e060a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e090a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e120a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e150a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/H80e180a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev80/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90 /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90/H90e000a.wav /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90/__init__.py /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90/__pycache__ /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/hrtf_compact/elev90/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pyolib/snds/transparent.aif /usr/lib64/python3.6/site-packages/pyolib/tableprocess.py /usr/lib64/python3.6/site-packages/pyolib/tables.py /usr/lib64/python3.6/site-packages/pyolib/triggers.py /usr/lib64/python3.6/site-packages/pyolib/utils.py /usr/lib64/python3.6/site-packages/pyolib/wxgui.py /usr/share/doc/packages/python3-pyo /usr/share/doc/packages/python3-pyo/ChangeLog /usr/share/doc/packages/python3-pyo/README.md /usr/share/licenses/python3-pyo /usr/share/licenses/python3-pyo/COPYING.LESSER.txt /usr/share/licenses/python3-pyo/COPYING.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 11:45:28 2024