You are not logged in.

#1 2026-02-17 00:54:06

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Impossible to use/install correctly python-flask-mail

Hello. I apologize if this is posted in the wrong place, it's really tricky.
I instalkled python-flask-mail [0.10.0-2], but when I import the flask_mail module. it doesn't find it.
The files in the package are REALLY STRANGE

$ pacman -Ql python-flask-mail
python-flask-mail /usr/
python-flask-mail /usr/lib/
python-flask-mail /usr/lib/python3.14/
python-flask-mail /usr/lib/python3.14/site-packages/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/METADATA
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/RECORD
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/WHEEL
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/licenses/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail-0.10.0.dist-info/licenses/LICENSE.txt
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/__init__.cpython-314.opt-1.pyc
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__pycache__/__init__.cpython-314.pyc
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/py.typed
python-flask-mail /usr/share/
python-flask-mail /usr/share/doc/
python-flask-mail /usr/share/doc/python-flask-mail/
python-flask-mail /usr/share/doc/python-flask-mail/CHANGES.md
python-flask-mail /usr/share/doc/python-flask-mail/README.md
python-flask-mail /usr/share/doc/python-flask-mail/api.md
python-flask-mail /usr/share/doc/python-flask-mail/changes.md
python-flask-mail /usr/share/doc/python-flask-mail/conf.py
python-flask-mail /usr/share/doc/python-flask-mail/index.md
python-flask-mail /usr/share/doc/python-flask-mail/license.md
python-flask-mail /usr/share/licenses/
python-flask-mail /usr/share/licenses/python-flask-mail/
python-flask-mail /usr/share/licenses/python-flask-mail/LICENSE.txt

.
In details, there is this
python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py that contains all the methods and routines the module shall have (Message, Mail, etc).
I tried to see if following this manpage something could be done, but it's really difficult. From some point of view an "easy" solution would be to rename the file, move it inside the python path and it will work (and broke the system). What is suggested to do in this case?
Thank you for your time
P.S. the Package is not flagged and the module isn't available with pipx install.

Offline

#2 2026-02-17 08:04:42

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,306

Re: Impossible to use/install correctly python-flask-mail

The files in the package are REALLY STRANGE

What would you say is strange about it (ignoring the usual python/flask things)?

but when I import the flask_mail module. it doesn't find it.

Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
What does you code actually look like and what is  the exact and complete error?

man python-flask-mail wrote:

from flask import Flask
from flask_mail import Mail

doesn't work?

Offline

#3 2026-02-17 10:21:00

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Re: Impossible to use/install correctly python-flask-mail

Sorry about that (and thank you for the fast answer). What I mean is:

seth wrote:

doesn't work?

No, it doesn't.
If I type

#!/usr/bin/env python3
#  

import sys
from flask import Flask
from flask_mail import Mail


def main(args):
	app = Flask(__name__)
	mail = Mail(app)
    return 0


if __name__ == '__main__':
    sys.exit(main(sys.argv[1:]))

it returns

  File "/tmp/prova.py", line 6, in <module>
    from flask_mail import Mail
ModuleNotFoundError: No module named 'flask_mail

but if I rename the python-flask-mail /usr/lib/python3.14/site-packages/flask_mail/__init__.py to flask_mail.py and move it in the same directory, the results executes without problems. This means it works and there is just an installation problem. After that if I change the code to

#!/usr/bin/env python3
#  

import sys
from flask import Flask
from flask_mail import Mail, Message

app = Flask(__name__)
mail = Mail(app)

@app.route("/")
def index():
    msg = Message("Hello",
    sender="from@example.com",
    recipients=["to@example.com"])
    msg.html = "<b>testing</b>"
    mail.send(msg)    
    
def main(args):
	print("Main is running")
	app.run()



if __name__ == '__main__':
    sys.exit(main(sys.argv[1:]))

The server run, but when I open the page on 127.0.0.1:5000 it says

[2026-02-17 11:18:48,085] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
  File "/usr/lib/python3.13/site-packages/flask/app.py", line 1511, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3.13/site-packages/flask/app.py", line 919, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3.13/site-packages/flask/app.py", line 917, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3.13/site-packages/flask/app.py", line 902, in dispatch_request
    return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)  # type: ignore[no-any-return]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "/tmp/prova.py", line 17, in index
    mail.send(msg)
    ~~~~~~~~~^^^^^
  File "/tmp/flask_mail.py", line 539, in send
    with self.connect() as connection:
         ~~~~~~~~~~~~^^
  File "/tmp/flask_mail.py", line 127, in __enter__
    self.host = self.configure_host()
                ~~~~~~~~~~~~~~~~~~~^^
  File "/tmp/flask_mail.py", line 144, in configure_host
    host = smtplib.SMTP(self.mail.server, self.mail.port)
  File "/usr/lib/python3.13/smtplib.py", line 264, in __init__
    (code, msg) = self.connect(host, port)
                  ~~~~~~~~~~~~^^^^^^^^^^^^
  File "/usr/lib/python3.13/smtplib.py", line 350, in connect
    self.sock = self._get_socket(host, port, self.timeout)
                ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.13/smtplib.py", line 321, in _get_socket
    return socket.create_connection((host, port), timeout,
           ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
                                    self.source_address)
                                    ^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.13/socket.py", line 864, in create_connection
    raise exceptions[0]
  File "/usr/lib/python3.13/socket.py", line 849, in create_connection
    sock.connect(sa)
    ~~~~~~~~~~~~^^^^
ConnectionRefusedError: [Errno 111] Connection refused

this must be my fault, because I don't know how to start the smtp server I have on this machine

Offline

#4 2026-02-17 10:47:42

WorMzy
Administrator
From: Scotland
Registered: 2010-06-16
Posts: 13,329
Website

Re: Impossible to use/install correctly python-flask-mail

ElMastro wrote:
/usr/lib/python3.13/site-packages/flask/app.py

Smells like a partial upgrade. Python 3 is at 3.14.

$ type -a python3
$ pacman -Qi python python-flask python-flask-mail

https://wiki.archlinux.org/title/System … nsupported

Or are you still running ArchBang?


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

#5 2026-02-17 14:46:28

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Re: Impossible to use/install correctly python-flask-mail

WorMzy wrote:

Or are you still running ArchBang?

Guilty as charged, Sir (yes).
edit: my bad. THE PREVIOUS LAPTOP had Archbang, I was mistaken. This is pure Arch as I recall

$ type -a python3
python3 è /usr/bin/python3
$ pacman -Qi python python-flask python-flask-mail
Nome                      : python
Versione                  : 3.13.11-1
Descrizione               : The Python programming language
Architettura              : x86_64
URL                       : https://www.python.org/
Licenze                   : PSF-2.0
Gruppi                    : Nessuno
Fornisce                  : python3  python-externally-managed
Dipenda da                : bzip2  expat  gdbm  libffi  libnsl  libxcrypt  openssl  zlib  tzdata
                            mpdecimal
Dipendenze opzionali      : python-setuptools: for building Python packages using tooling that is
                            usually bundled with Python [installato]
                            python-pip: for installing Python packages using tooling that is
                            usually bundled with Python [installato]
                            python-pipx: for installing Python software not packaged on Arch
                            Linux [installato]
                            sqlite: for a default database integration [installato]
                            xz: for lzma [installato]
                            tk: for tkinter [installato]
Richiesto da              : adios2  anari-sdk  apparmor  audacity  autopep8  breezy  cython0
                            eclipse-pydev  eez-studio-appimage  esptool  gdb  gdb-common
                            geany-plugins  glib2-devel  gobject-introspection  gpsd  gtk-doc
                            jupyter-nbclient  jupyter-nbconvert  jupyter-nbformat
                            jupyter-notebook  jupyter-notebook-shim  jupyter-server  jupyterlab
                            jupyterthemes  kicad  kitty  kitty-shell-integration  libixion
                            liborcus  libreoffice-fresh  med  mercurial  meson
                            paraview-catalyst  pyinstaller-hooks-contrib  pyside6
                            python-aiohappyeyeballs  python-aiohttp  python-aiosignal
                            python-annotated-types  python-anyio  python-argcomplete
                            python-argon2-cffi  python-argon2-cffi-bindings  python-arrow
                            python-asgiref  python-astroid  python-asttokens  python-async-lru
                            python-atomicwrites  python-attrs  python-autocommand  python-babel
                            python-bcrypt  python-beautifulsoup4  python-binaryornot
                            python-bitarray  python-bitstring  python-black  python-blinker
                            python-boolean.py  python-branca  python-build  python-cachecontrol
                            python-cachy  python-catalogue  python-certifi  python-chardet
                            python-charset-normalizer  python-click  python-cloudpickle
                            python-colorama  python-comm  python-confection  python-configobj
                            python-contourpy  python-cookiecutter  python-crashtest
                            python-cryptography  python-cycler  python-cymem  python-debian
                            python-debugpy  python-decorator  python-defusedxml
                            python-deprecated  python-diff-match-patch  python-dill
                            python-distlib  python-distro  python-django
                            python-django-crispy-forms  python-docstring-to-markdown
                            python-docutils  python-editables  python-entrypoints
                            python-et-xmlfile  python-executing  python-fastbencode
                            python-fastjsonschema  python-filelock  python-filetype
                            python-findpython  python-flake8  python-flask  python-flask-mail
                            python-flexcache  python-flexparser  python-flit-core
                            python-fluidity  python-folium  python-fonttools  python-fqdn
                            python-frozenlist  python-gobject  python-greenlet  python-h11
                            python-hatchling  python-hpack  python-httpcore  python-httpx
                            python-hyperframe  python-idna  python-imagesize  python-inflect
                            python-inflection  python-iniconfig  python-installer
                            python-intelhex  python-invoke  python-ipykernel  python-isoduration
                            python-isort  python-itsdangerous  python-jaraco.classes
                            python-jaraco.collections  python-jaraco.context
                            python-jaraco.functools  python-jaraco.text  python-jedi
                            python-jeepney  python-jellyfish  python-jinja  python-jiter
                            python-joblib  python-json-logger  python-json5  python-jsonpointer
                            python-jsonschema  python-jsonschema-specifications
                            python-jupyter-client  python-jupyter-core  python-jupyter-events
                            python-jupyterlab-server  python-keyring  python-kivy-garden-mapview
                            python-kiwisolver  python-lark-parser  python-legacy-cgi
                            python-levenshtein  python-lexicon  python-license-expression
                            python-llvmlite  python-lockfile  python-lxml
                            python-lxml-html-clean  python-mako  python-markdown
                            python-markupsafe  python-materialyoucolor-git  python-matplotlib
                            python-mccabe  python-mdurl  python-merge3  python-mistune
                            python-mock  python-more-itertools  python-mpi4py  python-msgpack
                            python-multidict  python-murmurhash  python-mypy_extensions
                            python-nest-asyncio  python-numba  python-numpy  python-openai
                            python-openpyxl  python-outcome  python-packaging
                            python-pandocfilters  python-parso  python-pathspec
                            python-patiencediff  python-pbs-installer  python-pdf2image
                            python-pefile  python-pexpect  python-pickleshare  python-pillow
                            python-pint  python-pip  python-pipx  python-pivy  python-pkginfo
                            python-platformdirs  python-playwright  python-pluggy  python-ply
                            python-plyer  python-poetry  python-poetry-core  python-pooch
                            python-preshed  python-prometheus_client  python-prompt_toolkit
                            python-propcache  python-psutil  python-ptyprocess  python-pure-eval
                            python-pyaudio  python-pycodestyle  python-pycparser
                            python-pydantic  python-pydantic-core  python-pyelftools
                            python-pyflakes  python-pygame  python-pygments  python-pyjwt
                            python-pylint  python-pylint-venv  python-pymsgbox  python-pynacl
                            python-pyopenssl  python-pyparsing  python-pypdf  python-pyperclip
                            python-pyproject-hooks  python-pyqt6-sip  python-pyqt6-webengine
                            python-pyserial  python-pysimplegui  python-pytokens
                            python-pytoolconfig  python-pyttsx3  python-pytweening  python-pytz
                            python-pyuca  python-pyxdameraulevenshtein  python-pyxdg
                            python-pyzmq  python-rapidfuzz  python-reedsolo  python-referencing
                            python-regex  python-rfc3987  python-rich-click
                            python-roman-numerals-py  python-rpds-py  python-rtree
                            python-ruamel.yaml.clib  python-scipy  python-selectolax
                            python-selenium  python-send2trash  python-setuptools
                            python-shellingham  python-shiboken2  python-six  python-sniffio
                            python-snowballstemmer  python-sortedcontainers  python-soupsieve
                            python-spacy-loggers  python-sphinx-alabaster-theme
                            python-sphinxcontrib-applehelp  python-sphinxcontrib-devhelp
                            python-sphinxcontrib-htmlhelp  python-sphinxcontrib-qthelp
                            python-sphinxcontrib-serializinghtml  python-spyder-kernels
                            python-sqlparse  python-stop-words  python-superqt  python-tabulate
                            python-testpath  python-text-unidecode  python-threadpoolctl
                            python-tomli  python-tomlkit  python-tornado  python-tqdm
                            python-traitlets  python-trio  python-trio-websocket
                            python-trove-classifiers  python-types-python-dateutil
                            python-typing-inspection  python-typing_extensions  python-ujson
                            python-uri-template  python-urllib3  python-userpath
                            python-vadersentiment  python-virtualenv  python-wasabi
                            python-watchdog  python-wcwidth  python-webcolors
                            python-webencodings  python-websocket-client  python-websockets
                            python-werkzeug  python-whatthepatch  python-wheel  python-wrapt
                            python-wurlitzer  python-wxpython  python-xyzservices  python-yaml
                            python-yarl  python-zipp  reuse  sdkmanager  shiboken6  smbclient
                            sphinxbase  spyder  vapoursynth  virtualbox  yapf  youtube-dl
                            yt-dlp
Opzionale per             : android-tools  boost  btrfs-progs  cifs-utils  clang  git  graphviz
                            gstreamer  gtest  gtk2  gupnp  imath  iproute2  ldb  lensfun
                            libcaca  libevent  libftdi  libieee1284  libimobiledevice  libnewt
                            libplist  libpwquality  libxml2  libxslt  lirc  net-snmp  onetbb
                            pcsclite  rsync  shiboken6  subversion  talloc  tdb  tevent
                            texlive-binextra  usbutils  util-linux-libs  vtk
Conflitti con             : Nessuno
Sostituisce               : python3  python-externally-managed
Spazio richiesto          : 67,66 MiB
Pacchettizzatore          : Jelle van der Waa <jelle@archlinux.org>
Data di creazione         : dom 7 dic 2025, 14:01:45
Data di installazione     : gio 18 dic 2025, 02:04:24
Motivo dell'installazione : Installato come dipendenza di un altro pacchetto
Script di install         : No
Convalidato da            : Firma

Nome                      : python-flask
Versione                  : 3.1.2-1
Descrizione               : Micro webdevelopment framework for Python
Architettura              : any
URL                       : https://flask.palletsprojects.com/
Licenze                   : BSD-3-Clause
Gruppi                    : Nessuno
Fornisce                  : Nessuno
Dipenda da                : python  python-blinker  python-click  python-itsdangerous
                            python-jinja  python-markupsafe  python-werkzeug
Dipendenze opzionali      : python-asgiref: async functions and views [installato]
                            python-cryptography: using ad-hoc certificates [installato]
                            python-dotenv: loading env vars from files [installato]
Richiesto da              : python-flask-mail
Opzionale per             : Nessuno
Conflitti con             : Nessuno
Sostituisce               : Nessuno
Spazio richiesto          : 1055,43 KiB
Pacchettizzatore          : Carl Smedstad <carsme@archlinux.org>
Data di creazione         : ven 22 ago 2025, 08:34:58
Data di installazione     : mer 22 ott 2025, 01:01:18
Motivo dell'installazione : Installato esplicitamente
Script di install         : No
Convalidato da            : Firma

Nome                      : python-flask-mail
Versione                  : 0.10.0-2
Descrizione               : Flask extension providing simple email sending capabilities
Architettura              : any
URL                       : https://github.com/pallets-eco/flask-mail/
Licenze                   : BSD-3-Clause
Gruppi                    : Nessuno
Fornisce                  : Nessuno
Dipenda da                : python  python-blinker  python-flask
Dipendenze opzionali      : Nessuno
Richiesto da              : Nessuno
Opzionale per             : Nessuno
Conflitti con             : Nessuno
Sostituisce               : Nessuno
Spazio richiesto          : 108,03 KiB
Pacchettizzatore          : Jelle van der Waa <jelle@archlinux.org>
Data di creazione         : lun 15 dic 2025, 18:07:51
Data di installazione     : mar 17 feb 2026, 01:08:43
Motivo dell'installazione : Installato esplicitamente
Script di install         : No
Convalidato da            : Nessuno
WorMzy wrote:

  I am not so sure the system is up to date, but I Never use pacman -Sy

Last edited by ElMastro (2026-02-17 22:32:51)

Offline

#6 2026-02-17 14:48:22

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Re: Impossible to use/install correctly python-flask-mail

@WorMzy, it seems you are right. One problem is:

python-3.14.3-1
                python-aiohappyeyeballs-2.6.1-4  python-aiohttp-3.13.3-1
                python-aiosignal-1.4.0-3  python-annotated-doc-0.0.4-2
                python-annotated-types-0.7.0-3  python-anyio-4.12.1-1
                python-argcomplete-3.6.2-2  python-argon2-cffi-25.1.0-2
                python-argon2-cffi-bindings-25.1.0-2  python-arrow-1.4.0-2
                python-asgiref-3.11.1-1  python-astroid-4.0.3-2  python-asttokens-3.0.1-1
                python-async-lru-2.1.0-1  python-asyncssh-2.21.1-2  python-atomicwrites-1.4.1-6
                python-attrs-25.4.0-3  python-autocommand-2.2.2-9  python-babel-2.17.0-3
                python-bcrypt-5.0.0-2  python-beautifulsoup4-4.14.3-2
                python-binaryornot-0.4.4-12  python-bitarray-3.8.0-2  python-bitstring-4.3.1-2
                python-black-26.1.0-1  python-bleach-6.3.0-2  python-blinker-1.9.0-4
                python-boolean.py-5.0-2  python-build-1.4.0-1  python-cachecontrol-1:0.14.4-3
                python-cachy-0.3.0-12  python-certifi-2026.01.04-1  python-cffi-2.0.0-2
                python-chardet-5.2.0-7  python-charset-normalizer-3.4.4-2  python-cleo-1:2.1.0-2
                python-click-8.3.1-1  python-cloudpickle-3.1.2-2  python-colorama-0.4.6-6
                python-comm-0.2.3-2  python-configobj-5.0.9-6  python-contourpy-1.3.3-3
                python-cookiecutter-2.6.0-4  python-crashtest-0.4.1-5
                python-cryptography-46.0.5-2  python-cycler-0.12.1-4  python-cymem-2.0.10-1
                python-dateutil-2.9.0-8  python-debian-1.0.1-2  python-debugpy-1.8.20-1
                python-decorator-5.2.1-2  python-defusedxml-0.7.1-8  python-deprecated-1.2.18-2
                python-diff-match-patch-20230430-3  python-dill-0.4.1-1  python-distlib-0.4.0-2
                python-distro-1.9.0-4  python-django-5.2.11-1  python-django-crispy-forms-2.5-3
                python-docstring-to-markdown-0.17-2  python-docutils-1:0.22.3-2
                python-dotenv-1.2.1-2  python-dulwich-0.25.2-1  python-ecdsa-0.19.1-2
                python-editables-0.5-7  python-entrypoints-0.4-7  python-et-xmlfile-2.0.0-3
                python-executing-2.2.1-3  python-fastbencode-0.3.9-2
                python-fastjsonschema-2.21.2-2  python-filelock-3.24.0-1
                python-filetype-1.2.0-7  python-findpython-0.7.1-2  python-flake8-1:7.3.0-2
                python-flask-3.1.2-2  python-flexcache-0.3-4  python-flexparser-0.4-2
                python-fluidity-0.2.1-8  python-fonttools-4.61.1-2  python-fqdn-1.5.1-5
                python-frozenlist-1.8.0-2  python-gobject-3.54.5-2  python-greenlet-3.3.1-1
                python-h11-0.16.0-2  python-h2-4.3.0-3  python-hatchling-1.28.0-3
                python-helpdev-0.7.1-10  python-hpack-4.1.0-3  python-html5lib-1.1-17
                python-httpcore-1.0.9-3  python-httpx-0.28.1-7  python-hyperframe-6.1.0-2
                python-idna-3.11-2  python-imagesize-1.4.1-7  python-importlib-metadata-8.7.1-3
                python-inflect-7.5.0-2  python-inflection-0.5.1-10  python-iniconfig-2.1.0-3
                python-installer-0.7.0-14  python-intelhex-2.3.0-9  python-intervaltree-3.2.1-1
                python-invoke-2.2.1-2  python-ipykernel-7.2.0-1
                python-ipython-pygments-lexers-1.1.1-3  python-isoduration-20.11.0-6
                python-isort-7.0.0-3  python-itsdangerous-2.2.0-2  python-jaraco.classes-3.4.0-3
                python-jaraco.collections-5.1.0-3  python-jaraco.context-6.0.1-3
                python-jaraco.functools-4.1.0-3  python-jaraco.text-4.0.0-4
                python-jedi-0.19.2-4  python-jeepney-0.9.0-3  python-jellyfish-1.2.1-2
                python-jinja-1:3.1.6-3  python-jiter-0.13.0-2  python-joblib-1.5.3-1
                python-json-logger-3.3.0-2  python-json5-0.13.0-2  python-jsonpointer-3.0.0-3
                python-jsonschema-4.26.0-1  python-jsonschema-specifications-2025.9.1-2
                python-jupyter-client-8.8.0-2  python-jupyter-core-5.9.1-2
                python-jupyter-events-0.12.0-2  python-jupyterlab-server-2.28.0-2
                python-keyring-25.7.0-3  python-kivy-2.3.1-2  python-kiwisolver-1.4.7-2
                python-lark-parser-1.3.1-2  python-legacy-cgi-2.6.4-2
                python-levenshtein-0.27.3-2  python-lexicon-3.0.0-2
                python-license-expression-30.4.4-2  python-llvmlite-0.46.0-4
                python-lockfile-0.12.2-15  python-lsp-black-2.0.0-5  python-lsp-jsonrpc-1.1.2-6
                python-lsp-server-1.14.0-1  python-lxml-6.0.2-2  python-lxml-html-clean-0.4.3-2
                python-mako-1.3.10-4  python-markdown-3.10.2-1  python-markdown-it-py-4.0.0-2
                python-markupsafe-3.0.2-2  python-matplotlib-3.10.8-4
                python-matplotlib-inline-0.2.1-2  python-mccabe-0.7.0-9  python-mdurl-0.1.2-9
                python-merge3-0.0.16-2  python-mistune-1:3.2.0-1  python-more-itertools-10.8.0-2
                python-mpi4py-4.1.1-2  python-msgpack-1.1.2-2  python-multidict-6.7.1-1
                python-mypy_extensions-1.1.0-2  python-nest-asyncio-1.6.0-5
                python-networkx-3.6.1-1  python-nltk-3.9.1-3  python-numba-0.63.1-5
                python-numpy-2.4.2-1  python-numpydoc-1.9.0-2  python-openai-2.21.0-1
                python-opencv-4.13.0-2  python-openpyxl-3.1.5-3  python-outcome-1.3.0.post0-7
                python-packaging-26.0-1  python-pandas-2.3.3-2  python-pandocfilters-1.5.1-4
                python-paramiko-4.0.0-2  python-parso-1:0.8.5-2  python-pathspec-1.0.4-1
                python-patiencediff-0.2.18-2  python-pbs-installer-2026.01.27-1
                python-pefile-2024.8.26-2  python-pexpect-4.9.0-7  python-pickleshare-0.7.5-12
                python-pillow-12.1.1-1  python-pint-0.25.2-2  python-pip-26.0.1-1
                python-pipx-1.8.0-2  python-pivy-1:0.6.10-4  python-pkg_resources-81.0.0-1
                python-pkginfo-1.12.1.2-2  python-platformdirs-4.9.2-1
                python-playwright-1.58.0-1  python-pluggy-1.6.0-3  python-ply-3.11-16
                python-poetry-2.2.1-4  python-poetry-core-2.2.1-2
                python-poetry-plugin-export-1.9.0-2  python-pooch-1.9.0-1
                python-prometheus_client-0.24.1-1  python-prompt_toolkit-3.0.52-2
                python-propcache-0.4.1-2  python-psutil-7.2.2-1  python-ptyprocess-0.7.0-9
                python-pure-eval-0.2.3-3  python-pyaml-24.12.0-2  python-pyaudio-0.2.14-5
                python-pycodestyle-2.14.0-2  python-pycparser-2.23-2  python-pydantic-2.12.5-4
                python-pydantic-core-3:2.41.5-3  python-pydocstyle-6.3.0-6  python-pydot-3.0.4-2
                python-pyee-13.0.0-3  python-pyelftools-0.32-2  python-pyflakes-3.4.0-2
                python-pygithub-2.8.1-1  python-pygments-2.19.2-3  python-pyjwt-2.11.0-1
                python-pylint-4.0.4-2  python-pylint-venv-3.0.4-3  python-pyls-spyder-0.4.0-8
                python-pynacl-1.6.2-1  python-pyopenssl-25.3.0-2  python-pyparsing-3.3.2-1
                python-pypdf-6.7.0-1  python-pyperclip-1.11.0-2  python-pyproject-hooks-1.2.0-6
                python-pyqt6-6.10.2-3  python-pyqt6-sip-13.11.0-1
                python-pyqt6-webengine-6.10.0-2  python-pyserial-3.5-8
                python-pytesseract-0.3.13-4  python-pytest-1:8.4.2-3
                python-pytest-timeout-2.4.0-2  python-pytokens-0.4.1-1
                python-pytoolconfig-1.3.1-4  python-pytz-2025.2-2  python-pyuca-1.2-5
                python-pyxdameraulevenshtein-1.8.0-3  python-pyxdg-0.28-7  python-pyzmq-27.1.0-2
                python-qdarkstyle-3.2.3-6  python-qstylizer-0.2.4-3  python-qtawesome-1.4.1-2
                python-qtconsole-5.7.1-1  python-qtpy-2.4.3-7  python-rapidfuzz-3.14.3-2
                python-reedsolo-1.7.0-5  python-referencing-0.37.0-3  python-regex-2026.1.15-1
                python-requests-2.32.5-3  python-requests-toolbelt-1.0.0-6
                python-rfc3339-validator-0.1.4-8  python-rfc3987-1.3.8-14  python-rich-14.3.2-2
                python-rich-click-1.9.7-1  python-roman-numerals-py-3.1.0-2
                python-rope-1.14.0-1  python-rpds-py-0.30.0-3  python-rtree-1.4.1-2
                python-ruamel-yaml-0.18.10-2  python-ruamel.yaml.clib-0.2.15-2
                python-scikit-learn-1.8.0-2  python-scipy-1.17.0-1  python-seaborn-0.13.2-3
                python-secretstorage-3.3.3-7  python-send2trash-1.8.3-3
                python-setuptools-1:82.0.0-1  python-shellingham-1.5.4-4  python-six-1.17.0-2
                python-slugify-8.0.4-4  python-sniffio-1.3.1-5  python-snowballstemmer-2.2.0-8
                python-sortedcontainers-2.4.0-8  python-soupsieve-2.8.3-1  python-sphinx-8.2.3-4
                python-sphinx-alabaster-theme-1.0.0-6  python-sphinxcontrib-applehelp-2.0.0-5
                python-sphinxcontrib-devhelp-2.0.0-6  python-sphinxcontrib-htmlhelp-2.1.0-5
                python-sphinxcontrib-jsmath-1.0.1-21  python-sphinxcontrib-qthelp-2.0.0-5
                python-sphinxcontrib-serializinghtml-2.0.0-5  python-spyder-kernels-3.1.3-1
                python-sqlparse-0.5.3-2  python-stack-data-0.6.3-5  python-superqt-0.7.8-1
                python-tabulate-0.9.0-7  python-text-unidecode-1.3-13
                python-textdistance-4.6.3-4  python-threadpoolctl-3.5.0-3
                python-three-merge-0.1.1-7  python-tinycss2-1.5.1-2  python-tomli-2.4.0-1
                python-tomlkit-0.14.0-1  python-tornado-6.5.2-4  python-tqdm-4.67.3-1
                python-traitlets-5.14.3-4  python-trio-0.33.0-1  python-trio-websocket-0.12.2-4
                python-trove-classifiers-2026.1.14.14-1  python-typeguard-4.4.4-2
                python-typer-0.24.0-1  python-types-python-dateutil-2.9.0.20260124-1
                python-typing-inspection-0.4.2-2  python-typing_extensions-4.15.0-3
                python-ujson-5.11.0-2  python-uri-template-1.3.0-5  python-urllib3-2.6.3-1
                python-userpath-1.9.2-4  python-virtualenv-20.36.1-1  python-watchdog-6.0.0-2
                python-wcwidth-0.6.0-1  python-webcolors-25.10.0-2  python-webencodings-0.5.1-13
                python-websocket-client-1.9.0-3  python-websockets-16.0-1
                python-werkzeug-3.1.3-2  python-whatthepatch-1.0.7-2  python-wheel-0.46.3-1
                python-wrapt-1.17.3-2  python-wsproto-1.2.0-7  python-wurlitzer-3.1.1-3
                python-wxpython-1:4.2.4-1  python-xlib-0.33-6  python-yaml-6.0.3-2

are to upgrade. Please give me a couple of hours so I can catch up

Offline

#7 2026-02-27 01:18:59

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Re: Impossible to use/install correctly python-flask-mail

I think there is little to say. Renaming the module would solve the problem. I don't understand if this is a problem only I am experiencing, or, if someone else can confirm it exists, we should email the Mantainer and inform him/her of the solution. I would like to close this because at this point I find it simpler to substitute it with smtplib.

Offline

#8 2026-02-27 08:33:24

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,306

Re: Impossible to use/install correctly python-flask-mail

Do you still have any

File "/usr/lib/python3.13/…

*after the update?

pacman -Qs python

Offline

#9 Yesterday 01:49:27

ElMastro
Member
Registered: 2015-12-02
Posts: 86

Re: Impossible to use/install correctly python-flask-mail

seth wrote:

Do you still have any

File "/usr/lib/python3.13/…

These are; I am very confident those files were installed by pacman at some point;

$ ls /usr/lib/python3.13/site-packages/
    
    PyAutoGUI-0.9.54-py3.13.egg-info  kivy_garden                                pygame-2.6.1.dist-info
PySide2                           kivy_garden.mapview-1.0.5-py3.13.egg-info  pyinstaller_hooks_contrib-2025.10.dist-info
PySide2.egg-info                  kivymd                                     selectolax
_pyinstaller_hooks_contrib        kivymd-2.0.1.dev0-py3.13.egg-info          selectolax-0.4.0.dist-info
adafruit_ampy-1.1.0.dist-info     materialyoucolor                           selenium
ampy                              materialyoucolor-3.0.0.dist-info           selenium-4.35.0.dist-info
branca                            pdf2image                                  xyzservices
branca-0.0.0-py3.13.egg-info      pdf2image-1.17.0-py3.13.egg-info           xyzservices-2025.1.0.dist-info
folium                            pyautogui                                  youtube_dl
folium-0.0.0-py3.13.egg-info      pygame                                     youtube_dl-2021.12.17-py3.13.egg-info
pacman -Qs python
local/adafruit-ampy 1.1.0-2
    Utility to interact with a CircuitPython or MicroPython board over a serial connection
local/autopep8 1:2.3.2-2
    A tool that automatically formats Python code to conform to the PEP 8 style guide
local/boost-libs 1.89.0-4
    Free peer-reviewed portable C++ source libraries (runtime libraries)
local/cython0 0.29.37.1-1
    C-Extensions for Python (legacy version)
local/eclipse-pydev 13.1.0-1
    Python IDE for Eclipse
local/imath 3.2.2-3
    A C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics
local/ipython 9.9.0-1
    Enhanced Interactive Python shell
local/jupyter-nbformat 5.10.4-4
    The base implementation of the Jupyter Notebook format and Python APIs for working with notebooks
local/jupyter-notebook-shim 0.2.4-4
    Provides a way for JupyterLab and other frontends to switch to Jupyter Server for their Python Web application backend
local/micropython 1.26.1-1
    Python3 for microcontrollers, with stdlib. (UNIX version)
local/pyside2 5.15.16+4-1
    Enables the use of Qt5 APIs in Python applications
local/pyside6 6.10.2-1
    Enables the use of Qt6 APIs in Python applications
local/python 3.14.3-1
    The Python programming language
local/python-aiohappyeyeballs 2.6.1-4
    Happy Eyeballs for asyncio
local/python-aiohttp 3.13.3-1
    HTTP client/server for asyncio
local/python-aiosignal 1.4.0-3
    List of registered asynchronous callbacks
local/python-annotated-doc 0.0.4-2
    Document parameters, class attributes, return types, and variables inline, with Annotated
local/python-annotated-types 0.7.0-3
    Reusable constraint types to use with typing.Annotated
local/python-anyio 4.12.1-1
    High level compatibility layer for multiple asynchronous event loop implementations
local/python-argcomplete 3.6.2-2
    Easy, extensible command line tab completion of arguments for your Python script
local/python-argon2-cffi 25.1.0-2
    Secure password hashing algorithm for Python
local/python-argon2-cffi-bindings 25.1.0-2
    Low-level CFFI bindings for Argon2
local/python-arrow 1.4.0-2
    Better dates and times for Python
local/python-asgiref 3.11.1-1
    Reference ASGI adapters and channel layers
local/python-astroid 4.1.1-1
    A common base representation of python source code
local/python-asttokens 3.0.1-1
    Get the currently executing AST node of a frame, and other information
local/python-async-lru 2.2.0-1
    Simple LRU cache for asyncio
local/python-asyncssh 2.21.1-2
    Asynchronous SSHv2 client and server library
local/python-atomicwrites 1.4.1-6
    Atomic file writes on POSIX
local/python-attrs 25.4.0-3
    Attributes without boilerplate.
local/python-autocommand 2.2.2-9
    A library to create a command-line program from a function
local/python-babel 2.17.0-3
    A collection of tools for internationalizing Python applications
local/python-bcrypt 5.0.0-2
    Modern password hashing for your software and your servers
local/python-beautifulsoup4 4.14.3-2
    A Python HTML/XML parser designed for quick turnaround projects like screen-scraping
local/python-binaryornot 0.4.4-12
    Ultra-lightweight pure Python package to check if a file is binary or text
local/python-bitarray 3.8.0-2
    Efficient arrays of booleans for Python
local/python-bitstring 4.3.1-2
    A Python module to help you manage your bits
local/python-black 26.1.0-1
    Uncompromising Python code formatter
local/python-bleach 6.3.0-2
    An easy whitelist-based HTML-sanitizing tool
local/python-blinker 1.9.0-4
    Fast, simple object-to-object and broadcast signaling
local/python-blis 1.0.1-1
    Fast matrix-multiplication as a self-contained Python library
local/python-boolean.py 5.0-2
    Implements boolean algebra in one module
local/python-branca 0.8.1-1
    Generate html+js with Python.
local/python-build 1.4.0-1
    A simple, correct Python build frontend
local/python-cachecontrol 1:0.14.4-3
    Port of the caching algorithms in httplib2 for use with requests session object
local/python-cachy 0.3.0-12
    simple yet effective caching library
local/python-catalogue 2.0.10-1
    Super lightweight function registries for your library
local/python-certifi 2026.01.04-1
    Python package for providing Mozilla's CA Bundle (using system CA store)
local/python-cffi 2.0.0-2
    Foreign Function Interface for Python calling C code
local/python-chardet 6.0.0.post1-1
    Universal encoding detector for Python
local/python-charset-normalizer 3.4.4-2
    Encoding and language detection alternative to chardet
local/python-cleo 1:2.1.0-2
    create beautiful and testable command-line interfaces
local/python-click 8.3.1-1
    Simple wrapper around optparse for powerful command line utilities
local/python-cloudpathlib 0.20.0-1
    Python pathlib-style classes for cloud storage services such as Amazon S3, Azure Blob Storage, and Google Cloud Storage.
local/python-cloudpickle 3.1.2-2
    Extended pickling support for Python objects
local/python-colorama 0.4.6-6
    Python API for cross-platform colored terminal text.
local/python-comm 0.2.3-2
    Python Comm implementation for the Jupyter kernel protocol
local/python-confection 0.1.5-1
    The sweetest config system for Python
local/python-configobj 5.0.9-6
    Simple config file reader and writer
local/python-contourpy 1.3.3-3
    Python library for calculating contours in 2D quadrilateral grids
local/python-cookiecutter 2.6.0-4
    A command-line utility that creates projects from project templates
local/python-crashtest 0.4.1-5
    supposedly makes exceptions handling and inspection easier
local/python-cryptography 46.0.5-2
    A package designed to expose cryptographic recipes and primitives to Python developers
local/python-cycler 0.12.1-4
    Composable style cycles
local/python-cymem 2.0.10-1
    Cython memory pool for RAII-style memory management
local/python-dateutil 2.9.0-8
    Provides powerful extensions to the standard datetime module
local/python-debian 1.0.1-2
    Python module to work with Debian-related data formats
local/python-debugpy 1.8.20-1
    An implementation of the Debug Adapter Protocol for Python
local/python-decorator 5.2.1-2
    Python Decorator module
local/python-defusedxml 0.7.1-8
    XML bomb protection for Python stdlib modules
local/python-deprecated 1.2.18-2
    Python @deprecated decorator to deprecate old python classes, functions or methods
local/python-diff-match-patch 20230430-3
    Robust algorithms to perform the operations required for synchronizing plain text
local/python-dill 0.4.1-1
    serialize all of Python
local/python-distlib 0.4.0-2
    Low-level functions that relate to packaging and distribution of Python software
local/python-distro 1.9.0-4
    Linux OS platform information API
local/python-django 5.2.11-1
    A high-level Python Web framework that encourages rapid development and clean design
local/python-django-crispy-forms 2.5-3
    The best way to have DRY Django forms
local/python-docstring-to-markdown 0.17-2
    On the fly conversion of Python docstrings to markdown
local/python-docutils 1:0.22.3-2
    Set of tools for processing plaintext docs into formats such as HTML, XML, or LaTeX
local/python-dotenv 1.2.1-2
    Get and set values in your .env file in local and production servers
local/python-dulwich 0.25.2-1
    Pure-Python implementation of the Git file formats and protocols
local/python-ecdsa 0.19.1-2
    Implementation of ECDSA in Python
local/python-editables 0.5-7
    Python library for creating editable wheels
local/python-entrypoints 0.4-7
    Discover and load entry points from installed packages.
local/python-et-xmlfile 2.0.0-3
    A low memory library for creating large XML files
local/python-executing 2.2.1-3
    Get the currently executing AST node of a frame, and other information
local/python-fastbencode 0.3.9-2
    Implementation of bencode with optional fast C extensions
local/python-fastjsonschema 2.21.2-2
    Fast JSON schema validator for Python
local/python-filelock 3.24.0-1
    A platform-independent file lock
local/python-filetype 1.2.0-7
    Infer file type and MIME type of any file/buffer
local/python-findpython 0.7.1-2
    A utility to find python versions on your system
local/python-flake8 1:7.3.0-2
    The modular source code checker: pep8, pyflakes and co
local/python-flask 3.1.2-2
    Micro webdevelopment framework for Python
local/python-flask-mail 0.10.0-2
    Flask extension providing simple email sending capabilities
local/python-flexcache 0.3-4
    A robust and extensible package to cache on disk the result of expensive calculations.
local/python-flexparser 0.4-2
    A parser by hgrecco
local/python-flit-core 3.12.0-4 (python-build-backend)
    A PEP 517 build backend for packages using Flit
local/python-fluidity 0.2.1-8
    Fluidity: state machine implementation for Python objects
local/python-folium 0.19.5-1
    Python Data. Leaflet.js maps
local/python-fonttools 4.61.1-2
    A library to manipulate font files from Python
local/python-fqdn 1.5.1-5
    RFC-compliant FQDN validation and manipulation for Python
local/python-frozenlist 1.8.0-2
    FrozenList is a list-like structure which can be made immutable
local/python-gobject 3.54.5-2
    Python bindings for GLib/GObject/GIO/GTK
local/python-greenlet 3.3.2-1
    Lightweight in-process concurrent programming
local/python-h11 0.16.0-2
    A pure-Python, bring-your-own-I/O implementation of HTTP/1.1
local/python-h2 4.3.0-3
    HTTP/2 State-Machine based protocol implementation
local/python-hatchling 1.28.0-3 (python-build-backend)
    Extensible, standards compliant build backend used by Hatch
local/python-helpdev 0.7.1-10
    Helping users and developers to get information about the environment to report bugs
local/python-hpack 4.1.0-3
    Pure-Python HPACK header compression
local/python-html5lib 1.1-17
    A Python HTML parser/tokenizer based on the WHATWG HTML5 spec
local/python-httpcore 1.0.9-3
    A minimal HTTP client
local/python-httpx 0.28.1-7
    A next generation HTTP client for Python
local/python-hyperframe 6.1.0-2
    HTTP/2 framing layer for Python
local/python-idna 3.11-2
    Internationalized Domain Names in Applications (IDNA)
local/python-imagesize 1.4.1-7
    Analyzes JPEG/JPEG 2000/PNG/GIF/TIFF/SVG/Netpbm/WebP image headers and returns image size or DPI
local/python-importlib-metadata 8.7.1-3
    Read metadata from Python packages
local/python-inflect 7.5.0-2
    Correctly generate plurals, singular nouns, ordinals, indefinite articles
local/python-inflection 0.5.1-10
    A port of Ruby on Rails inflector to Python
local/python-iniconfig 2.1.0-3
    brain-dead simple config-ini parsing
local/python-installer 0.7.0-14
    Low-level library for installing a Python package from a wheel distribution
local/python-intelhex 2.3.0-9
    Python library for Intel HEX files manipulations
local/python-intervaltree 3.2.1-1
    Library providing a mutable, self-balancing interval tree for Python
local/python-invoke 2.2.1-2
    Pythonic task execution
local/python-ipykernel 7.2.0-1
    The ipython kernel for Jupyter
local/python-ipython-pygments-lexers 1.1.1-3
    Defines a variety of Pygments lexers for highlighting IPython code
local/python-isoduration 20.11.0-6
    Operations with ISO 8601 durations
local/python-isort 7.0.0-3
    A Python utility / library to sort Python imports
local/python-itsdangerous 2.2.0-2
    Various helpers to pass trusted data to untrusted environments
local/python-jaraco.classes 3.4.0-3
    Module for classes manipulation
local/python-jaraco.collections 5.1.0-3
    Models and classes to supplement the stdlib 'collections' module.
local/python-jaraco.context 6.0.1-3
    Context managers by jaraco
local/python-jaraco.functools 4.1.0-3
    Functools like those found in stdlib
local/python-jaraco.text 4.0.0-4
    Module for text manipulation
local/python-jedi 0.19.2-4
    Awesome autocompletion for python
local/python-jeepney 0.9.0-3
    Low-level, pure Python DBus protocol wrapper
local/python-jellyfish 1.2.1-2
    A python library for doing approximate and phonetic matching of strings
local/python-jenkspy 0.3.3-1
    Compute Natural Breaks in Python (Fisher-Jenks algorithm)
local/python-jinja 1:3.1.6-3
    A simple pythonic template language written in Python
local/python-jiter 0.13.0-2
    Fast iterable JSON parser
local/python-joblib 1.5.3-1
    Set of tools to provide lightweight pipelining in Python
local/python-json-logger 3.3.0-2
    A python library adding a json log formatter
local/python-json5 0.13.0-2
    A Python implementation of the JSON5 data format
local/python-jsonpointer 3.0.0-3
    Identify specific nodes in a JSON document (RFC 6901)
local/python-jsonschema 4.26.0-1
    An implementation of JSON Schema validation for Python
local/python-jsonschema-specifications 2025.9.1-2
    The JSON Schema meta-schemas and vocabularies, exposed as a Registry
local/python-jupyter-client 8.8.0-2
    Jupyter protocol implementation and client libraries
local/python-jupyter-core 5.9.1-2
    Jupyter core package. A base package on which Jupyter projects rely
local/python-jupyter-events 0.12.0-2
    Configurable event system for Jupyter applications and extensions
local/python-jupyterlab-server 2.28.0-2
    Launch an application built using JupyterLab
local/python-keyring 25.7.0-3
    Store and access your passwords safely
local/python-kivy 2.3.1-2
    A software library for rapid development of hardware-accelerated multitouch applications.
local/python-kivy-garden-mapview 1.0.5-2
    A kivy garden mapview demo.
local/python-kivymd-git 1.1.1.r631.gd668d8b2-1
    KivyMD is a collection of Material Design compliant widgets for use with Kivy, a framework for cross-platform, touch-enabled graphical
    applications.
local/python-kiwisolver 1.4.7-2
    A fast implementation of the Cassowary constraint solver
local/python-langcodes 3.3.0-1
    A toolkit for working with and comparing the standardized codes for languages
local/python-lark-parser 1.3.1-2
    A modern parsing library
local/python-legacy-cgi 2.6.4-2
    Fork of the standard library cgi and cgitb modules, being deprecated in PEP-594
local/python-lesscpy 0.15.1-1
    Python LESS compiler
local/python-levenshtein 0.27.3-2
    Python extension for computing string edit distances and similarities
local/python-lexicon 3.0.0-2
    Powerful dict subclass(es) with aliasing & attribute access
local/python-license-expression 30.4.4-2
    Utility to parse, normalize and compare license expressions
local/python-llvmlite 0.46.0-4
    A lightweight LLVM Python binding for writing JIT compilers
local/python-lockfile 0.12.2-15
    Platform-independent file locking module
local/python-lsp-black 2.0.0-5
    python-lsp-server plugin that adds support to black autoformatter, forked from pyls-black
local/python-lsp-jsonrpc 1.1.2-6
    Fork of the python-jsonrpc-server project, maintained by the Spyder IDE team and the community
local/python-lsp-server 1.14.0-1
    Fork of the python-language-server project, maintained by the Spyder IDE team and the community
local/python-lxml 6.0.2-2
    Python binding for the libxml2 and libxslt libraries
local/python-lxml-html-clean 0.4.4-1
    HTML cleaner from lxml project
local/python-mako 1.3.10-4
    A template library written in Python
local/python-markdown 3.10.2-1
    Python implementation of John Gruber's Markdown
local/python-markdown-it-py 4.0.0-2
    Python port of markdown-it. Markdown parsing, done right!
local/python-markupsafe 3.0.2-2
    Implements a XML/HTML/XHTML Markup safe string for Python
local/python-materialyoucolor-git 2.0.10.r13.g8ed1f82-1
    Material You color algorithms for Python!
local/python-matplotlib 3.10.8-5
    A python plotting library, making publication quality plots
local/python-matplotlib-inline 0.2.1-2
    Inline Matplotlib backend for Jupyter
local/python-mccabe 0.7.0-9
    McCabe complexity checker for Python
local/python-mdurl 0.1.2-9
    URL utilities for markdown-it
local/python-merge3 0.0.16-2
    Python implementation of 3-way merge
local/python-mistune 1:3.2.0-1
    A fast yet powerful Python Markdown parser with renderers and plugins
local/python-mock 5.1.0-1
    Mocking and Patching Library for Testing
local/python-more-itertools 10.8.0-2
    More routines for operating on iterables, beyond itertools
local/python-mouseinfo 0.1.3-1
    Display XY position and RGB color information for the pixel currently under the mouse.
local/python-mpi4py 4.1.1-2
    Python bindings for the Message Passing Interface (MPI) standard
local/python-msgpack 1.1.2-2
    MessagePack serializer implementation for Python
local/python-multidict 6.7.1-1
    Asyncio-based multidict implementation for Python
local/python-murmurhash 1.0.10-1
    Cython bindings for MurmurHash2
local/python-mypy_extensions 1.1.0-2
    Experimental type system extensions for programs checked with the mypy typechecker
local/python-nest-asyncio 1.6.0-5
    Patch asyncio to allow nested event loops
local/python-networkx 3.6.1-1
    Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.
local/python-nltk 3.9.1-3
    Natural language processing in Python
local/python-numba 0.64.0-1
    JIT compiler that translates a subset of Python and NumPy code into fast machine code
local/python-numpy 2.4.2-1
    Scientific tools for Python
local/python-numpydoc 1.9.0-2
    Numpy's Sphinx extensions
local/python-openai 2.21.0-1
    Python client library for the OpenAI API
local/python-opencv 4.13.0-2
    Python bindings for OpenCV
local/python-openpyxl 3.1.5-3
    A Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files
local/python-outcome 1.3.0.post0-7
    Capture the outcome of Python function calls
local/python-packaging 26.0-1
    Core utilities for Python packages
local/python-pandas 2.3.3-2
    High-performance, easy-to-use data structures and data analysis tools for Python
local/python-pandocfilters 1.5.1-4
    A python module for writing pandoc filters
local/python-paramiko 4.0.0-2
    Python module that implements the SSH2 protocol
local/python-parso 1:0.8.5-2
    Python parser that supports error recovery and round-trip parsing for different Python versions
local/python-pathspec 1.0.4-1
    Utility library for gitignore style pattern matching of file paths
local/python-patiencediff 0.2.18-2
    Patiencediff Python and C implementations
local/python-pbs-installer 2026.01.27-1
    Installer for Python Build Standalone
local/python-pdf2image 1.17.0-1
    Python wrapper around the pdftoppm and pdftocairo command line tools to convert PDF to a PIL Image list
local/python-pefile 2024.8.26-2
    Python PE parsing module
local/python-pexpect 4.9.0-7
    For controlling and automating applications
local/python-pickleshare 0.7.5-12
    File system based database that uses python pickles
local/python-pillow 12.1.1-1
    Python Imaging Library (PIL) fork
local/python-pint 0.25.2-2
    A unit library for Python
local/python-pip 26.0.1-1
    The PyPA recommended tool for installing Python packages
local/python-pipx 1.8.0-2
    Install and Run Python Applications in Isolated Environments
local/python-pivy 1:0.6.10-4
    Python bindings to Coin3D
local/python-pkg_resources 81.0.0-1
    Temporary stub of pkg_resources for Arch Linux
local/python-pkginfo 1.12.1.2-2
    Query metadata from sdists / bdists / installed packages
local/python-plaidml 0.7.0-1
    PlaidML machine learning accelerator
local/python-platformdirs 4.9.3-1
    A library to determine platform-specific system directories
local/python-playwright 1.58.0-2
    A Python library to automate Chromium, Firefox and WebKit browsers with a single API
local/python-pluggy 1.6.0-3
    Plugin and hook calling mechanisms for python
local/python-ply 3.11-16
    Implementation of lex and yacc parsing tools
local/python-plyer 2.1.0-1
    Platform-independent wrapper for platform-dependent APIs
local/python-poetry 2.3.2-1
    Python dependency management and packaging made easy
local/python-poetry-core 2.3.1-1 (python-build-backend)
    Poetry PEP 517 Build Backend & Core Utilities
local/python-poetry-plugin-export 1.9.0-2
    Poetry plugin to export the dependencies to various formats
local/python-pooch 1.9.0-1
    Python library for fetching and caching data files
local/python-preshed 3.0.8-1
    Cython hash table that trusts the keys are pre-hashed
local/python-prometheus_client 0.24.1-1
    Prometheus instrumentation library for Python applications
local/python-prompt_toolkit 3.0.52-2
    Library for building powerful interactive command lines in Python
local/python-propcache 0.4.1-2
    Fast property caching
local/python-psutil 7.2.2-1
    A cross-platform process and system utilities module for Python
local/python-ptyprocess 0.7.0-9
    Run a subprocess in a pseudo terminal
local/python-pure-eval 0.2.3-3
    Safely evaluate AST nodes without side effects
local/python-pyaml 24.12.0-2
    PyYAML-based module to produce pretty and readable YAML-serialized data
local/python-pyaudio 0.2.14-5
    Python bindings for PortAudio
local/python-pyautogui 0.9.54-2
    A cross-platform GUI automation Python module for human beings
local/python-pycodestyle 2.14.0-2
    Python style guide checker
local/python-pycparser 2.23-2
    C parser and AST generator written in Python
local/python-pydantic 2.12.5-4
    Data parsing and validation using Python type hints
local/python-pydantic-core 3:2.41.5-3
    Core validation logic for pydantic written in rust
local/python-pydocstyle 6.3.0-6
    Docstring style checker
local/python-pydot 3.0.4-2
    Python interface to Graphviz's Dot
local/python-pyee 13.0.0-3
    Port of node.js's EventEmitter to python
local/python-pyelftools 0.32-2
    Python library for analyzing ELF files and DWARF debugging information
local/python-pyflakes 3.4.0-2
    A lint-like tool for Python to identify common errors quickly without executing code
local/python-pygame 2.6.1-3
    Python game library
local/python-pygithub 2.8.1-1
    Use the full Github API v3
local/python-pygments 2.19.2-3
    Python syntax highlighter
local/python-pyjwt 2.11.0-1
    JSON Web Token implementation in Python
local/python-pylint 4.0.5-1
    Analyzes Python code looking for bugs and signs of poor quality
local/python-pylint-venv 3.0.4-3
    Make pylint respect virtualenvs
local/python-pyls-spyder 0.4.0-8
    Spyder extensions for the Python Language Server
local/python-pymsgbox 1.0.9-2
    Simple, cross-platform, pure Python module to display message boxes, and just message boxes
local/python-pynacl 1.6.2-1
    Python binding to the Networking and Cryptography (NaCl) library
local/python-pyopenssl 25.3.0-2
    Python wrapper around the OpenSSL library
local/python-pyparsing 3.3.2-1
    General parsing module for Python
local/python-pypdf 6.7.4-1
    Python library for manipulating pages of PDF files
local/python-pyperclip 1.11.0-2
    A cross-platform clipboard module for Python
local/python-pyproject-hooks 1.2.0-6
    A low-level library for calling build-backends in pyproject.toml-based project
local/python-pyqt6 6.10.2-3 (pyqt6)
    A set of Python bindings for the Qt6 toolkit
local/python-pyqt6-sip 13.11.0-1
    The sip module support for PyQt6
local/python-pyqt6-webengine 6.10.0-2 (pyqt6)
    Python bindings for QtWebEngine
local/python-pyscreeze 0.1.30-1
    A simple, cross-platform screenshot module for Python 2 and 3.
local/python-pyserial 3.5-8
    Multiplatform Serial Port Module for Python
local/python-pysimplegui 4.70.1-1
    Super-simple to create custom GUI
local/python-pytesseract 0.3.13-4
    Python wrapper for Google Tesseract
local/python-pytest 1:8.4.2-3
    Simple powerful testing with Python
local/python-pytest-timeout 2.4.0-2
    py.test plugin to abort hanging tests
local/python-python-discovery 1.1.0-1
    Python interpreter discovery
local/python-pytokens 0.4.1-1
    A fast, spec compliant Python 3.12+ tokenizer
local/python-pytoolconfig 1.3.1-4
    Manage configuration for python tools, such as black and rope.
local/python-pyttsx3 2.90-1
    Offline text-to-speech synthesis
local/python-pytweening 1.2.0-1
    A set of tweening / easing functions implemented in Python.
local/python-pytz 2025.2-2
    Cross platform time zone library for Python
local/python-pyuca 1.2-5
    Python implementation of the Unicode Collation Algorithm (UCA)
local/python-pyxdameraulevenshtein 1.8.0-3
    Implements the Damerau-Levenshtein (DL) edit distance algorithm
local/python-pyxdg 0.28-7
    Python library to access freedesktop.org standards
local/python-pyzmq 27.1.0-2
    Python bindings for ZeroMQ
local/python-qdarkstyle 3.2.3-6
    Dark style sheet for QtWidgets application
local/python-qstylizer 0.2.4-3
    Qt stylesheet generation utility for PyQt/PySide
local/python-qtawesome 1.4.1-2
    Iconic fonts in PyQt and PySide applications
local/python-qtconsole 5.7.1-1
    Qt-based console for Jupyter with support for rich media output
local/python-qtpy 2.4.3-7
    Provides an uniform layer to support PyQt and PySide with a single codebase
local/python-rapidfuzz 3.14.3-2
    Rapid fuzzy string matching in Python using various string metrics
local/python-reedsolo 1.7.0-5
    A pure-python universal errors-and-erasures Reed-Solomon Codec
local/python-referencing 0.37.0-3
    An implementation-agnostic implementation of JSON reference resolution
local/python-regex 2026.2.28-1
    Alternative python regular expression module.
local/python-requests 2.32.5-4
    Python HTTP for Humans
local/python-requests-toolbelt 1.0.0-6
    A toolbelt of useful classes and functions to be used with python-requests
local/python-rfc3339-validator 0.1.4-8
    A pure python RFC3339 validator
local/python-rfc3987 1.3.8-14
    Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)
local/python-rich 14.3.3-1
    Python library for rich text and beautiful formatting in the terminal
local/python-rich-click 1.9.7-1
    Format click help output nicely with rich.
local/python-roman-numerals-py 3.1.0-2
    Manipulate well-formed Roman numerals
local/python-rope 1.14.0-1
    Refactoring library
local/python-rpds-py 0.30.0-3
    Python bindings to the Rust rpds crate for persistent data structures
local/python-rtree 1.4.1-2
    Rtree: spatial index for Python GIS
local/python-ruamel-yaml 0.18.10-2
    YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order
local/python-ruamel.yaml.clib 0.2.15-2
    C version of reader, parser and emitter for ruamel.yaml derived from libyaml
local/python-scikit-learn 1.8.0-2
    A set of python modules for machine learning and data mining
local/python-scipy 1.17.1-1
    Open-source software for mathematics, science, and engineering
local/python-seaborn 0.13.2-3
    Statistical data visualization
local/python-secretstorage 3.3.3-7
    Securely store passwords and other private data using the SecretService DBus API
local/python-selectolax 0.4.0-1
    Fast HTML5 parser with CSS selectors
local/python-selenium 4.35.0-1
    Python language bindings for Selenium WebDriver
local/python-send2trash 1.8.3-3
    Send file to trash natively
local/python-setuptools 1:82.0.0-1 (python-build-backend)
    Easily download, build, install, upgrade, and uninstall Python packages
local/python-shellingham 1.5.4-4
    Detect what shell the current Python executable is running in
local/python-shiboken2 5.15.13-1
    Python bindings for shiboken2
local/python-six 1.17.0-2
    Python 2 and 3 compatibility utilities
local/python-slugify 8.0.4-4
    A Python slugify application that handles unicode
local/python-smart_open 7.0.5-1
    Library for efficient streaming of very large files from/to S3, HDFS, WebHDFS, HTTP, or local (compressed) files
local/python-sniffio 1.3.1-5
    Sniff out which async library your code is running under
local/python-snowballstemmer 2.2.0-8
    Snowball stemming library collection for Python
local/python-sortedcontainers 2.4.0-8
    Python Sorted Container Types: SortedList, SortedDict, and SortedSet
local/python-soupsieve 2.8.3-1
    A CSS4 selector implementation for Beautiful Soup
local/python-spacy 3.8.2-1
    Free open-source library for Natural Language Processing in Python
local/python-spacy-loggers 1.0.5-1
    Logging utilities for spaCy
local/python-speechrecognition 3.9.0-1
    Google-powered speech recognition for Python
local/python-sphinx 8.2.3-4
    Python documentation generator
local/python-sphinx-alabaster-theme 1.0.0-6
    Light, configurable Sphinx theme
local/python-sphinxcontrib-applehelp 2.0.0-5
    Sphinx extension which outputs Apple help books
local/python-sphinxcontrib-devhelp 2.0.0-6
    Sphinx extension which outputs Devhelp document
local/python-sphinxcontrib-htmlhelp 2.1.0-5
    Sphinx extension which renders HTML help files
local/python-sphinxcontrib-jsmath 1.0.1-21
    Sphinx extension which renders display math in HTML via JavaScript
local/python-sphinxcontrib-qthelp 2.0.0-5
    Sphinx extension which outputs QtHelp document
local/python-sphinxcontrib-serializinghtml 2.0.0-5
    Sphinx extension which outputs "serialized" HTML files (json and pickle)
local/python-spyder-kernels 3.1.3-1
    Jupyter Kernels for the Spyder console
local/python-sqlparse 0.5.3-2
    Non-validating SQL parser for Python
local/python-srsly 2.4.8-4
    Modern high-performance serialization utilities for Python
local/python-stack-data 0.6.3-5
    Extract data from python stack frames and tracebacks for informative displays
local/python-stop-words 2018.7.23-1
    Get list of common stop words in various languages in Python
local/python-superqt 0.7.8-1
    Missing widgets and components for Qt-python
local/python-tabulate 0.9.0-7
    Pretty-print tabular data in Python, a library and a command-line utility.
local/python-testpath 0.6.0-5
    Test utilities for code working with files and commands
local/python-text-unidecode 1.3-13
    The most basic Text::Unidecode port
local/python-textdistance 4.6.3-4
    Compute distance between sequences
local/python-theano 1.0.5-1
    Definition and optimized evaluation of mathematical expressions on Numpy arrays.
local/python-thinc-bin-8.3.2 8.3.2-1
    Industrial-strength Natural Language Processing (NLP) in Python
local/python-threadpoolctl 3.5.0-3
    Python helpers to limit the number of threads used in native libraries that handle their own internal threadpool
local/python-three-merge 0.1.1-7
    Simple Python library to perform a 3-way merge between strings
local/python-tinycss2 1.5.1-2
    Low-level CSS parser for Python
local/python-tomli 2.4.0-1
    A lil' TOML parser
local/python-tomlkit 0.14.0-1
    Style-preserving TOML library for Python
local/python-tornado 6.5.2-4
    open source version of the scalable, non-blocking web server and tools
local/python-tqdm 4.67.3-1
    Fast, Extensible Progress Meter
local/python-traitlets 5.14.3-4
    A configuration system for Python applications
local/python-trio 0.33.0-1
    A friendly Python library for async concurrency and I/O
local/python-trio-websocket 0.12.2-4
    WebSocket library for Trio
local/python-trove-classifiers 2026.1.14.14-1
    Canonical source for classifiers on PyPI (pypi.org)
local/python-typeguard 4.4.4-2
    Run-time type checker for Python
local/python-typer 0.24.1-1
    Build great CLIs. Easy to code. Based on Python type hints
local/python-types-python-dateutil 2.9.0.20260124-1
    Typing stubs for python-dateutil
local/python-typing-inspection 0.4.2-2
    Runtime typing introspection tools
local/python-typing_extensions 4.15.0-3
    Backported and Experimental Type Hints for Python 3.8+
local/python-ujson 5.11.0-2
    Ultra fast JSON encoder and decoder for Python
local/python-uri-template 1.3.0-5
    An implementation of RFC 6570 URI Templates
local/python-urllib3 2.6.3-1
    HTTP library with thread-safe connection pooling and file post support
local/python-userpath 1.9.2-4
    Cross-platform tool for adding locations to the user PATH, no elevated privileges required!
local/python-vadersentiment 3.3.2-5
    VADER (Valence Aware Dictionary and sEntiment Reasoner)
local/python-virtualenv 21.1.0-1
    Virtual Python Environment builder
local/python-wasabi 1.1.2-3
    Lightweight console printing and formatting toolkit
local/python-watchdog 6.0.0-2
    Python API and shell utilities to monitor file system events
local/python-wcwidth 0.6.0-1
    Python library that measures the width of unicode strings rendered to a terminal
local/python-weasel 0.4.1-1
    A small and easy workflow system
local/python-webcolors 25.10.0-2
    A library for working with the color formats defined by HTML and CSS
local/python-webencodings 0.5.1-13
    A Python implementation of the WHATWG Encoding standard.
local/python-websocket-client 1.9.0-3
    WebSocket client library for Python
local/python-websockets 16.0-1
    Python implementation of the WebSocket Protocol (RFC 6455)
local/python-werkzeug 3.1.3-2
    Swiss Army knife of Python web development
local/python-whatthepatch 1.0.7-2
    A Python patch parsing library
local/python-wheel 0.46.3-1
    A built-package format for Python
local/python-wrapt 1.17.3-2
    A Python module for decorators, wrappers and monkey patching
local/python-wsproto 1.2.0-7
    WebSockets state-machine based protocol implementation
local/python-wurlitzer 3.1.1-3
    Capture C-level stdout/stderr in Python
local/python-wxpython 1:4.2.4-1
    Cross-platform GUI toolkit
local/python-xlib 0.33-6
    A fully functional X client library for Python programs
local/python-xyzservices 2025.1.0-1
    Provides a repository of available XYZ services offering raster basemap tiles
local/python-yaml 6.0.3-2
    Python bindings for YAML, using fast libYAML library
local/python-yarl 1.23.0-1
    Yet another URL library
local/python-zipp 3.21.0-4
    Pathlib-compatible object wrapper for zip files
local/python2 2.7.18-12
    A high-level scripting language
local/python3-yamale 5.2.1-1
    A schema and validator for YAML
local/sdkmanager 0.6.0-2
    a drop-in replacement for sdkmanager from the Android SDK written in Python
local/shiboken2 5.15.16+4-1
    Generates bindings for C++ libraries using CPython source code
local/shiboken6 6.10.2-1
    Generates bindings for C++ libraries using CPython source code
local/spyder 6.1.3-1
    The Scientific Python Development Environment
local/texlive-binextra 2025.2-3 (texlive)
    TeX Live - TeX auxiliary programs
local/texlive-latexextra 2025.2-3 (texlive)
    TeX Live - LaTeX additional packages
local/yapf 0.43.0-2
    Python style guide checker

Offline

#10 Yesterday 07:36:03

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 73,306

Re: Impossible to use/install correctly python-flask-mail

I meant in the output of python errors.

I am very confident those files

for name in /usr/lib/python3.13/site-packages/*; do pacman -Qo $name; done

Offline

Board footer

Powered by FluxBB