python-pam icon indicating copy to clipboard operation
python-pam copied to clipboard

Python pam module supporting py3 (py2 support still exists but is deprecated)

Results 9 python-pam issues
Sort by recently updated
recently updated
newest added

Currently the project is listed on [PyPI](https://pypi.org/project/python-pam/) as supporting Python 2, but installation fails with a SyntaxError due to the use of f-strings such as in [__internals.py#L102](https://github.com/FirefighterBlu3/python-pam/blob/80ae6db0b778ccc45555d7f2bed154565ef66ee9/src/pam/__internals.py#L102) and L388, and...

I think there's been enough commits/changes since v1.8.4 [Jun 16, 2018] to justify a minor version bump to v1.8.5.

It seems that python_pam is not thread-safe, or I am using it in a wrong way. At least adding an RLock solved one issue for me: https://github.com/mar10/wsgidav/issues/265 Maybe you want...

I recognized the out-of-sync branches develop/master I've updated the .gitignore to fullfill my needs for virtual environemnts. I sticked with the changes for py2 support but would really say, this...

I just installed via apt python3-pam. The Big Question what is inside the package? In my development environment I used pam from pip. So far I understand both pip packages...

Hi, I can see that `six` does seem to already [be a dependency](https://github.com/FirefighterBlu3/python-pam/blame/master/pyproject.toml#L5) (something I don't really understand), but it seems to still be missing from 2.0.2: ``` $ mkdir...

Hi, I'm using python-pam to authenticate users in a Flask app. A /login REST API calls `pam.authenticate(username, password)` to authenticate the user. Occasionally, I would see an exception like this:...

There is a problem with the `pyproject.toml` file, it does not have the `[project]` section declared and therefore the `dependencies` section is missing inside it. This causes that when a...

If the conversation and closure data are not rooted to the class then they can be garbage collected before the conversation function is invoked. That leads to a crash in...