vaphes / pocketbase

PocketBase client SDK for python
https://pypi.org/project/pocketbase/
MIT License
332 stars 38 forks source link

how to get user id after logging in user #40

Closed bobwatcherx closed 1 year ago

bobwatcherx commented 1 year ago

i want to get data user id . but it's not in my code

loginnow = client.collection("users").auth_with_password(
            "bob","12323"
            )
            # print(dir(loginnow))
            print(loginnow.id)
            # print(loginnow.token)

output ['__abstractmethods__', '__annotations__', '__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__slots__', '__str__', '__subclasshook__', '__weakref__', '_abc_impl', 'base_model', 'base_token', 'clear', 'model', 'save', 'token']

bobwatcherx commented 1 year ago

SOLVED print(client.auth_store.model.collection_id['id'])