-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature request] Typing support and migrating from redis-py #84
Comments
Hi! |
Hi! Yes, I'm using it with redis-py 5.0.8 and it works perfectly fine, but I might very well not be using new features that are unsupported (python/typeshed#10592). If I have time today, I'll have a look on how types-redis does to independently support async vs. non async calls. It might very well be a quick fix I to push to valkey-py. |
Alright, so this is going to be a fun project. I may tell you things you already know, but that was new to me and there are a few questions to answer before starting to work on that. First of all, as far as I can tell, the typing hints are completely broken and never work for anyone: Asyncimport asyncio
from valkey.asyncio import Valkey
async def test() -> dict[bytes, bytes]:
v: Valkey = Valkey()
response_hset: int = await v.hset('foo', mapping={'bar': 'baz'})
print(response_hset)
h: dict[bytes, bytes] = await v.hgetall('foo')
print(h)
return h
asyncio.run(test()) $ (git::main) mypy test_async.py
test_async.py:10: error: Incompatible types in "await" (actual type "Awaitable[int] | int", expected type "Awaitable[Any]") [misc]
test_async.py:12: error: Incompatible types in "await" (actual type "Awaitable[dict[Any, Any]] | dict[Any, Any]", expected type "Awaitable[Any]") [misc]
Found 2 errors in 1 file (checked 1 source file) Syncfrom valkey import Valkey
v: Valkey = Valkey()
v.hset('foo', mapping={'bar': 'baz'})
h: dict[bytes, bytes] = v.hgetall('foo')
print(h)
That's because the way sync/async is implemented. For example, if you take hgetall, it's in And the The way the async library works was very confusing to me at first because it's just defining the async class this way AsyncHashCommands = HashCommands. But then, TL;DR: It is a sane way to avoid too much code duplication, but makes typing a bit of a nightmare. I'm not totally certain on the path forward from here but it would make sense to fix it as it seems the way to get it to work as-is looks like that, and I hate it. I think the clean-ish way to do it without duplicating code is to integrate the .pyi files from types-redis into the valkey package, it seems to be possible. Sorry that was pretty long, but it took me a while to understand what was going on. What do you think? |
Thanks for the through analysis! And yes, I agree that integrating those type annotations in valkey-py is the best way forward, rather than relying on external stubs. |
Hey @Rafiot , Thanks for the report! Do you want to handle it yourself? Otherwise I can have a look at it. |
Hey @mkmkme, I'll try to get starting on it soon, but I have a few more urgent tasks first, so I'm not totally sure it will happen this week. Regardless, it's going to take quite a bit of time, and I have a very limited understanding of the codebase (besides the report above), but I think the first thing to do is getting mypy to run on the repo, and increment from there. If you (or anyone else) have time to work on it, it might make sense to have a dedicated branch for that? |
@Rafiot I'm a fairly new user of Redis/Valkey but I got annoyed by the lack of typing support from day 1 basically. I might be able to help out, I will at least track what you are doing and if I see something where I can help out I will try to. Not sure if it is possible or acceptable to ask in the typeshed-repo if any of the maintainers behind types-redis is interested to support? Thanks a lot for raising this! |
Good point, I opened an issue with the maintainers of |
hi @Rafiot i was wondering if you don't mind if i send some patches on type hints that i know are wrong one example being let me know what you think |
Please all the PRs you feel are necessary. I barely started working on it and the starting point will be EDIT: Just to make sure, you're not talking of patching the type hints in this repo, right? As far as can tell, they are pretty much useless and they will most probably go away. |
ok, so I did something quick and dirty (emphasis on dirty), and copied the content of With that, the very simple scripts above pass fine with mypy. It's not even close to be mergeable, but that's an okay starting point. I think my next steps will be to make it possible to run mypy on |
Awesome! |
So just FYI, I'll slowly work on getting mypy to run on the branch in my repo. It's gonna take a while but if someone wants to contribute, please go for it. And I'll also merge the changes from types-redis as they come in. |
Sounds great, thanks! |
What's your feeling regarding PEP563? I find it much more readable and pleasant to use, but it requires python 3.7+. |
since this packages supports 3.8+ i think using my IDE would be a lot happier with new type hints, it doesn't work well with |
Good point, the python version won't be an issue. I might wait for a first working package without PEP 563 just so merging from the typeshed is easy-ish. |
Alright, todays update: mypy passes on most of the public interface, and the tests for the commands in sync and async: https://github.com/Rafiot/valkey-py/blob/types/.mypy.ini What do you think would be a good next step? |
I think one of the next steps should be to merge the signatures into the code. Having them in separate |
On the long run, agreed, but due to the way the async is implemented, we will need to keep a |
Version: 6.0
Platform: Any
Description: The typing provided by the redis package is terrible and the recommended way is to use types-redis but this one obviously doesn't work with the valkey package, and there is no
types-valkey
(yet?).I'm playing around to see if I can find a janky solution, but is there any chance you're planning to merge (and support) the types hints directly in the package? Or provide a
types-valkey
package at some point?The text was updated successfully, but these errors were encountered: