Giter Club home page Giter Club logo

Comments (10)

delivrance avatar delivrance commented on May 3, 2024

By reading the documentation: https://docs.pyrogram.ml/resources/ErrorHandling/

from pyrogram.

Padandish avatar Padandish commented on May 3, 2024

Thanks, I read documents,

but program wait on client.start() line, without any Exception.


        try:
            if self.__client is not None:
                data['result'] = True
            else:
                session_path = self.__get_session_path()
                self.__client = Client(session_name=session_path,
                                       phone_number=str(self.__id),
                                       phone_code=phone_code_callback,
                                       password=self.__password)
                self.__client.start()

                me = self.__client.get_me()
                if hasattr(me, 'ID'):
                    self.__client_id = me.ID
                    data['result'] = True

        except FloodWait as ex:
            data['error'] = BadRequest.__name__
            data['error_log'] = ex
            pass

capture

from pyrogram.

delivrance avatar delivrance commented on May 3, 2024
try:
    ...  # Any interaction with the API
except FloodWait as e:
    time.sleep(e.x)  # e.x contains the amount of seconds you have to wait

from pyrogram.

Padandish avatar Padandish commented on May 3, 2024

Yes, But "except FloodWait as e:" not called.

Please see video.
2018-02-01_19-24-00.zip

from pyrogram.

delivrance avatar delivrance commented on May 3, 2024

Ok the video makes it clear now.
Your except FloodWait as e is not "called" because Pyrogram is blocking automatically; it waits there for 71819 seconds and then automatically tries again to login.

from pyrogram.

Padandish avatar Padandish commented on May 3, 2024

Can i handle blocking? when see this state, stop client and close program such as sys.exit()

from pyrogram.

delivrance avatar delivrance commented on May 3, 2024

Sure, you are free to fork and make changes to the code.

from pyrogram.

Padandish avatar Padandish commented on May 3, 2024

Thanks, i changed it.

I have suggestion, add callback to handle this state to future releases.

from pyrogram.

i-Naji avatar i-Naji commented on May 3, 2024

I have a client that has almost 500 group chats and about 3000 personal chats, I always get Floodwait because of get_dialogs when i call client.start() so I skipped this function during starting a client.
do you suggest any another solutions?

from pyrogram.

delivrance avatar delivrance commented on May 3, 2024

@i-Naji I've wrapped the relevant method around a try..catch block. Now it is sleeping X seconds before continuing fetching the dialogs. Please try again using the master branch.
This is not a definitive solution, I'm planning in caching all the dialogs in the session file in order to speed the lib up.

from pyrogram.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.