GithubHelp home page GithubHelp logo

futuredreams / pyrogram Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pyrogram/pyrogram

0.0 1.0 0.0 162 KB

Telegram MTProto API Client Library for Python

Home Page: https://pyrogram.ml

License: GNU Lesser General Public License v3.0

Python 100.00%

pyrogram's Introduction

Telegram MTProto API Client Library for Python
Download Wiki Telegram Group

Scheme Layer 73 MTProto v2.0

Table of Contents

Overview

Pyrogram is a Client Library written from the ground up in Python, designed for Python application developers. It offers simple and complete access to the Telegram Messenger API. Pyrogram:

  • Provides idiomatic, developer-friendly Python code (either generated or hand-written) making the Telegram API simple to use.
  • Handles all the low-level details of communication with the Telegram servers by implementing the MTProto Mobile Protocol v2.0.
  • Makes use of the latest Telegram API version (Layer 73).
  • Can be easily installed and upgraded using pip.
  • Requires a minimal set of dependencies.

Requirements

  • Python 3.3 or higher.
  • A Telegram API key.

Installation

You can easily install and upgrade the library using standard Python tools:

$ pip install --upgrade pyrogram

Getting Started

  • Create a new config.ini file at the root of your working directory, copy-paste the following and replace the api_id and api_hash values with your own:

    [pyrogram]
    api_id = 12345
    api_hash = 0123456789abcdef0123456789abcdef
  • Then you can start with this:

    from pyrogram import Client
    
    client = Client(session_name="example")
    client.start()
    
    # Get information about yourself
    print(client.get_me())

That's all you need for getting started with Pyrogram. For more detailed information, please refer to the Wiki:

Development

The library is still in its early stages, thus lots of functionalities aiming to make working with Telegram's API easy are yet to be added and documented.

However, being the core functionalities already implemented, every Telegram API method listed in the API scheme can be used right away; the goal is therefore to build a powerful, simple to use, bot-like interface on top of those low-level functions.

Documentation

Soon. For now, have a look at the pyrogram.Client code to get some insights.

Currently you are able to easily:

  • send_message
  • forward_messages
  • edit_message_text
  • delete_messages
  • send_chat_action
  • Some more...

as well as listening for updates and catching API errors.

Contribution

You are very welcome to contribute by either submitting pull requests or reporting issues/bugs as well as suggesting best practices, ideas, enhancements on both code and documentation. Any help is appreciated!

Feedback

Means for getting in touch:

License

pyrogram's People

Contributors

delivrance avatar

Watchers

 avatar

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.