Skip to main content

A Python library to handle steps in pyrogram framework.

Project description

Pyrostep

Downloads Python Pyrogram

A Python library to handle steps in pyrogram framework.

Pyrostep helps you to use pyrogram:

  • very easy step handling, waiting for answer, ...
  • change connection timeout, retries, etc.

Updated to 2.8.8

Now pyrostep is fully asyncronized ...

  • safe_idle changed, now you dont need this.

  • MetaStore.delete_item removed.

  • MetaStore.clear changed.

  • unregister_steps bug fixed, now cancel asyncio.Future object.

  • clear changed, now blocks listener until complete clearing.

Updated to 2.8.2

In this update, pyrostep completely changed ...

  • New Methods:

    • safe_idle
    • install
    • MetaStore method's name changed.
    • wait_for
  • Renamed Methods:

    • change_store to change_root_store
  • Removed Methods:

    • listen_on_the_side
    • ask
    • ask_wait
  • Removed Package:

    • filters
  • Install

  • Learn:

  • Other

install / update

python3 -m pip install -U pyrostep

Learn

to start with pyrostep, you have to do two steps:

  1. import pyrostep
  2. listen on which client you want
import pyrostep
# ...
cli = Client(...)
pyrostep.listen(cli)

step handling

step handling have two methods:

  • pyrostep.register_next_step(...)
  • pyrostep.unregister_steps(...)

register_next_step register next step, and unregister_steps removes step for user.

see example: ( see examples )

# ...

async def step1(client, msg):
    await msg.reply(
        "Send your name?"
    )
    pyrostep.register_next_step(
        msg.from_user.id,
        step2
    )

async def step2(client, msg):
    await msg.reply(
        f"Your name is {msg.text}"
    )

# ...

wait_for method

if you dont like step handling, can use this method.

see example: ( see examples )

# ...

async def get_name(client, msg):
    await msg.reply(
        "Send your name?"
    )
    answer = await pyrostep.wait_for(
        msg.from_user.id
    )
    await msg.reply(
        f"Your name is {answer.text}"
    )

# ...

Other packages and shortcuts

Connection

connection_max_retries method:

Change connection max retries. (default 3)

invoke_max_retries method:

Change invoke max retries. (default 5)

session_start_timeout method:

Change start timeout. (default 1)

session_max_retries method:

Change session max retries ( and tcp connection mode ).

  • TCP Connection Modes:
    • TCPFull
    • TCPAbridged
    • TCPIntermediate
    • TCPAbridgedO
    • TCPIntermediateO

Shortcuts

import shortcuts:

from pyrostep import shortcuts

Now see methods:

split_list splites lst list:

>>> shortcuts.split_list([1, 2, 3, 4, 5, 6], 2)
# [[1, 2], [3, 4], [5, 6]]
>>> shortcuts.split_list([1, 2, 3], 2)
# [[1, 2], [3]]

keyboard creates ReplyKeyboardMarkup from your list:

buttons = [
    [
        ["Top Left"], ["Top Right"]
    ],
    [
        ["Bottom | Request Contact", True, "request_contact"]
    ]
]
kb = shortcuts.keyboard(buttons)

inlinekeyboard creates InlineKeyboardMarkup from your list:

buttons = [
    [
        ["Top Left", "data_1"], ["Top Right", "data_2"]
    ],
    [
        ["Bottom", "Your URL", "url"]
    ]
]
ikb = shortcuts.inlinekeyboard(buttons)

validation_channels checks user already in channels or not:

user_id = 56392019
channels = [-102792837, -10823823, 'channel_username']

is_joined = await validation_channels(
    app, user_id, channels
)
# ...
async def invite(app, id, channels) -> None:
    print(
        f"User {id} is not member of channels ({channels})"
    )

is_joined = await validation_channels(
    app, user_id, channels,
    invite_func=invite
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrostep-2.8.8.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyrostep-2.8.8-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file pyrostep-2.8.8.tar.gz.

File metadata

  • Download URL: pyrostep-2.8.8.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for pyrostep-2.8.8.tar.gz
Algorithm Hash digest
SHA256 f2efefdf313994a18ffaa45c992d1870c4cc4cccd0f401696c3a0d9bbf30ffd6
MD5 21ae045884652ca911f79519603aaa55
BLAKE2b-256 0d26ccc2902b72bdcc3b2b8e69d6337df5a7cf01d6bb0852b600353d1eecebc5

See more details on using hashes here.

File details

Details for the file pyrostep-2.8.8-py3-none-any.whl.

File metadata

  • Download URL: pyrostep-2.8.8-py3-none-any.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.2

File hashes

Hashes for pyrostep-2.8.8-py3-none-any.whl
Algorithm Hash digest
SHA256 1c3ab306f47e1621f9323b65d288086c5fcdefab9026ac9c0037ba77d93b3d54
MD5 46655532ebbd48cdb3928cac9bc5162a
BLAKE2b-256 7d9644133ec4a4db4097eabb13e14a7ae5b9c5dfe49d10a6580290baa93f83ee

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page