this post was submitted on 20 Nov 2024
23 points (96.0% liked)

Python

6393 readers
64 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
 

Welcome to a new era of interconnected content discussion with PieFed – a link aggregator, a forum, a hub of social interaction and information, built for the fediverse. Our focus is on individual control, safety, and decentralised power.


Like other platforms in the fediverse, we are a self-governed space for social link aggregation and conversation. We operate without the influence of corporate entities – ensuring that your experience is free of advertisements, invasive tracking, or secret algorithms. On our platform, content is grouped into communities, allowing you to engage with topics of interest and disregard the irrelevant ones. We utilise a voting system to highlight the best content.


Video introduction the codebase

top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 11 points 17 hours ago

As a user, the lemmy API backend is pretty fuckin fast. The default web frontend however is a slug.

Using lemmy with a third party app like voyager is super snappy.

[–] onlinepersona 9 points 17 hours ago (2 children)

Oh my... I'll eat my words about python maintainability. No unit tests, no emulation tests (with emulated services), no tests with a database, no formatter, no linter, no type hints, simple pip... The result is working, but I'm a little bit concerned about the nigh complete lack of testing and though they use an ORM (SQLAlchemy), I find the raw SQL therein (even if it's simple) concerning.

Besides that, the end result looks quite usable and it's nice to see an alternative to lemmy.

Anti Commercial-AI license

[–] [email protected] 2 points 12 hours ago (1 children)

Yep, this Python-based project has no tests but not because it's written in Python, lol

[–] onlinepersona 1 points 12 hours ago (1 children)

Attempting to get something working first and possibly adding tests later? Or are there other reasons?

Anti Commercial-AI license

[–] [email protected] 3 points 12 hours ago (1 children)

Pretty much.

It's a hobby project so we work on things we find fun or interesting. To me, tests are neither of those.

[–] onlinepersona 1 points 9 hours ago (2 children)

πŸ˜„ understandable. Are you open to one or more of the things I mentioned being added? Strict type checking, tests, formatter, linting?

Anti Commercial-AI license

[–] [email protected] 2 points 8 hours ago* (last edited 8 hours ago)

Yes we could really do with all of those. Patches welcome. Other than a preference for PEP 8 I don't have strong opinions about particular linters or formatters.

I see the benefits of types but am not puritanical about it. I'm ok with the way we're using types at the moment. Most utility functions have types specified, especially those that return database objects so the type information flows up to the routes pretty well. I mostly see it as a way to help my IDE autocomplete work better than as a holy grail. I'm sure there are places where more types could be added but making it a policy that every function must have a type signature seems OTT.

[–] [email protected] 1 points 8 hours ago* (last edited 8 hours ago)

BTW I recently added the database structure for post licenses and have PeerTube video licence information being saved into the DB when they federate to us. However there is no UI that will let people specify a license for their PieFed posts or comments. The UI needs to present a list of licenses to choose from and reading about all the different ones made my eyes glaze over.

You might like to start there as it seems to be an interest of yours!

[–] [email protected] 4 points 15 hours ago

Yeah the lack of test suites really kicks our arse sometimes. I changed it from hard-deleting to soft-deleting stuff recently, and I forgot to check whether a post actually links to an external URL when restoring a post. The first time someone restored a post without one, it decided that it now had 189 cross-posts (i.e. all the other text posts that week). Whoops!