Skip to content

Commit

Permalink
ReBrand
Browse files Browse the repository at this point in the history
  • Loading branch information
SpEcHiDe committed May 7, 2024
1 parent 2646b98 commit 76071b3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

version = __version__

project = "pyrotgfork"
project = "pirogram"
copyright = "2017-present, Dan"
author = "Dan"

Expand Down
4 changes: 2 additions & 2 deletions docs/source/intro/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ You can install the development version from the git appropriate branch using th

.. code-block:: text
$ pip uninstall -y pyrogram && pip install pyrotgfork
$ pip uninstall -y pyrogram && pip install pirogram
- or, with :doc:`TgCrypto <../topics/speedups>` as extra requirement (recommended):

.. code-block:: text
$ pip install pyrotgfork[fast]
$ pip install pirogram[fast]
Verifying
---------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/intro/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Get Pyrogram Real Fast

0. Activate the Virtual Environment with ``source ./venv/bin/activate``.

1. Install Pyrogram with ``pip uninstall -y pyrogram && pip install pyrotgfork``.
1. Install Pyrogram with ``pip uninstall -y pyrogram && pip install pirogram``.

2. Get your own Telegram API key from https://my.telegram.org/apps.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/releases/changes-in-this-fork.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ it can take advantage of new goodies!
- Added ``accent_color``, ``profile_color``, ``emoji_status``, ``is_close_friend`` to :obj:`~pyrogram.types.Chat` and :obj:`~pyrogram.types.User`.
- Added the method :meth:`~pyrogram.Client.get_created_chats`.
- Added the class :obj:`~pyrogram.types.ForumTopic` and the methods :meth:`~pyrogram.Client.get_forum_topics`, :meth:`~pyrogram.Client.get_forum_topic`.
- Install the version, from PyPI, using ``pip uninstall -y pyrogram && pip install pyrotgfork==2.1.17``.
- Install the version, from PyPI, using ``pip uninstall -y pyrogram && pip install pirogram==2.1.30``.
- Added the classes :obj:`~pyrogram.types.BusinessOpeningHours` and :obj:`~pyrogram.types.BusinessOpeningHoursInterval` and the field ``business_opening_hours`` to the class :obj:`~pyrogram.types.Chat`.
- Added the class :obj:`~pyrogram.types.BusinessLocation` and the field ``business_location`` to the class :obj:`~pyrogram.types.Chat`.
- Added the class :obj:`~pyrogram.types.BusinessIntro` and the field ``business_intro`` to the class :obj:`~pyrogram.types.Chat`.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/topics/speedups.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Installation

.. code-block:: bash
$ pip3 install -U tgcrypto
$ pip3 install -U PyTgCrypto
Usage
^^^^^
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "pyrotgfork"
name = "pirogram"
dynamic = ["version"]
description = "Fork of Pyrogram. Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots"
authors = [{ name = "SpEcHIDe", email = "[email protected]" }]
Expand Down Expand Up @@ -42,7 +42,6 @@ path = "pyrogram/__init__.py"
[project.urls]
Homepage = "https://telegramplayground.github.io/pyrogram/releases/"
Tracker = "https://github.com/TelegramPlayGround/Pyrogram/issues"
Community = "https://t.me/PyroTGFork"
Source = "https://github.com/TelegramPlayGround/Pyrogram"
Documentation = "https://telegramplayground.github.io/pyrogram/"

Expand Down Expand Up @@ -99,6 +98,6 @@ docs = [
]

fast = [
"TgCrypto==1.2.5",
"PyTgCrypto==1.2.6",
"uvloop>0.18.0,<=0.19.0"
]
2 changes: 1 addition & 1 deletion pyrogram/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.

__fork_name__ = "pyrotgfork"
__fork_name__ = "pirogram"
__version__ = "2.1.30"
__license__ = "GNU Lesser General Public License v3.0 (LGPL-3.0)"
__copyright__ = "Copyright (C) 2017-present Dan <https://github.com/delivrance>"
Expand Down

0 comments on commit 76071b3

Please sign in to comment.