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.9.8

Now pyrostep is fully asyncronized ...

  • wait_for bug fixed on Python v3.10.x.

  • 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.9.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.9.8-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyrostep-2.9.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.9.8.tar.gz
Algorithm Hash digest
SHA256 ac8bcb174b880a644e45acce2bbdc5b28ef35c0bd0c64d4ec4a2839f0c3a0a97
MD5 62441496aba4016b4f72869c84d628b7
BLAKE2b-256 3b74f8b6dd95708198c27cb8e0bf3a5392bdead1eb51716b185e0ef9210b112c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyrostep-2.9.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.9.8-py3-none-any.whl
Algorithm Hash digest
SHA256 032311c37990789ff5242ed99c869f96696ab677b81d10227aafc165e5e56086
MD5 c68caf4b6b11eeddd892549280a3f1f0
BLAKE2b-256 7c6b1ffbcd52efcbf2dc5f393cfb847d1e1bc9a66da40edd4c346b4c1bad43a0

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