Updater for PGCG (Paradox Game Converters Group) converters written in Python.

Overview

Updater

Updater for PGCG (Paradox Game Converters Group) converters written in Python.

Needs to be put inside an "Updater" directory in the root converter directory.

Takes two parameters:

  1. URL of converter release .zip to download, for example "https://github.com/ParadoxGameConverters/ImperatorToCK3/releases/download/1.2.3/ImperatorToCK3.zip"
  2. Name of converter backend folder, for example "ImperatorToCK3"

Usage: ./Updater/updater.exe "https://github.com/ParadoxGameConverters/ImperatorToCK3/releases/download/1.2.3/ImperatorToCK3.zip" "ImperatorToCK3"

Comments
  • Bump setuptools from 60.5.0 to 65.5.1

    Bump setuptools from 60.5.0 to 65.5.1

    Bumps setuptools from 60.5.0 to 65.5.1.

    Release notes

    Sourced from setuptools's releases.

    v65.5.1

    No release notes provided.

    v65.5.0

    No release notes provided.

    v65.4.1

    No release notes provided.

    v65.4.0

    No release notes provided.

    v65.3.0

    No release notes provided.

    v65.2.0

    No release notes provided.

    v65.1.1

    No release notes provided.

    v65.1.0

    No release notes provided.

    v65.0.2

    No release notes provided.

    v65.0.1

    No release notes provided.

    v65.0.0

    No release notes provided.

    v64.0.3

    No release notes provided.

    v64.0.2

    No release notes provided.

    v64.0.1

    No release notes provided.

    v64.0.0

    No release notes provided.

    v63.4.3

    No release notes provided.

    v63.4.2

    No release notes provided.

    ... (truncated)

    Changelog

    Sourced from setuptools's changelog.

    v65.5.1

    Misc ^^^^

    • #3638: Drop a test dependency on the mock package, always use :external+python:py:mod:unittest.mock -- by :user:hroncok
    • #3659: Fixed REDoS vector in package_index.

    v65.5.0

    Changes ^^^^^^^

    • #3624: Fixed editable install for multi-module/no-package src-layout projects.
    • #3626: Minor refactorings to support distutils using stdlib logging module.

    Documentation changes ^^^^^^^^^^^^^^^^^^^^^

    • #3419: Updated the example version numbers to be compliant with PEP-440 on the "Specifying Your Project’s Version" page of the user guide.

    Misc ^^^^

    • #3569: Improved information about conflicting entries in the current working directory and editable install (in documentation and as an informational warning).
    • #3576: Updated version of validate_pyproject.

    v65.4.1

    Misc ^^^^

    • #3613: Fixed encoding errors in expand.StaticModule when system default encoding doesn't match expectations for source files.
    • #3617: Merge with pypa/distutils@6852b20 including fix for pypa/distutils#181.

    v65.4.0

    Changes ^^^^^^^

    v65.3.0

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies python 
    opened by dependabot[bot] 0
  • Bump pyinstaller from 5.6.2 to 5.7.0

    Bump pyinstaller from 5.6.2 to 5.7.0

    Bumps pyinstaller from 5.6.2 to 5.7.0.

    Release notes

    Sourced from pyinstaller's releases.

    v5.7.0

    Please see the v5.7.0 section of the changelog for a list of the changes since v5.6.2.

    Changelog

    Sourced from pyinstaller's changelog.

    5.7.0 (2022-12-04)

    Features

    
    * Add the package's location and exact interpreter path to the error message
      for
      the check for obsolete and PyInstaller-incompatible standard library
      back-port
      packages (``enum34`` and ``typing``). (:issue:`7221`)
    * Allow controlling the build log level (:option:`--log-level`) via a
      ``PYI_LOG_LEVEL`` environment variable. (:issue:`7235`)
    * Support building native ARM applications for Windows. If PyInstaller is ran
      on
      an ARM machine with an ARM build of Python, it will prodice an ARM
      application. (:issue:`7257`)
    

    Bugfix

    
    * (Anaconda) Fix the ``PyInstaller.utils.hooks.conda.collect_dynamic_libs``
      hook utility function to collect only dynamic libraries, by introducing
      an additional type check (to exclude directories and symbolic links to
      directories) and additional suffix check (to include only files whose
      name matches the following patterns: ``*.dll``, ``*.dylib``, ``*.so``,
      and ``*.so.*``). (:issue:`7248`)
    * (Anaconda) Fix the problem with Anaconda python 3.10 on linux and macOS,
      where all content of the environment's ``lib`` directory would end up
      collected as data  due to additional symbolic link pointing from
      ``python3.1``
      to ``python3.10``. (:issue:`7248`)
    * (GNU/Linux) Fixes an issue with gi shared libraries not being packaged if
      they don't
      have version suffix and are in a special location set by ``LD_LIBRARY_PATH``
      instead of
      a typical library path. (:issue:`7278`)
    * (Windows) Fix the problem with ``windowed`` frozen application being unable
      to spawn interactive command prompt console via ``subprocess`` module due
      to interference of the ``subprocess`` runtime hook with stream handles.
      (:issue:`7118`)
    * (Windows) In ``windowed``/``noconsole`` mode, stop setting ``sys.stdout``
      and ``sys.stderr`` to custom ``NullWriter`` object, and instead leave
      them at ``None``. This matches the behavior of windowed python interpreter
      (``pythonw.exe``) and prevents interoperability issues with code that
      (rightfully) expects the streams to be either ``None`` or objects that
      are fully compatible with ``io.IOBase``. (:issue:`3503`)
    * Ensure that ``PySide6.support.deprecated`` module is collected for
      ``PySide6`` 6.4.0 and later in order to enable continued support for
    </tr></table> 
    </code></pre>
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    

    <ul> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/b8ba192e05705b217c8e2a217d51252dfb0b87c9"><code>b8ba192</code></a> Release v5.7.0. [skip ci]</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/25b05b6a0ab32d4d0d5d118558418fd13f699073"><code>25b05b6</code></a> isolated: introduce time-out in the wait for the child subprocess to exit</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/2bfd2f2fcd8e049e5be15c21f1e0090cccc1da48"><code>2bfd2f2</code></a> hooks: django: remove static command list override in run-time hook (<a href="https://github-redirect.dependabot.com/pyinstaller/pyinstaller/issues/7259">#7259</a>)</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/17b0e2955602b686963c92aa7f32f438356a2fdb"><code>17b0e29</code></a> hooks: matplotlib: add log messages for backend detection via mpl.use()</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/287956f2bf467fa469947103edc2399240bdea0d"><code>287956f</code></a> hooks: robustify importlib_resources hook</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/8f25b42ef88b77dd6bba1520892369d53317cc9a"><code>8f25b42</code></a> ci: switch linux runners from ubuntu-latest to ubuntu-20.04</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/7e6ec703c4a9d0ce3c858fd6cc824d9f2a676544"><code>7e6ec70</code></a> setup.py: prevent implicit building of python eggs</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/a743d2c26ece82d18858c1d3bd8bf0fab6f7704f"><code>a743d2c</code></a> setup.cfg: use license_files instead of deprecated license_file</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/28cc43b0edc36012e34b4b44758f376c2c1efefa"><code>28cc43b</code></a> docs: update installation instructions</li> <li><a href="https://github.com/pyinstaller/pyinstaller/commit/9461130e3eefafebd7fc054a1766e55f7dd13f2b"><code>9461130</code></a> building: remove spurious attempt to read distribution's top_level.txt</li> <li>Additional commits viewable in <a href="https://github.com/pyinstaller/pyinstaller/compare/v5.6.2...v5.7.0">compare view</a></li> </ul> </details>

    <br />

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies python 
    opened by dependabot[bot] 0
  • Bump urllib3 from 1.26.12 to 1.26.13

    Bump urllib3 from 1.26.12 to 1.26.13

    Bumps urllib3 from 1.26.12 to 1.26.13.

    Release notes

    Sourced from urllib3's releases.

    1.26.13

    • Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods.
    • Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid.
    • Fixed a deprecation warning when using cryptography v39.0.0.
    • Removed the <4 in the Requires-Python packaging metadata field.
    Changelog

    Sourced from urllib3's changelog.

    1.26.13 (2022-11-23)

    • Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods.
    • Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid.
    • Fixed a deprecation warning when using cryptography v39.0.0.
    • Removed the <4 in the Requires-Python packaging metadata field.
    Commits
    • 64b7f79 Release 1.26.13
    • 977b843 Update publish workflow on 1.26.x to match main
    • 64a3767 Bump cryptography to fix docs build
    • 455960b Support cryptography 39
    • 955da4d [1.26] Strip leading zeros from ports
    • b8c5d45 [1.26] Deprecate HTTPResponse.getheaders() and .getheader() methods
    • 8b8e4b5 Temporary fix for SLSA generator
    • cc9b0dc [1.26] Fix logo URL in README
    • eb47444 [1.26] Fix CI by switching to macOS 11
    • 34d7348 Remove "<4" upper bound from python_requires
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies python 
    opened by dependabot[bot] 0
  • Bump pyinstaller from 5.6.1 to 5.6.2

    Bump pyinstaller from 5.6.1 to 5.6.2

    Bumps pyinstaller from 5.6.1 to 5.6.2.

    Release notes

    Sourced from pyinstaller's releases.

    v5.6.2

    Please see the v5.6.2 section of the changelog for a list of the changes since v5.6.1.

    Changelog

    Sourced from pyinstaller's changelog.

    5.6.2 (2022-10-31)

    Bugfix

    
    * (Linux, macOS) Fix the regression in shared library collection, where
      the shared library would end up collected under its fully-versioned
      .so name (e.g., ``libsomething.so.1.2.3``) instead of its originally
      referenced name (e.g., ``libsomething.so.1``) due to accidental
      symbolic link resolution. (:issue:`7189`)
    
    Commits
    • 09b8a1e Release v5.6.2. [skip ci]
    • 93446ff Add --log-level to spec-file command-line options.
    • 17c9d6b depend: do not resolve symlinks during dylib parent dir preservation
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies python 
    opened by dependabot[bot] 0
  • Bump pyinstaller from 5.5 to 5.6.1

    Bump pyinstaller from 5.5 to 5.6.1

    Bumps pyinstaller from 5.5 to 5.6.1.

    Release notes

    Sourced from pyinstaller's releases.

    v5.6.1

    Please see the v5.6.1 section of the changelog for a list of the changes since v5.6.

    v5.6

    Please see the v5.6 section of the changelog for a list of the changes since v5.5.

    Changelog

    Sourced from pyinstaller's changelog.

    5.6.1 (2022-10-25)

    Bugfix

    
    * (macOS) Fix regression in macOS app bundle signing caused by a typo made
      in :issue:`7180`. (:issue:`7184`)
    

    5.6 (2022-10-23)

    Features

    • Add official support for Python 3.11. (Note that PyInstaller v5.5 is also expected to work but has only been tested with a pre-release of Python 3.11.) (:issue:6783)
    • Implement a new hook utility function, :func:~PyInstaller.utils.hooks.collect_delvewheel_libs_directory, intended for dealing with external shared library in delvewheel-enabled PyPI wheels for Windows. (:issue:7170)

    Bugfix

    
    * (macOS) Fix OpenCV (``cv2``) loader error in generated macOS .app
      bundles, caused by the relocation of package's source .py files.
      (:issue:`7180`)
    * (Windows) Improve compatibility with ``scipy`` 1.9.2, whose Windows wheels
      switched to ``delvewheel``, and therefore have shared libraries located in
      external .libs directory. (:issue:`7168`)
    
    • (Windows) Limit the DLL parent path preservation behavior from :issue:7028 to files collected from site-packages directories (as returned by :func:site.getsitepackages and :func:site.getusersitepackages) instead of all paths in :data:sys.path, to avoid unintended behavior in corner cases, such as :data:sys.path containing the drive root or user's home directory. (:issue:7155)

    • Fix compatibility with PySide6 6.4.0, where the deprecated Qml2ImportsPath location key is not available anymore; use the new QmlImportsPath key when it is available. (:issue:7164)

    • Prevent PyInstaller runtime hook for setuptools from attempting to override distutils with setuptools-provided version when setuptools is collected and its version is lower than 60.0. This both mimics the unfrozen behavior and prevents errors on versions </tr></table>

... (truncated)

Commits
  • 780c08d Release v5.6.1. [skip ci]
  • 3b07670 tests: add basic macOS bundle signing tests
  • 39467f3 building: BUNDLE: add an option for codesign error to be fatal
  • 9a6820c Fix symlinking of data files from Resources to MacOS
  • 87578de Release v5.6. [skip ci]
  • 7b39785 Tests: Requirements: Scheduled weekly dependency update for week 43 (#7182)
  • af2cd69 depend: DLL parent path preservation: work around for pywin32
  • 69b94c0 depend: limit DLL parent path preservation to site-packages
  • 46a5950 building: BUNDLE: exempt collected .py/.pyc files from relocation
  • 64f6f8b README; Add ".. code:: bash" to code-blocks to enable GItHub's copy to clipbo...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependencies python 
opened by dependabot[bot] 0
  • Bump pyinstaller from 5.4.1 to 5.5

    Bump pyinstaller from 5.4.1 to 5.5

    Bumps pyinstaller from 5.4.1 to 5.5.

    Release notes

    Sourced from pyinstaller's releases.

    v5.5

    Please see the v5.5 section of the changelog for a list of the changes since v5.4.1.

    Changelog

    Sourced from pyinstaller's changelog.

    5.5 (2022-10-08)

    Features

    
    * (Windows) Support embedding multiple icons in the executable. (:issue:`7103`)
    

    Bugfix

    
    * (Windows) Fix a regression introduced in PyInstaller 5.4 (:issue:`[#6925](https://github.com/pyinstaller/pyinstaller/issues/6925)`),
      where incorrect copy of ``python3.dll`` (and consequently an additional,
      incorrect copy of ``python3X.dll`` from the same directory) is collected
      when additional python installations are present in ``PATH``. (:issue:`7102`)
    * (Windows) Provide run-time override for ``ctypes.util.find_library`` that
      searches ``sys._MEIPASS`` in addition to directories specified in ``PATH``.
      (:issue:`7097`)
    * Fix the problem with ``pywin32`` DLLs not being found when importing
      ``pywin32`` top-level extension modules, caused by the DLL directory
      structure preservation behavior introduced in :issue:`7028`. Introduce
      a new bootstrap/loader module that adds the ``pywin32_system32``
      directory, if available, to both ``sys.path`` and the DLL search paths,
      in lieu of having to provide a runtime hook script for every single
      top-level extension module from ``pywin32``. (:issue:`7110`)
    

    Hooks

    
    * Fix an error raised by the ``matplotlib.backends`` hook when trying to
      specify the list of backends to collect via the hooks configuration.
      (:issue:`7091`)
    &lt;/code&gt;&lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;/details&gt;
    &lt;details&gt;
    &lt;summary&gt;Commits&lt;/summary&gt;
    
    &lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/df7e2fe41f19370e5670d5caffb159a120bb34fa&quot;&gt;&lt;code&gt;df7e2fe&lt;/code&gt;&lt;/a&gt; Release v5.5. [skip ci]&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/039a4c08be47e42a6a562ea14c53694112e727b9&quot;&gt;&lt;code&gt;039a4c0&lt;/code&gt;&lt;/a&gt; bootloader: waflib: cherry pick &amp;quot;c_config: add RISC-V generic detection&amp;quot;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/fc425b98fa49a1e7ceb341f876d6fc0471098159&quot;&gt;&lt;code&gt;fc425b9&lt;/code&gt;&lt;/a&gt; Tests: Requirements: Scheduled weekly dependency update for week 40 (&lt;a href=&quot;https://github-redirect.dependabot.com/pyinstaller/pyinstaller/issues/7124&quot;&gt;#7124&lt;/a&gt;)&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/b3087846a35a799d60b17c85cce480f42dcedb55&quot;&gt;&lt;code&gt;b308784&lt;/code&gt;&lt;/a&gt; building: prepend sys.base_prefix to DLL search paths on Windows&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/7b2b93a186de0d47b67eed0077d748c8feb6d190&quot;&gt;&lt;code&gt;7b2b93a&lt;/code&gt;&lt;/a&gt; hooks: clean up pywin32 runtime hooks&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/f400b4661e35ef0f7445cd4523b189798b2f6e5c&quot;&gt;&lt;code&gt;f400b46&lt;/code&gt;&lt;/a&gt; loader: add boostrap/loader module for pywin32&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/72d12b044c4c40d7c0db56f36b8064309b6d3d59&quot;&gt;&lt;code&gt;72d12b0&lt;/code&gt;&lt;/a&gt; tests: add basic import tests for pywin32 modules&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/27a5a6ba246d2a324d8bac2a5520ca4f6e0e3628&quot;&gt;&lt;code&gt;27a5a6b&lt;/code&gt;&lt;/a&gt; make --icon option repeatable (&lt;a href=&quot;https://github-redirect.dependabot.com/pyinstaller/pyinstaller/issues/7103&quot;&gt;#7103&lt;/a&gt;)&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/2b26b5b0ed6f84a01079733b683342cee1a0fb9c&quot;&gt;&lt;code&gt;2b26b5b&lt;/code&gt;&lt;/a&gt; GitHub Workflows security hardening (&lt;a href=&quot;https://github-redirect.dependabot.com/pyinstaller/pyinstaller/issues/7112&quot;&gt;#7112&lt;/a&gt;)&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/a8b27e380171101c78a7764064fd4ee35fd473e2&quot;&gt;&lt;code&gt;a8b27e3&lt;/code&gt;&lt;/a&gt; Tests: Requirements: Scheduled weekly dependency update for week 39 (&lt;a href=&quot;https://github-redirect.dependabot.com/pyinstaller/pyinstaller/issues/7110&quot;&gt;#7110&lt;/a&gt;)&lt;/li&gt;
    &lt;li&gt;Additional commits viewable in &lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/compare/v5.4.1...v5.5&quot;&gt;compare view&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/details&gt;
    
    &lt;br /&gt;
    </code></pre>
    
    
    [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pyinstaller&package-manager=pip&previous-version=5.4.1&new-version=5.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    
    
    </details>
    dependencies python 
    opened by dependabot[bot] 0
  • Bump actions/checkout from 2 to 3

    Bump actions/checkout from 2 to 3

    Bumps actions/checkout from 2 to 3.

    Release notes

    Sourced from actions/checkout's releases.

    v3.0.0

    • Updated to the node16 runtime by default
      • This requires a minimum Actions Runner version of v2.285.0 to run, which is by default available in GHES 3.4 or later.

    v2.4.2

    What's Changed

    Full Changelog: https://github.com/actions/checkout/compare/v2...v2.4.2

    v2.4.1

    • Fixed an issue where checkout failed to run in container jobs due to the new git setting safe.directory

    v2.4.0

    • Convert SSH URLs like org-<ORG_ID>@github.com: to https://github.com/ - pr

    v2.3.5

    Update dependencies

    v2.3.4

    v2.3.3

    v2.3.2

    Add Third Party License Information to Dist Files

    v2.3.1

    Fix default branch resolution for .wiki and when using SSH

    v2.3.0

    Fallback to the default branch

    v2.2.0

    Fetch all history for all tags and branches when fetch-depth=0

    v2.1.1

    Changes to support GHES (here and here)

    v2.1.0

    ... (truncated)

    Changelog

    Sourced from actions/checkout's changelog.

    Changelog

    v3.0.2

    v3.0.1

    v3.0.0

    v2.3.1

    v2.3.0

    v2.2.0

    v2.1.1

    • Changes to support GHES (here and here)

    v2.1.0

    v2.0.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 0
  • Bump pyinstaller from 5.3 to 5.4.1

    Bump pyinstaller from 5.3 to 5.4.1

    Bumps pyinstaller from 5.3 to 5.4.1.

    Release notes

    Sourced from pyinstaller's releases.

    v5.4.1

    Please see the v5.4.1 section of the changelog for a list of the changes since v5.4.

    v5.4

    Please see the v5.4 section of the changelog for a list of the changes since v5.3.

    Changelog

    Sourced from pyinstaller's changelog.

    5.4.1 (2022-09-11)

    Bugfix

    
    * (Windows) Fix run-time error raised by ``pyi_rth_win32comgenpy``, the
      run-time
      hook for ``win32com``. (:issue:`7079`)
    

    5.4 (2022-09-10)

    Features

    • (Windows) When collecting a DLL that was discovered via link-time dependency analysis of a collected binary/extension, attempt to preserve its parent directory structure instead of collecting it into application's top-level directory. This aims to preserve the parent directory structure of DLLs bundled with python packages in PyPI wheels, while the DLLs collected from system directories (as well as from Library\bin directory of the Anaconda's environment) are still collected into top-level application directory. (:issue:7028)
    • Add support for setuptools-provided distutils, available since setuptools >= 60.0. (:issue:7075)
    • Implement a generic file filtering decision function for use in hooks, based on the source filename and optional inclusion and exclusion pattern list (:func:PyInstaller.utils.hooks.include_or_exclude_file). (:issue:7040)
    • Rework the module exclusion mechanism. The excluded module entries, specified via excludedimports list in the hooks, are now used to suppress module imports from corresponding nodes during modulegraph construction, rather than to remove the nodes from the graph as a post-processing step. This should make the module exclusion more robust, but the main benefit is that we avoid running (potentially many and potentially costly) hooks for modules that would end up excluded anyway. (:issue:7066)

    Bugfix

    
    * (Windows) Attempt to extend DLL search paths with directories found in
      the `PATH` environment variable and by tracking calls to the
      `os.add_dll_directory` function during import of the packages in
      the isolated sub-process that performs the binary dependency scanning.
      (:issue:`6924`)
    * (Windows) Ensure that ANGLE DLLs (``libEGL.dll`` and ``libGLESv2.dll``)
    </tr></table> 
    

    ... (truncated)

    Commits
    • 36aa18a Release v5.4.1. [skip ci]
    • 40f40a7 hooks: fix error raised by pyi_rth_win32comgenpy
    • c44a0d4 Release v5.4. [skip ci]
    • bf2a4ad Added missing inline types for public api (#7068)
    • b80740e hooks: setuptools: avoid recursing into vendored pyparsing.diagram
    • f93dd3f hooks: fix the message in distutils pre-module-find hook
    • 3be4a49 ci: lift the ban on setuptools-provided distutils
    • 1aa357a tests: add basic setuptools import test
    • c8e18bf hooks: add support for setuptools >= 60.0
    • 3bba7d3 loader: FrozenImporter: give precedence to modified module paths
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump urllib3 from 1.26.11 to 1.26.12

    Bump urllib3 from 1.26.11 to 1.26.12

    Bumps urllib3 from 1.26.11 to 1.26.12.

    Release notes

    Sourced from urllib3's releases.

    1.26.12

    • Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue for justification and info on how to migrate.
    Changelog

    Sourced from urllib3's changelog.

    1.26.12 (2022-08-22)

    • Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue <https://github.com/urllib3/urllib3/issues/2680>_ for justification and info on how to migrate.
    Commits
    • a5b29ac Add outputs.hashes to build action
    • a0b22f8 Release 1.26.12
    • 13f1117 [1.26] Add SLSA generic generator to publish workflow
    • f95b964 Add deprecation warnings for pyOpenSSL and the [secure] extra
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Bump pyinstaller from 5.2 to 5.3

    Bump pyinstaller from 5.2 to 5.3

    Bumps pyinstaller from 5.2 to 5.3.

    Release notes

    Sourced from pyinstaller's releases.

    v5.3

    Please see the v5.3 section of the changelog for a list of the changes since v5.2.

    Changelog

    Sourced from pyinstaller's changelog.

    5.3 (2022-07-30)

    Features

    
    * (Windows) Implement handling of console control signals in the ``onefile``
      bootloader parent process. The implemented handler suppresses the
      ``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` to let the child process
      deal with them as they see it fit. In the case of ``CTRL_CLOSE_EVENT``,
      ``CTRL_LOGOFF_EVENT``, or ``CTRL_SHUTDOWN_EVENT``, the handler attempts
      to delay the termination of the parent process in order to buy time for
      the child process to exit and for the main thread of the parent process
      to clean up the temporary directory before exiting itself. This should
      prevent the temporary directory of a ``onefile`` frozen application
      being left behind when the user closes the console window. (:issue:`6591`)
    * Implement a mechanism for controlling the collection mode of modules and
      packages, with granularity ranging from top-level packages to individual
      sub-modules. Therefore, the hooks can now specify whether the hooked
      package should be collected as byte-compiled .pyc modules into embedded
      PYZ archive (the default behavior), or as source .py files collected as
      external data files (without corresponding modules in the PYZ archive).
      (:issue:`6945`)
    

    Bugfix

    
    * (non-Windows) Avoid generating debug messages in POSIX signal handlers,
      as the functions involved are generally not signal-safe. Should also
      fix the endless spam of ``SIGPIPE`` that ocurrs under certain conditions
      when shutting down the frozen application on linux. (:issue:`5270`)
    * (non-Windows) If the child process of a ``onefile`` frozen application
      is terminated by a signal, delay re-raising of the signal in the parent
      process until after the clean up has been performed. This prevents
      ``onefile`` frozen applications from leaving behind their unpacked
      temporary directories when either the parent or the child process is
      sent the ``SIGTERM`` signal. (:issue:`2379`)
    * When building with ``noarchive=True`` (e.g., ``--debug noarchive`` or
      ``--debug all``), PyInstaller no longer pollutes user-writable source
      locations with its ``.pyc`` or ``.pyo`` files written next to the
      corresponding source files. (:issue:`6591`)
    * When building with ``noarchive=True`` (e.g., ``--debug noarchive`` or
      ``--debug all``), the source paths are now stripped from the collected
      .pyc modules, same as if PYZ archive was used. (:issue:`6591`)
    

    Hooks

    
    &amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt; 
    &lt;/code&gt;&lt;/pre&gt;
    &lt;/blockquote&gt;
    &lt;p&gt;... (truncated)&lt;/p&gt;
    &lt;/details&gt;
    &lt;details&gt;
    &lt;summary&gt;Commits&lt;/summary&gt;
    
    &lt;ul&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/fbf7948be85177dd44b41217e9f039e1d176de6b&quot;&gt;&lt;code&gt;fbf7948&lt;/code&gt;&lt;/a&gt; Release 5.3.&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/ba38ba4ba90ae726129e15240f25c27ddc29bf29&quot;&gt;&lt;code&gt;ba38ba4&lt;/code&gt;&lt;/a&gt; tests: put pyi_builder's clean-up under environment variable switch&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/acf10bb7c6c31cef8abee63fa73adbed926de003&quot;&gt;&lt;code&gt;acf10bb&lt;/code&gt;&lt;/a&gt; tests: have pyi_builder fixure clean up directories on Windows&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/2fa0497783aab41800620961f166628e2b915ae8&quot;&gt;&lt;code&gt;2fa0497&lt;/code&gt;&lt;/a&gt; tests: modulegraph unit tests: do not use distutils as test package&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/6ccba969db1fe7fa43c0bbd0bdb224c7775c3e70&quot;&gt;&lt;code&gt;6ccba96&lt;/code&gt;&lt;/a&gt; tests: test_import_pep302: do not use distutils as test package&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/dfdf7f9db172ce938fce3bd78c833b44f07e2e81&quot;&gt;&lt;code&gt;dfdf7f9&lt;/code&gt;&lt;/a&gt; tests: test_apple_event_handling_carbon: ensure unique app path&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/5b9e61fca052e59fdb2533f6406fa457a65cb0ce&quot;&gt;&lt;code&gt;5b9e61f&lt;/code&gt;&lt;/a&gt; tests: test_pkg_resources_provider: include uuid in generated egg path&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/7875d7684c6ddad90e91af9141229083ebb1297f&quot;&gt;&lt;code&gt;7875d76&lt;/code&gt;&lt;/a&gt; compat: remove obsolete compatibility definitions&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/6cb49d9050e1b7a5142f7b9142f5cc7bde31ee31&quot;&gt;&lt;code&gt;6cb49d9&lt;/code&gt;&lt;/a&gt; loader: remove delayed imports from pymod02_importers&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/commit/c115bce4dd1eb43c3e1ad52ca6743ed6fd3f0a70&quot;&gt;&lt;code&gt;c115bce&lt;/code&gt;&lt;/a&gt; loader: remove pyimod01_os_path and replace its use with os.path&lt;/li&gt;
    &lt;li&gt;Additional commits viewable in &lt;a href=&quot;https://github.com/pyinstaller/pyinstaller/compare/v5.2...v5.3&quot;&gt;compare view&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/details&gt;
    
    &lt;br /&gt;
    </code></pre>
    
    
    [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pyinstaller&package-manager=pip&previous-version=5.2&new-version=5.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    
    
    </details>
    dependencies 
    opened by dependabot[bot] 0
  • Bump urllib3 from 1.26.10 to 1.26.11

    Bump urllib3 from 1.26.10 to 1.26.11

    Bumps urllib3 from 1.26.10 to 1.26.11.

    Release notes

    Sourced from urllib3's releases.

    1.26.11

    If you or your organization rely on urllib3 consider supporting us via GitHub Sponsors.

    :warning: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap

    • Fixed an issue where reading more than 2 GiB in a call to HTTPResponse.read would raise an OverflowError on Python 3.9 and earlier.
    Changelog

    Sourced from urllib3's changelog.

    1.26.11 (2022-07-25)

    • Fixed an issue where reading more than 2 GiB in a call to HTTPResponse.read would raise an OverflowError on Python 3.9 and earlier.
    Commits
    • aa3def7 Release 1.26.11
    • 6f93b8f Fix OverflowError when TLS is used on some Python versions
    • 0a5f34d Set GHA token permissions to be read-only
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies 
    opened by dependabot[bot] 0
  • Owner
    Paradox Game Converters
    Paradox Game Converters
    Lumberjack-bot - A game bot written for Lumberjack game at Telegram platform

    This is a game bot written for Lumberjack game at Telegram platform. It is devel

    Uğur Uysal 6 Apr 7, 2022
    Telegram Group Manager Bot + Userbot Written In Python Using Pyrogram.

    Telegram Group Manager Bot + Userbot Written In Python Using PyrogramTelegram Group Manager Bot + Userbot Written In Python Using Pyrogram

    null 1 Nov 11, 2021
    HinamiRobot - Telegram Group Manager Bot Written In Python Using Pyrogram

    ✨ HINAMI CHAN ✨ Telegram Group Manager Bot Written In Python Using Pyrogram. Rea

    DARK LEGEND088 2 Jan 27, 2022
    A group management bot written in python3 using the python-telegram-bot library.

    Chika Fujiwara A modular telegram Python bot running on python3 with an sqlalchemy database. Originally a Marie fork, Chika was created for personal u

    Wahyusaputra 3 Feb 12, 2022
    Telegram Group Manager Bot Written In Python Using Pyrogram.

    ──「?????????? ????????????????」── Telegram Group Manager Bot Written In Python Using Pyrogram. Deploy To Heroku NOTE: I'm making this note to whoever

    Wahyusaputra 3 Feb 12, 2022
    Telegram Group Calls Streaming bot with some useful features, written in Python with Pyrogram and Py-Tgcalls. Supporting platforms like Youtube, Spotify, Resso, AppleMusic, Soundcloud and M3u8 Links.

    Yukki Music Bot Yukki Music Bot is a Powerful Telegram Music+Video Bot written in Python using Pyrogram and Py-Tgcalls by which you can stream songs,

    Team Yukki 996 Dec 28, 2022
    ❤️ DaisyX 2.0 ❤️ A Powerful, Smart And Simple Group Manager ... Written with AioGram , Pyrogram and Telethon...

    ❤️ DaisyX 2.0 ❤️ A Powerful, Smart And Simple Group Manager ... Written with AioGram , Pyrogram and Telethon... ⭐️ Thanks to everyone who starred Dais

    TeamOfDaisyX 44 Oct 6, 2022
    A Powerful, Smart And Advance Group Manager ... Written with AioGram , Pyrogram and Telethon...

    ❤️ Shadow ❤️ A Powerful, Smart And Advance Group Manager ... Written with AioGram , Pyrogram and Telethon... ⭐️ Thanks to everyone who starred Shadow,

    TeamShadow 17 Oct 21, 2022
    ⚡ Yuriko Robot ⚡ - A Powerful, Smart And Simple Group Manager Written with AioGram , Pyrogram and Telethon

    ⚡ Yuriko Robot ⚡ - A Powerful, Smart And Simple Group Manager Written with AioGram , Pyrogram and Telethon

    Øғғɪᴄɪᴀʟ Ⱡᴏɢ [₳ғᴋ] 1 Apr 1, 2022
    Guilherme Matheus 11 Sep 11, 2022
    MashaRobot : New Generation Telegram Group Manager Bot (🔸Fast 🔸Python🔸Pyrogram 🔸Telethon 🔸Mongo db )

    MashaRobot Me On Telegram ✨ MASHA ✨ This is just a demo bot.. Don't try to add to your group.. Create your own bot How To Host The easiest way to depl

    Mr Dark Prince 40 Oct 9, 2022
    Python SCript to scrape members from a selected Telegram group.

    A python script to scrape all the members in a telegram group anad save in a CSV file. REGESTRING Go to this link https://core.telegram.org/api/obtain

    Gurjeet Singh 7 Dec 1, 2022
    Python bot for send videos of a Youtube channel to a telegram group , channel or chat

    py_youtube_to_telegram Usage: If you want to install ytt and use it, run this command: sudo sh -c "$(curl -fsSL https://raw.githubusercontent.com/nima

    Nima Fanniasl 8 Nov 22, 2022
    A modular Telegram group management bot running with Python based on Pyrogram.

    A modular Telegram group management bot running with Python based on Pyrogram.

    Jefanya Efandchris 1 Nov 14, 2022
    Telegram Group Chat Statistics With Python

    Telegram Group Chat Statistics How to Run First add PYTHONPATH in repository root directory enviroment variable by running: export PYTHONPATH=${PWD}

    Sina Nazem 3 Apr 18, 2022
    GroupMenter : New Telegram Group Manager Bot🔸Fast 🔸Python🔸Pyrogram 🔸

    GroupMenter An PowerFull Group Manager Bot. Written In Pytelethon. Info • A modular Telegram Python bot running on python3. • Can be found on telegram

    Group Menter 24 Jun 28, 2022
    A Python script that exports users from one Telegram group to another using one or more concurrent user bots.

    ExportTelegramUsers A Python script that exports users from one Telegram group to another using one or more concurrent user bots. Make sure to set all

    Fasil Minale 17 Jun 26, 2022
    Optimus Prime - A modular Telegram group management and drive clone bot running on Python with sqlalchemy database

    Optimus Prime Bot . ?? A modular Telegram group management and drive clone bot r

    null 9 Jun 1, 2022
    “ Hey there 👋 I'm Daisy „ AI based Advanced Group Management Bot Suit For All Your Needs ❤️.. Source Code of @Daisyxbot

    Project still under heavy development Everything will be changed in the release “ Hey there ?? I'm Daisy „ AI based Advanced telegram Group Management

    TeamDaisyX 43 Nov 12, 2022