<div dir="auto">on telegram community, neuerbor is updating bassemu, but i don't know if this counts as "maintained"<div dir="auto"><br></div><div dir="auto">his/her fork <a href="https://github.com/nioelumijkee/bassemu2">https://github.com/nioelumijkee/bassemu2</a></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em Ter, 2 de mar de 2021 10:19, IOhannes m zmoelnig <<a href="mailto:zmoelnig@iem.at">zmoelnig@iem.at</a>> escreveu:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 3/2/21 10:31 AM, Lucas Cordiviola wrote:<br>
> On 3/2/2021 4:26 AM, IOhannes m zmoelnig wrote:<br>
> <br>
>> so I would need a list of libraries to import. <br>
> <br>
> There might be more but these are not maintained AFAIK:<br>
> <br>
> adaptive<br>
> arraysize<br>
> bassemu~<br>
> boids<br>
> chaos<br>
> ekext<br>
> hexloader<br>
> log<br>
> markex<br>
> mediasettings<br>
> motex<br>
> PDContainer<br>
> pddp<br>
> pmpd<br>
> cxc<br>
> ext13<br>
> windowing<br>
> pmpd<br>
> moocow<br>
> <br>
<br>
"hexloader" and "mediasettings" are maintained.<br>
<br>
"arraysize" has been superseded by "array size" (and it was a <br>
test-project in the first place, let's not resurrect it).<br>
<br>
but more interestingly: how did you come up with this list?<br>
<br>
<br>
i tried:<br>
```<br>
import requests<br>
import json<br>
data=json.loads( \<br>
     requests.get("<a href="https://deken.puredata.info/search.json" rel="noreferrer noreferrer" target="_blank">https://deken.puredata.info/search.json</a>").text \<br>
     )["result"]["libraries"]<br>
xlibs=[]<br>
for lib in data:<br>
   if not [_ for _ in data[lib] \<br>
        if _ not in ('0.0.extended', '0-0extended')]:<br>
     xlibs.append(lib)<br>
<br>
# remove libs hosted (and maintained) at the iem:<br>
xlibs = [_ for _ in xlibs if not _.startswith("iem")]<br>
xlibs = [_ for _ in xlibs if not _.startswith("pix_")]<br>
# and some more libs that are known to be maintained<br>
xlibs = [_ for _ in xlibs if _ not in ("hexloader", "pmpd")]<br>
<br>
for lib in sorted(set(xlibs)):<br>
   print(lib)<br>
```<br>
<br>
which gives me:<br>
PDContainer<br>
adaptive<br>
apple<br>
arraysize<br>
bassemu<br>
bassemu~<br>
boids<br>
chaos<br>
earplug<br>
earplug~<br>
extra<br>
flatgui<br>
gem2pdp<br>
hcs<br>
hidin<br>
jasch_lib<br>
la-kitchen<br>
libdir<br>
log<br>
mapping<br>
markex<br>
motex<br>
nsend<br>
oscx<br>
pan<br>
pd-wavelet<br>
pdcontainer<br>
pddp<br>
pdlua<br>
pdogg<br>
pdp<br>
plugin~<br>
purepd<br>
rtc<br>
search-plugin<br>
sfruit<br>
syslog<br>
tclpd<br>
testtools<br>
timestretch<br>
unauthorized<br>
vanilla<br>
vbap<br>
<br>
<br>
there's a few duplicates ("bassemu~" vs "bassemu", "earplug~" vs <br>
"earplug", "PDcontainer" vs "pdcontainer")<br>
and a few libraries that i believe should not be made available at all: <br>
"arraysize", "extra", "vanilla", "oscx"<br>
<br>
gfmadsr<br>
IOhannes<br>
<br>
<br>
_______________________________________________<br>
<a href="mailto:Pd-list@lists.iem.at" target="_blank" rel="noreferrer">Pd-list@lists.iem.at</a> mailing list<br>
UNSUBSCRIBE and account-management -> <a href="https://lists.puredata.info/listinfo/pd-list" rel="noreferrer noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-list</a><br>
</blockquote></div>