Merge pull request #86 from martin-mueller-cemas/fix-doc-urls

Fix documentation URLs
This commit is contained in:
2024-07-25 19:08:44 +07:00 committed by GitHub
commit 9785e96ac4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ async def hello(client, message):
app.run() app.run()
``` ```
**Pyrofork** is a modern, elegant and asynchronous [MTProto API](https://pyrofork.mayuri.my.id/topics/mtproto-vs-botapi) **Pyrofork** is a modern, elegant and asynchronous [MTProto API](https://pyrofork.mayuri.my.id/main/topics/mtproto-vs-botapi)
framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot framework. It enables you to easily interact with the main Telegram API through a user account (custom client) or a bot
identity (bot API alternative) using Python. identity (bot API alternative) using Python.

View file

@ -723,7 +723,7 @@ class Client(Methods):
if session_empty: if session_empty:
if not self.api_id or not self.api_hash: if not self.api_id or not self.api_hash:
raise AttributeError("The API key is required for new authorizations. " raise AttributeError("The API key is required for new authorizations. "
"More info: https://pyrofork.mayuri.my.id/start/auth") "More info: https://pyrofork.mayuri.my.id/main/start/auth")
await self.storage.api_id(self.api_id) await self.storage.api_id(self.api_id)

View file

@ -55,7 +55,7 @@ except ImportError:
log.warning( log.warning(
"TgCrypto is missing! " "TgCrypto is missing! "
"Pyrogram will work the same, but at a much slower speed. " "Pyrogram will work the same, but at a much slower speed. "
"More info: https://pyrofork.mayuri.my.id/topics/speedups" "More info: https://pyrofork.mayuri.my.id/main/topics/speedups"
) )