kellnerd: Your thoughts? What would something else be?
Last night and this morning I did some more asking around and research on the python thing.
Jade[m] uploaded an image: (224KiB) < https://matrix.chatbrainz.org/_matrix/media/v3/download/ellis.link/6HpPXpu5EyyXKg7io3f995YE1fmXbNtA/Screenshot%202025-04-06%20at%2013.14.15.png >
Tulir being the author of maubot and all of the mautrix software, and nexy being a former matrix-nio user
ansh[m] has quit
From reading the code, what maubot provides over directly using mautrix-python is handling parsing commands sent into chat, providing the web management interface and easily running many plugins/bots on one Matrix account
And an abstraction over the database that lets you reuse maubot's database, whether that's postgres or sqlite
In terms of data storage, mautrix-python has a pluggable state store that handles storing the state needed to tuse Matrix's sync API, E2EE state and caching things like display names. That can be used with Postgres as the backend
However it doesn't seem to store non-state events, so the actual message timeline, and I'd have to add that functionality re my conversation with lucifer
So we'd end up with all of the Matrix state, the emssage history, and the state for updating the HTML stored in posgres
s/posgres/postgres/
I've not used postges' full text search before, but I have discovered that tantivy offers python bindings, so that part of the plan can stay the same https://github.com/quickwit-oss/tantivy-py
Jade[m]: From what I can see, pg doesn't really provide advanced query syntax, whereas tantivy has that OOTB. Search is secondary though
In terms of tooling, I haven't really done a significant python project before, so I'm not entirely sure what to use for python tooling
vardhan__ joined the channel
Uv and ruff seem popular and easy to use to me. Any opinions on using them?
For handling the JS/CSS, a simple vite config should be good, and the Jinja templates can load the JS entry point
reosarevok[m] has quit
I'm thinking TypeScript, but nothing else fancy, as it's pretty much only the search box that'll need JS
Oh, and ofc sentry and prometheus have official python SDKs, so that should be all good
kellnerd[m] joined the channel
kellnerd[m]
<Jade[m]> "kellnerd: Your thoughts? What..." <- I mainly voted to be able to see the results, before I realized that it is apparently impossible to withdraw your vote 😅
Jade[m]
Ah 😂
kellnerd[m]
As I didn't want to impact the outcome without having read your proposal, I've switched to the most neutral option (for now).
Jade[m]
I wouldn't worry too much, one of the votes is from someone I din't recognise
s/din/don/
kellnerd[m]
Can the author of a poll see who voted for which option or did you derive this from the matrix room events? Asking because I only see the tally 😇
Jade[m]
Yeah, this is looking at hidden events in the timeline
I din't know why element hides who voted and hides the results before you vote tbh
Jade[m] uploaded an image: (99KiB) < https://matrix.chatbrainz.org/_matrix/media/v3/download/ellis.link/shqjEiEUkd7Zd3lfWyvaDpGTkML4G58O/Screenshot%202025-04-06%20at%2013.47.14.png >
(A vote event, WjeClptjtsMP0ISH being the ID for the 'something else' option)
Oh, and seems like you can remove your vote on a protocol level, Element just doesn't implement it xD
vardhan__ has quit
GautamShorewala[ has quit
julian45[m]
<Jade[m]> "Uv and ruff seem popular and..." <- these are both great in my experience
Jade[m]
If it's the way we're going, i'll write up the python edition of the proposal this evening, and do the timeline and PDF submission tomorrow btw
Jade[m] uploaded an image: (loading the top artists in stats is broken, but that isn't new to this release I don't think) (147KiB) < https://matrix.chatbrainz.org/_matrix/media/v3/download/ellis.link/j83V9vjw5z9hMo544GswiXhjI8ejNiwv >
monkey[m] has quit
<Jade[m]> "(loading the top artists in..." <- Ouch, ui bug. Will create a ticket
SothoTalKer__ has quit
SothoTalKer joined the channel
kathryn1024_ joined the channel
rexwilliams1234[ joined the channel
rexwilliams1234[
I recently set up a local, standalone musicbrainz server, installed with mbdump, mbdump-dervied and mbdump-editor. The setup looks successful and I am able to issue simple sql statements to get artists linked to their relationships Example: the Beatles with just their band members with their gender. Now I want to link groups to their main genre and subgenres. I see the genre table and the l_genre_genre table. I see the
artist_tag data but I am at a loss to figure out how to link the Beatles to their genre data. The tag data for the Beatles doesn’t seem to show any meaningful connection to the genre table that I can see. Any help greatly appreciated for a new user in identifying the steps to go from the Beatles to their genre. Do I need more data than the three files I downloaded? Thanks.
have you looked at the schema docs? in theory those three dumps ought to do it you just need to connect all the dots...
celediel has quit
rexwilliams1234[
<mayhem[m]> "rexwilliams1234: https://..." <- Yes I have looked at the schema docs and couldn't piece the connections together. In the example of the beatles. What would the table connections be. I had thought it would be artist_tag linked to l_genre_genre and then to genre to identify the genre names, expecting rock to be the primary genre. But if artist_tag is the starting point I can't see link to l_genre_genre that
makes sense. Using the beatles as an example - how would you trace their primary genre to the artist group? Do I have the wrong starting point? Or am I missing intermediate steps? Thanks.
mayhem[m]
ah. I see the confusion.
genres are a superset of tags.
so, fundamentally you really want to be making a tag query, not a genre query.
Sophist-UK has quit
rexwilliams1234[
Thanks. Could that be illustrated a bit further with identifying the tables involved in linking an artist to their primary genre? That might help me figure out genres as a superset of tags .