Does anybody know of an alternative front-end for wiktionary data. I was thinking of something like dict.cc

Particularly, I'm looking for a an #opensource #bilingual #dictionary where I can contribute word pairs in #AkanTwi and #English or #German

If not, I will need to code it myself ... that would be a good excuse for learning more #PythonFlask and #Docker

#foss #alternatives

Bwahahaha, enterprise-ify ALL THE THINGS! https://codeberg.org/Freedom-to-Write/writing-month/pulls/32

Just trying to make sure #WritingMonth is something everyone can look forward to for years to come. :D

#Python #PythonFlask

WIP: Initial work to break out the pages and service logic from app.py.

Looking to solve #17 with this.

Codeberg.org

πŸš€ Progress Report - September 3, 2024 πŸš€

πŸ”§ #365DaysofCode Day 247
πŸ” #100daysofcode Day 82
πŸ› οΈ #Replit100daysofcode Day 82
πŸ’» Daily Focus:

πŸ“– Read articles on freeCodeCamp & Daily.dev
πŸ”₯ Built a project with Python/Flask GET method
πŸŽ₯ Watched Flask tutorial on HTTP Methods & Form Data
Learning Never Stops! πŸ’ͺ

#OpenToCollaborate #Python #JavaScript #FlaskJourney #HTTPMethods #WebDevelopment #FreeCodeCamp #CodeEveryDay #TechProgress #ReplitDevelopers #PythonFlask #GETMethod

Roll call! Today is live streaming day and we are seeing some #FastAPI and #PythonFlask code!! See you in 30 min on @Twitch.

#python #flask #streaming

https://twitch.tv/jesstemporal

JessTemporal - Twitch

Device Auth Flow with Pimoroni Badger 2040W

Twitch

https://kandi.openweaver.com/collections/python/how-to-use-flash()-function-in-flask

The flash() method of the flask module sends the message to the next request. It is an HTML template. Using the flash() method of the flask module, we can generate the messages in the flask script. The flashing system helps record a message at the end of a request. It will access its next request.

#python #flash #flask #pythonflask #kandi #openweaver

A preview of the new Pallets Projects logos by @georgically in sticker form! Find me at the PyCon open spaces and sprints to get one before they run out. #PyCon #Python #Flask #PythonFlask
Back at inbox zero for Flask πŸŽ‰ version 2.3 coming soon ℒ️
#Python #Flask #PythonFlask
Just finished a massive PR to deprecate bytes and charsets other than UTF-8 in Werkzeug 2.3. (You can still work with raw bytes in requests/responses, so it's still possible to use other charsets.) Surprisingly, very few tests failed due to it, which was a relief. Looking forward to making the PR removing all the deprecations 😈 https://github.com/pallets/werkzeug/pull/2641 #Python #Flask #Werkzeug #PythonFlask #PythonWerkzeug
deprecate bytes and charset by davidism Β· Pull Request #2641 Β· pallets/werkzeug

This deprecates everywhere that accepted bytes when str was the correct type. It also deprecates the charset and errors parameters throughout the code. Closes #2602, which has more of my reasoning ...

GitHub

Last year at PyCon US 2022, @tonybaloney ran a basic benchmark of Flask. I finally got around to it, and achieved a ✨ 35% ✨ speedup to routing and environ processing.

Due to Python 2/3, Werkzeug had its own modified copy of `urlparse`/`urllib.parse`, with a lot of unnecessary encoding/decoding due to str/bytes support. I finally replaced that with the standard library, and got a huge speed boost.

https://github.com/pallets/werkzeug/pull/2608

#Python #Flask #PythonFlask #PythonWerkzeug

replace calls to `werkzeug.urls` with `urllib.parse` by davidism Β· Pull Request #2608 Β· pallets/werkzeug

Use urllib.parse functions instead of our own implementation. Deprecate all of werkzeug.urls except for uri_to_iri and iri_to_uri. My benchmark shows a 35% speedup in routing and responses, 8% from...

GitHub
Just documented the Flask application setup, serving, and request lifecycle. A pretty dense but important topic, one I was surprised wasn't documented already. I gave a talk on this at PyCon Canada 2018 then forgot to write it down πŸ˜… https://flask.palletsprojects.com/en/2.2.x/lifecycle/ #Python #PythonFlask
Application Structure and Lifecycle β€” Flask Documentation (2.2.x)