tg-music


Nametg-music JSON
Version 1.0.0.dev5 PyPI version JSON
download
home_pagehttps://github.com/AyiinXd/tgcalls
Summarya Python binding for tgcalls C++ library
upload_time2023-05-20 07:55:05
maintainer
docs_urlNone
authorAyiinXd
requires_python~=3.7
licenseLGPLv3
keywords python library telegram async asynchronous webrtc lib voice-chat voip group-chat video-call calls fipper telethon pytgcalls tgcalls
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
    <a href="https://github.com/MarshalX/tgcalls">
        <img src="https://github.com/MarshalX/tgcalls/raw/main/.github/images/logo.png" alt="tgcalls">
    </a>
    <br>
    <b>Voice chats, private incoming and outgoing calls in Telegram for Developers</b>
    <br>
    <a href="https://github.com/MarshalX/tgcalls/tree/main/examples">
        Examples
    </a>
    •
    <a href="https://tgcalls.org">
        Documentation
    </a>
    •
    <a href="https://t.me/tgcallslib">
        Channel
    </a>
    •
    <a href="https://t.me/tgcallschat">
        Chat
    </a>
</p>

## Telegram WebRTC (VoIP) [![Mentioned in Awesome Telegram Calls](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/tgcalls/awesome-tgcalls)

This project consists of two main parts: [tgcalls](#tgcalls), [pytgcalls](#pytgcalls).
The first is a C++ Python extension.
The second uses the extension along with MTProto and provides high level SDK.
All together, it allows you to create userbots that can record and
broadcast in voice chats, make and receive private calls.

#### Fipper's snippet
```python
from fipper import Client, filters
from fipper.utils import MAX_CHANNEL_ID

from pytgcalls import GroupCallFactory

app = Client('pytgcalls')
group_call = GroupCallFactory(app).get_file_group_call('input.raw')


@group_call.on_network_status_changed
async def on_network_changed(context, is_connected):
    chat_id = MAX_CHANNEL_ID - context.full_chat.id
    if is_connected:
        await app.send_message(chat_id, 'Successfully joined!')
    else:
        await app.send_message(chat_id, 'Disconnected from voice chat..')


@app.on_message(filters.outgoing & filters.command('join'))
async def join_handler(_, message):
    await group_call.start(message.chat.id)


app.run()
```

#### Telethon's snippet
```python
from telethon import TelegramClient, events

from pytgcalls import GroupCallFactory

app = TelegramClient('pytgcalls', api_id, api_hash).start()
group_call_factory = GroupCallFactory(app, GroupCallFactory.MTPROTO_CLIENT_TYPE.TELETHON)
group_call = group_call_factory.get_file_group_call('input.raw')


@app.on(events.NewMessage(outgoing=True, pattern=r'^/join$'))
async def join_handler(event):
    chat = await event.get_chat()
    await group_call.start(chat.id)

app.run_until_disconnected()
```

### Features

- Python solution.
- Prebuilt wheels for macOS, Linux and Windows.
- Supporting popular MTProto libraries: Fipper, Telethon.
- Abstract class to implement own MTProto bridge.
- Work with voice chats in channels and chats.
- Multiply voice chats ([example](https://github.com/MarshalX/tgcalls/blob/main/examples/radio_as_smart_plugin.py)).
- System of custom handlers on events.
- Join as channels or chats.
- Join using invite (speaker) links.
- Speaking status with voice activity detection.
- Mute/unmute, pause/resume, stop/play, volume control and more...

### Available sources of input/output data transfers

- Raw (`GroupCallRaw`, [example with pyav](https://github.com/MarshalX/tgcalls/blob/main/examples/pyav.py),
[example of restreaming](https://github.com/MarshalX/tgcalls/blob/main/examples/restream_using_raw_data.py))
  — to send and receive data in `bytes` directly from Python.
- File (`GroupCallFile`, [playout example](https://github.com/MarshalX/tgcalls/blob/main/examples/file_playout.py),
  [recording example](https://github.com/MarshalX/tgcalls/blob/main/examples/recorder_as_smart_plugin.py))
  — to use audio files including named pipe (FIFO).
- Device (`GroupCallDevice`, [example](https://github.com/MarshalX/tgcalls/blob/main/examples/device_playout.py)) — 
to use system virtual devices. Please don't use it with real microphone, headphones, etc.

Note: All audio data is transmitted in PCM 16 bit, 48k. 
[Example how to convert files using FFmpeg](#audio-file-formats).

### Requirements

- Python 3.7 or higher.
- A [Telegram API key](https://docs.pyrogram.org/intro/setup#api-keys).

### TODO list
- Incoming and Outgoing private calls 
(already there and working, but not in the release version).
- Group Video Calls
[and more...](https://github.com/MarshalX/tgcalls/issues)

### Installing

#### For Fipper
``` bash
pip3 install -U pytgcalls[pyrogram]
```

#### For Telethon
``` bash
pip3 install -U pytgcalls[telethon]
```

<hr>
<p align="center">
    <a href="https://github.com/MarshalX/tgcalls">
        <img src="https://github.com/MarshalX/tgcalls/raw/main/.github/images/tgcalls.png" alt="tgcalls">
    </a>
    <br>
    <a href="https://pypi.org/project/tgcalls/">
        PyPi
    </a>
    •
    <a href="https://github.com/MarshalX/tgcalls/tree/main/tgcalls">
        Sources
    </a>
</p>

## tgcalls 

The first part of the project is C++ extensions for Python. [Pybind11](https://github.com/pybind/pybind11)
was used to write it. Binding occurs to the [tgcalls](https://github.com/TelegramMessenger/tgcalls)
library by Telegram, which is used in all official clients. 
To implement the binding, the code of Telegram Desktop and Telegram Android was studied.
Changes have been made to the Telegram library. 
All modified code is [available as a subtree](https://github.com/MarshalX/tgcalls/tree/main/tgcalls/third_party/lib_tgcalls)
in this repository. The main ideas of the changes is to improve 
the sound quality and to add ability to work with third party audio device modules.
In addition, this binding implemented custom audio modules. These modules are allowing
transfer audio data directly from Python via bytes, transfer and control 
the playback/recording of a file or a virtual system device.

### How to build

Short answer for Linux:
```bash
git clone git@github.com:MarshalX/tgcalls.git --recursive
cd tgcalls
```
For x86_64:
```bash
docker-compose up tgcalls_x86_64
```
For AArch64 (ARM64):
```bash
docker-compose up tgcalls_aarch64
```

Python wheels will be available in `dist` folder in root of `tgcalls`.

More info:
- [Manylinux](build/manylinux/dev).
- [Ubuntu](build/ubuntu).
- [macOS](build/macos).
- [Windows](build/windows).

Also, you can investigate into [manylinux GitHub Actions builds](build/manylinux).

### Documentation

Temporarily, instead of documentation, you can use [an example](pytgcalls/pytgcalls)
along with MTProto.

<hr>
<p align="center">
    <a href="https://github.com/MarshalX/tgcalls">
        <img src="https://github.com/MarshalX/tgcalls/raw/main/.github/images/pytgcalls.png" alt="pytgcalls">
    </a>
    <br>
    <a href="https://tgcalls.org">
        Documentation
    </a>
    •
    <a href="https://pypi.org/project/pytgcalls/">
        PyPi
    </a>
    •
    <a href="https://github.com/MarshalX/tgcalls/tree/main/pytgcalls">
        Sources
    </a>
</p>

## pytgcalls 

This project is implementation of using [tgcalls](#tgcalls) 
Python binding together with [MTProto](https://core.telegram.org/mtproto).
By default, this library are supports [Fipper](https://github.com/pyrogram/pyrogram)
and [Telethon](https://github.com/LonamiWebs/Telethon) clients for working 
with Telegram Mobile Protocol. 
You can write your own implementation of abstract class to work with other libraries.

### Learning by example

Visit [this page](https://github.com/MarshalX/tgcalls/tree/main/examples) to discover the official examples.

### Documentation

`pytgcalls`'s documentation lives at [tgcalls.org](https://tgcalls.org).

### Audio file formats

RAW files are now used. You will have to convert to this format yourself
using ffmpeg. The example how to transcode files from a code is available [here](https://github.com/MarshalX/tgcalls/blob/e0b2d667728cc92cc0da437b9c85bcc909e4ac9c/examples/player_as_smart_plugin.py#L41).

From mp3 to raw (to play in voice chat):
```
ffmpeg -i input.mp3 -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw
```

From raw to mp3 (files with recordings):
```
ffmpeg -f s16le -ac 2 -ar 48000 -acodec pcm_s16le -i output.raw clear_output.mp3
```

For playout live stream you can use this one:
```
ffmpeg -y -i http://stream2.cnmns.net/hope-mp3 -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw
```

For YouTube videos and live streams you can use youtube-dl:
```
ffmpeg -i "$(youtube-dl -x -g "https://youtu.be/xhXq9BNndhw")" -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw
```

And set input.raw as input filename.

<hr>

### Getting help

You can get help in several ways:
- We have a community of developers helping each other in our 
[Telegram group](https://t.me/tgcallschat).
- Report bugs, request new features or ask questions by creating 
[an issue](https://github.com/MarshalX/tgcalls/issues/new) or 
[a discussion](https://github.com/MarshalX/tgcalls/discussions/new).

### Contributing

Contributions of all sizes are welcome.

### Special thanks to

- [@FrayxRulez](https://github.com/FrayxRulez) for amazing code of [Unigram](https://github.com/UnigramDev/Unigram).
- [@john-preston](https://github.com/john-preston) for [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) and [tgcalls](https://github.com/TelegramMessenger/tgcalls).
- [@bakatrouble](https://github.com/bakatrouble/) for help and inspiration by [pytgvoip](https://github.com/bakatrouble/pytgvoip).
- [@delivrance](https://github.com/delivrance) for [Fipper](https://github.com/pyrogram/pyrogram).
- [@Lonami](https://github.com/Lonami) for [Telethon](https://github.com/LonamiWebs/Telethon).

### License

You may copy, distribute and modify the software provided that modifications
are described and licensed for free under [LGPL-3](https://www.gnu.org/licenses/lgpl-3.0.html).
Derivatives works (including modifications or anything statically
linked to the library) can only be redistributed under LGPL-3, but
applications that use the library don't have to be.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/AyiinXd/tgcalls",
    "name": "tg-music",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.7",
    "maintainer_email": "",
    "keywords": "python,library,telegram,async,asynchronous,webrtc,lib,voice-chat,voip,group-chat,video-call,calls,fipper,telethon,pytgcalls,tgcalls",
    "author": "AyiinXd",
    "author_email": "ayiinxd0307@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/76/8f/8a02ede2e2aa9d561d221b052fd737b7f463ee1feb92d56f9850d7ad30b2/tg-music-1.0.0.dev5.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\r\n    <a href=\"https://github.com/MarshalX/tgcalls\">\r\n        <img src=\"https://github.com/MarshalX/tgcalls/raw/main/.github/images/logo.png\" alt=\"tgcalls\">\r\n    </a>\r\n    <br>\r\n    <b>Voice chats, private incoming and outgoing calls in Telegram for Developers</b>\r\n    <br>\r\n    <a href=\"https://github.com/MarshalX/tgcalls/tree/main/examples\">\r\n        Examples\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://tgcalls.org\">\r\n        Documentation\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://t.me/tgcallslib\">\r\n        Channel\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://t.me/tgcallschat\">\r\n        Chat\r\n    </a>\r\n</p>\r\n\r\n## Telegram WebRTC (VoIP) [![Mentioned in Awesome Telegram Calls](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/tgcalls/awesome-tgcalls)\r\n\r\nThis project consists of two main parts: [tgcalls](#tgcalls), [pytgcalls](#pytgcalls).\r\nThe first is a C++ Python extension.\r\nThe second uses the extension along with MTProto and provides high level SDK.\r\nAll together, it allows you to create userbots that can record and\r\nbroadcast in voice chats, make and receive private calls.\r\n\r\n#### Fipper's snippet\r\n```python\r\nfrom fipper import Client, filters\r\nfrom fipper.utils import MAX_CHANNEL_ID\r\n\r\nfrom pytgcalls import GroupCallFactory\r\n\r\napp = Client('pytgcalls')\r\ngroup_call = GroupCallFactory(app).get_file_group_call('input.raw')\r\n\r\n\r\n@group_call.on_network_status_changed\r\nasync def on_network_changed(context, is_connected):\r\n    chat_id = MAX_CHANNEL_ID - context.full_chat.id\r\n    if is_connected:\r\n        await app.send_message(chat_id, 'Successfully joined!')\r\n    else:\r\n        await app.send_message(chat_id, 'Disconnected from voice chat..')\r\n\r\n\r\n@app.on_message(filters.outgoing & filters.command('join'))\r\nasync def join_handler(_, message):\r\n    await group_call.start(message.chat.id)\r\n\r\n\r\napp.run()\r\n```\r\n\r\n#### Telethon's snippet\r\n```python\r\nfrom telethon import TelegramClient, events\r\n\r\nfrom pytgcalls import GroupCallFactory\r\n\r\napp = TelegramClient('pytgcalls', api_id, api_hash).start()\r\ngroup_call_factory = GroupCallFactory(app, GroupCallFactory.MTPROTO_CLIENT_TYPE.TELETHON)\r\ngroup_call = group_call_factory.get_file_group_call('input.raw')\r\n\r\n\r\n@app.on(events.NewMessage(outgoing=True, pattern=r'^/join$'))\r\nasync def join_handler(event):\r\n    chat = await event.get_chat()\r\n    await group_call.start(chat.id)\r\n\r\napp.run_until_disconnected()\r\n```\r\n\r\n### Features\r\n\r\n- Python solution.\r\n- Prebuilt wheels for macOS, Linux and Windows.\r\n- Supporting popular MTProto libraries: Fipper, Telethon.\r\n- Abstract class to implement own MTProto bridge.\r\n- Work with voice chats in channels and chats.\r\n- Multiply voice chats ([example](https://github.com/MarshalX/tgcalls/blob/main/examples/radio_as_smart_plugin.py)).\r\n- System of custom handlers on events.\r\n- Join as channels or chats.\r\n- Join using invite (speaker) links.\r\n- Speaking status with voice activity detection.\r\n- Mute/unmute, pause/resume, stop/play, volume control and more...\r\n\r\n### Available sources of input/output data transfers\r\n\r\n- Raw (`GroupCallRaw`, [example with pyav](https://github.com/MarshalX/tgcalls/blob/main/examples/pyav.py),\r\n[example of restreaming](https://github.com/MarshalX/tgcalls/blob/main/examples/restream_using_raw_data.py))\r\n  \u2014 to send and receive data in `bytes` directly from Python.\r\n- File (`GroupCallFile`, [playout example](https://github.com/MarshalX/tgcalls/blob/main/examples/file_playout.py),\r\n  [recording example](https://github.com/MarshalX/tgcalls/blob/main/examples/recorder_as_smart_plugin.py))\r\n  \u2014 to use audio files including named pipe (FIFO).\r\n- Device (`GroupCallDevice`, [example](https://github.com/MarshalX/tgcalls/blob/main/examples/device_playout.py)) \u2014 \r\nto use system virtual devices. Please don't use it with real microphone, headphones, etc.\r\n\r\nNote: All audio data is transmitted in PCM 16 bit, 48k. \r\n[Example how to convert files using FFmpeg](#audio-file-formats).\r\n\r\n### Requirements\r\n\r\n- Python 3.7 or higher.\r\n- A [Telegram API key](https://docs.pyrogram.org/intro/setup#api-keys).\r\n\r\n### TODO list\r\n- Incoming and Outgoing private calls \r\n(already there and working, but not in the release version).\r\n- Group Video Calls\r\n[and more...](https://github.com/MarshalX/tgcalls/issues)\r\n\r\n### Installing\r\n\r\n#### For Fipper\r\n``` bash\r\npip3 install -U pytgcalls[pyrogram]\r\n```\r\n\r\n#### For Telethon\r\n``` bash\r\npip3 install -U pytgcalls[telethon]\r\n```\r\n\r\n<hr>\r\n<p align=\"center\">\r\n    <a href=\"https://github.com/MarshalX/tgcalls\">\r\n        <img src=\"https://github.com/MarshalX/tgcalls/raw/main/.github/images/tgcalls.png\" alt=\"tgcalls\">\r\n    </a>\r\n    <br>\r\n    <a href=\"https://pypi.org/project/tgcalls/\">\r\n        PyPi\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://github.com/MarshalX/tgcalls/tree/main/tgcalls\">\r\n        Sources\r\n    </a>\r\n</p>\r\n\r\n## tgcalls \r\n\r\nThe first part of the project is C++ extensions for Python. [Pybind11](https://github.com/pybind/pybind11)\r\nwas used to write it. Binding occurs to the [tgcalls](https://github.com/TelegramMessenger/tgcalls)\r\nlibrary by Telegram, which is used in all official clients. \r\nTo implement the binding, the code of Telegram Desktop and Telegram Android was studied.\r\nChanges have been made to the Telegram library. \r\nAll modified code is [available as a subtree](https://github.com/MarshalX/tgcalls/tree/main/tgcalls/third_party/lib_tgcalls)\r\nin this repository. The main ideas of the changes is to improve \r\nthe sound quality and to add ability to work with third party audio device modules.\r\nIn addition, this binding implemented custom audio modules. These modules are allowing\r\ntransfer audio data directly from Python via bytes, transfer and control \r\nthe playback/recording of a file or a virtual system device.\r\n\r\n### How to build\r\n\r\nShort answer for Linux:\r\n```bash\r\ngit clone git@github.com:MarshalX/tgcalls.git --recursive\r\ncd tgcalls\r\n```\r\nFor x86_64:\r\n```bash\r\ndocker-compose up tgcalls_x86_64\r\n```\r\nFor AArch64 (ARM64):\r\n```bash\r\ndocker-compose up tgcalls_aarch64\r\n```\r\n\r\nPython wheels will be available in `dist` folder in root of `tgcalls`.\r\n\r\nMore info:\r\n- [Manylinux](build/manylinux/dev).\r\n- [Ubuntu](build/ubuntu).\r\n- [macOS](build/macos).\r\n- [Windows](build/windows).\r\n\r\nAlso, you can investigate into [manylinux GitHub Actions builds](build/manylinux).\r\n\r\n### Documentation\r\n\r\nTemporarily, instead of documentation, you can use [an example](pytgcalls/pytgcalls)\r\nalong with MTProto.\r\n\r\n<hr>\r\n<p align=\"center\">\r\n    <a href=\"https://github.com/MarshalX/tgcalls\">\r\n        <img src=\"https://github.com/MarshalX/tgcalls/raw/main/.github/images/pytgcalls.png\" alt=\"pytgcalls\">\r\n    </a>\r\n    <br>\r\n    <a href=\"https://tgcalls.org\">\r\n        Documentation\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://pypi.org/project/pytgcalls/\">\r\n        PyPi\r\n    </a>\r\n    \u2022\r\n    <a href=\"https://github.com/MarshalX/tgcalls/tree/main/pytgcalls\">\r\n        Sources\r\n    </a>\r\n</p>\r\n\r\n## pytgcalls \r\n\r\nThis project is implementation of using [tgcalls](#tgcalls) \r\nPython binding together with [MTProto](https://core.telegram.org/mtproto).\r\nBy default, this library are supports [Fipper](https://github.com/pyrogram/pyrogram)\r\nand [Telethon](https://github.com/LonamiWebs/Telethon) clients for working \r\nwith Telegram Mobile Protocol. \r\nYou can write your own implementation of abstract class to work with other libraries.\r\n\r\n### Learning by example\r\n\r\nVisit [this page](https://github.com/MarshalX/tgcalls/tree/main/examples) to discover the official examples.\r\n\r\n### Documentation\r\n\r\n`pytgcalls`'s documentation lives at [tgcalls.org](https://tgcalls.org).\r\n\r\n### Audio file formats\r\n\r\nRAW files are now used. You will have to convert to this format yourself\r\nusing ffmpeg. The example how to transcode files from a code is available [here](https://github.com/MarshalX/tgcalls/blob/e0b2d667728cc92cc0da437b9c85bcc909e4ac9c/examples/player_as_smart_plugin.py#L41).\r\n\r\nFrom mp3 to raw (to play in voice chat):\r\n```\r\nffmpeg -i input.mp3 -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw\r\n```\r\n\r\nFrom raw to mp3 (files with recordings):\r\n```\r\nffmpeg -f s16le -ac 2 -ar 48000 -acodec pcm_s16le -i output.raw clear_output.mp3\r\n```\r\n\r\nFor playout live stream you can use this one:\r\n```\r\nffmpeg -y -i http://stream2.cnmns.net/hope-mp3 -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw\r\n```\r\n\r\nFor YouTube videos and live streams you can use youtube-dl:\r\n```\r\nffmpeg -i \"$(youtube-dl -x -g \"https://youtu.be/xhXq9BNndhw\")\" -f s16le -ac 2 -ar 48000 -acodec pcm_s16le input.raw\r\n```\r\n\r\nAnd set input.raw as input filename.\r\n\r\n<hr>\r\n\r\n### Getting help\r\n\r\nYou can get help in several ways:\r\n- We have a community of developers helping each other in our \r\n[Telegram group](https://t.me/tgcallschat).\r\n- Report bugs, request new features or ask questions by creating \r\n[an issue](https://github.com/MarshalX/tgcalls/issues/new) or \r\n[a discussion](https://github.com/MarshalX/tgcalls/discussions/new).\r\n\r\n### Contributing\r\n\r\nContributions of all sizes are welcome.\r\n\r\n### Special thanks to\r\n\r\n- [@FrayxRulez](https://github.com/FrayxRulez) for amazing code of [Unigram](https://github.com/UnigramDev/Unigram).\r\n- [@john-preston](https://github.com/john-preston) for [Telegram Desktop](https://github.com/telegramdesktop/tdesktop) and [tgcalls](https://github.com/TelegramMessenger/tgcalls).\r\n- [@bakatrouble](https://github.com/bakatrouble/) for help and inspiration by [pytgvoip](https://github.com/bakatrouble/pytgvoip).\r\n- [@delivrance](https://github.com/delivrance) for [Fipper](https://github.com/pyrogram/pyrogram).\r\n- [@Lonami](https://github.com/Lonami) for [Telethon](https://github.com/LonamiWebs/Telethon).\r\n\r\n### License\r\n\r\nYou may copy, distribute and modify the software provided that modifications\r\nare described and licensed for free under [LGPL-3](https://www.gnu.org/licenses/lgpl-3.0.html).\r\nDerivatives works (including modifications or anything statically\r\nlinked to the library) can only be redistributed under LGPL-3, but\r\napplications that use the library don't have to be.\r\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "a Python binding for tgcalls C++ library",
    "version": "1.0.0.dev5",
    "project_urls": {
        "Author": "https://github.com/MarshalX",
        "Homepage": "https://github.com/AyiinXd/tgcalls",
        "Telegram Channel": "https://t.me/tgcallslib",
        "Telegram Chat": "https://t.me/tgcallschat"
    },
    "split_keywords": [
        "python",
        "library",
        "telegram",
        "async",
        "asynchronous",
        "webrtc",
        "lib",
        "voice-chat",
        "voip",
        "group-chat",
        "video-call",
        "calls",
        "fipper",
        "telethon",
        "pytgcalls",
        "tgcalls"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "768f8a02ede2e2aa9d561d221b052fd737b7f463ee1feb92d56f9850d7ad30b2",
                "md5": "55fd2777713df16fbbd58a7ea4fd5be1",
                "sha256": "914a6f679f2a117e8a792d3e29012d85ef7344a5022e61b62bc1990455ecee8f"
            },
            "downloads": -1,
            "filename": "tg-music-1.0.0.dev5.tar.gz",
            "has_sig": false,
            "md5_digest": "55fd2777713df16fbbd58a7ea4fd5be1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.7",
            "size": 11035,
            "upload_time": "2023-05-20T07:55:05",
            "upload_time_iso_8601": "2023-05-20T07:55:05.364992Z",
            "url": "https://files.pythonhosted.org/packages/76/8f/8a02ede2e2aa9d561d221b052fd737b7f463ee1feb92d56f9850d7ad30b2/tg-music-1.0.0.dev5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-20 07:55:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AyiinXd",
    "github_project": "tgcalls",
    "github_not_found": true,
    "lcname": "tg-music"
}
        
Elapsed time: 0.07211s