Raphael Kalandadze

Results 19 comments of Raphael Kalandadze

Hi @ActiveChooN I still can't create an account or reset password ![image](https://user-images.githubusercontent.com/74569835/182405248-f090325e-fdae-470f-b902-d9400dab3a0c.png)

thanks @LukasMasuch for your time. you are right but when I tested it by adding more content below it still happens if you scroll down to the new content and...

thanks @vdonato. I'm using [stremlit-elements](https://github.com/okld/streamlit-elements) and Material UI buttons so I can't use st.download_button or generated data URL since I want to download file when the user clicks that MUI...

I save posts as a json file. is there any way to use post["post_url"] as start_url

how can I change it in handle_pagination_url? as I know for account changing I need to call get_posts with different credentials and it will generate same page again right?

so you mean to raise exceptions in handle_pagination_url right?

> You're requesting 200 posts per page but only reading 50 of them? So naturally there'd be the same posts on that page, because you didn't finish reading the posts...

you mean something like that? does it change account after 50 iteration and continues scraping? ``` def handle_pagination_url(url): global start_url, post_counter start_url = url post_counter += 1 if post_counter %...

I get ban before 200 posts that's why I want to change account and also using posts_per_page=200 since I found it use less requests. Do I know something wrong?