Results 60 comments of vladkens

Hi, @FroostySnoowman. What api method you use? Actually is no flags about it any model now. If you scrape user profiles, ids should be in chronological order expect 1-3 first...

Added in v0.13 ``` import asyncio from twscrape import API async def main(): api = API() async for doc in api.user_tweets(2244994945, limit=10): print(doc.url, doc.id in doc.user.pinnedIds) if __name__ == "__main__":...

@BinaryBreaker twscrappe actually have it build in. But if you want implement part of it manually `_raw` methods and `_get_cursor` from api file. Just check it. All real logic in...

@Eastup123 hi. Probably it should be some extra message with explanation. There can be many reasons: wrong login/password from X, wrong login/password from mail, mail doesn't support imap or it...

Hi. This is problem with `x-client-transaction-id`. I will try to fix in couple of days. Details: https://github.com/vladkens/twscrape/issues/248#issuecomment-2833779101

I added this very strange code to generate `x-client-transaction-id`. This approach doesn't look stable enough for me right now (404 is returned quite often and the code has to be...

Hi everyone, I see this error with `x-client-transaction-id`. I will try to make a release with a fix within a couple of days. Thanks to @BonifacioCalindoro for investigating the problem...

@gptlang do you want to make PR?

Hi @andreujuanc, thanks for raising this! I actually had a [similar request](https://github.com/vladkens/apigen-ts/issues/2) before. To be honest, I'm not completely sure what the "right" default behavior should be, since the current...

Hi @not-my-profile, Could you explain why you need this? I know OpenAPI schemas and properties can include description, title, and other fields, but I intentionally left them out to keep...