Skip to main content
Files added late

8 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

Slixmpp is an MIT licensed XMPP library for Python 3.7+. It is a fork of SleekXMPP.

Slixmpp’s goals is to only rewrite the core of the library (the low level socket handling, the timers, the events dispatching) in order to remove all threads.

Building

Slixmpp uses rust to improve performance on critical modules. Binaries may already be available for your platform in the form of wheels provided on PyPI or packages for your linux distribution. If that is not the case, cargo must be available in your path to build the extension module.

Documentation and Testing

Documentation can be found both inline in the code, and as a Sphinx project in /docs. To generate the Sphinx documentation, follow the commands below. The HTML output will be in docs/_build/html:

cd docs
make html
open _build/html/index.html

To run the test suite for Slixmpp:

python run_tests.py

Integration tests require the following environment variables to be set::

$CI_ACCOUNT1
$CI_ACCOUNT1_PASSWORD
$CI_ACCOUNT2
$CI_ACCOUNT2_PASSWORD
$CI_MUC_SERVER

where the account variables are JIDs of valid, existing accounts, and the passwords are the account passwords. The MUC server must allow room creation from those JIDs.

To run the integration test suite for Slixmpp:

python run_integration_tests.py

The Slixmpp Boilerplate

Projects using Slixmpp tend to follow a basic pattern for setting up client/component connections and configuration. Here is the gist of the boilerplate needed for a Slixmpp based project. See the documentation or examples directory for more detailed archetypes for Slixmpp projects:

import asyncio
import logging

from slixmpp import ClientXMPP
from slixmpp.exceptions import IqError, IqTimeout


class EchoBot(ClientXMPP):

    def __init__(self, jid, password):
        ClientXMPP.__init__(self, jid, password)

        self.add_event_handler("session_start", self.session_start)
        self.add_event_handler("message", self.message)

        # If you wanted more functionality, here's how to register plugins:
        # self.register_plugin('xep_0030') # Service Discovery
        # self.register_plugin('xep_0199') # XMPP Ping

        # Here's how to access plugins once you've registered them:
        # self['xep_0030'].add_feature('echo_demo')

        # If you are working with an OpenFire server, you will
        # need to use a different SSL version:
        # import ssl
        # self.ssl_version = ssl.PROTOCOL_SSLv3

    def session_start(self, event):
        self.send_presence()
        self.get_roster()

        # Most get_*/set_* methods from plugins use Iq stanzas, which
        # can generate IqError and IqTimeout exceptions
        #
        # try:
        #     self.get_roster()
        # except IqError as err:
        #     logging.error('There was an error getting the roster')
        #     logging.error(err.iq['error']['condition'])
        #     self.disconnect()
        # except IqTimeout:
        #     logging.error('Server is taking too long to respond')
        #     self.disconnect()

    def message(self, msg):
        if msg['type'] in ('chat', 'normal'):
            msg.reply("Thanks for sending\n%(body)s" % msg).send()


if __name__ == '__main__':
    # Ideally use optparse or argparse to get JID,
    # password, and log level.

    logging.basicConfig(level=logging.DEBUG,
                        format='%(levelname)-8s %(message)s')

    xmpp = EchoBot('somejid@example.com', 'use_getpass')
    xmpp.connect()
    asyncio.get_event_loop().run_forever()

Slixmpp Credits

Maintainers:
Contributors:

Credits (SleekXMPP)

Main Author: Nathan Fritz

fritzy@netflint.net, @fritzy

Nathan is also the author of XMPPHP and Seesmic-AS3-XMPP, and a former member of the XMPP Council.

Co-Author: Lance Stout

lancestout@gmail.com, @lancestout

Contributors:

Release files for slixmpp_multiplatform 1.12.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

8 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Built distributions (wheels)

Table of built distributions (wheels) for slixmpp_multiplatform 1.12.0
File
slixmpp_multiplatform-1.12.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
slixmpp_multiplatform-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details

Total release size: 22.2 MB

Release files / slixmpp_multiplatform-1.12.0-cp314-cp314-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp314-cp314-win_amd64.whl
Size 835.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
730f0d34b237c022dc42a8cb6ee162566a87ef05e651876ca5cfc490bda64649
BLAKE2b-256 checksum
How to use checksums
950e02768695d8d14fdb4753e7422a8beb50ece7a1dcc801a7a630c200d7e691
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 952.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
24edaf2565878049a8b6a9fb7319fa6f6d1efd39814ab415c7ae5b03e0ed5e36
BLAKE2b-256 checksum
How to use checksums
66361d407d862610e3c2012ec1c8bddf740580b7569c32f735515860f3740f3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_11_0_arm64.whl
Size 946.9 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c5534a5ba58504d533654be2bbad89755aa1851630e8185cafbd538cd252130b
BLAKE2b-256 checksum
How to use checksums
72ddbe61d6e7b5ac8a34016ae3e0c7239d8a29be62b304f02760a6bb111a0ca1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_10_12_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 948.9 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d65e19e7b9d1d0c27d18223ea4aefe070d9d68b0a8666e756a2ddabceec3fcde
BLAKE2b-256 checksum
How to use checksums
07261c2925a06d1b7dbaf5dd515419ad9aa25130a8ba55879dc8729ce3e941ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp313-cp313-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp313-cp313-win_amd64.whl
Size 835.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
05f8a1204286a2d66ef9e24e8ce8bab610c14b057dbd524b2a62990fe6ce8e87
BLAKE2b-256 checksum
How to use checksums
10c1b66de61782c18c4ad080a1e0fa6e2dc70c3053ce49e289c1a2eddb8ea38e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 952.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c0737291c030d7d3c3f3c878846b036d62516c1b569c8946569faf509343ada3
BLAKE2b-256 checksum
How to use checksums
16d8a2b452dbe9a3f0d63efe52a5db0c476f6a40bce1f0209918ab8948125afe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_11_0_arm64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_11_0_arm64.whl
Size 946.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f47b21ed6fc79977e903b0b1558958801a408f2f81366d4edd67d151950e10ee
BLAKE2b-256 checksum
How to use checksums
f3131cc5ea074baf2594041680329a2b7de8047a72e4e9c33f2afa2e8e1d54cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_10_12_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL slixmpp_multiplatform-1.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 948.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
507f1a749e523e6b3a09be1636eb27329a9d003614f39045db78e1cc39baf130
BLAKE2b-256 checksum
How to use checksums
e1a353392b389c4ebbfa318b49cb97ed646c56abe08d9af1da521341d4af6588
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.9.28 {"installer":{"name":"uv","version":"0.9.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / slixmpp_multiplatform-1.12.0-cp312-cp312-win_amd64.whl

Download URL slixmpp_multiplatform-1.12.0-cp312-cp312-win_amd64.whl
Size 825.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7ce34db623f751a4addf55be0cca023447fbeb3725c2d64b3dc8729e4fd9c34d
BLAKE2b-256 checksum
How to use checksums
306a06b9d533f2735490a8e2df1704a560dabc0f531e9ca3eaede33714532701
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 991.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
037991123a6c12d807e141398d0fb17757fa49aeb1ff6340b31814a6d6ad4eda
BLAKE2b-256 checksum
How to use checksums
88877e91feafac9e1b4fd5efe8d8616b59091f227a9e24a751df1551c3d72833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_11_0_arm64.whl
Size 940.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
190d42f05a98171025c341c8c6f999137c21eb32a8131b8024ad73d90624ada6
BLAKE2b-256 checksum
How to use checksums
82f43e50832bf01c262b837be9e0cd35714b113990f8671b728adc65d137759f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 947.2 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
06fc5ef61723c333eb0cbbd86016d014b10f4ea1cebc095a1941a5f076e9a8f7
BLAKE2b-256 checksum
How to use checksums
c31281e918066a4e6e2afe3cc9f9512f6be6121325955f5d3355e2d7cbe70f61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp311-cp311-win_amd64.whl

Download URL slixmpp_multiplatform-1.12.0-cp311-cp311-win_amd64.whl
Size 825.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8c81c758db55a02eb16a472d59f0d83b261d41f8e179e288b5a9face76382bfa
BLAKE2b-256 checksum
How to use checksums
66f30f82078809cc9aca672a0ab8d2c08d4eeebd0312ec7ae3f91dd20ad8e339
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 991.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ee0fa5e1f0b128444e7070ebcb08d8ea04e0b5ab6eecbd311f6b3b33bd1a8802
BLAKE2b-256 checksum
How to use checksums
9e866a38599802d74b5cd885448dcee1147605ce65711b32c4a90642b03e64b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_11_0_arm64.whl
Size 943.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6c4046540015313c728930301f2afd33a01b495356900f0002f9fe1c62353e87
BLAKE2b-256 checksum
How to use checksums
f33482e1847c151bdc172358980109b4d34130032cecefe00b21ec1bf38e23fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 950.7 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4478d7189d96d4096cd927262bc3a2ac78b92884fbc5a4517d8430170176849e
BLAKE2b-256 checksum
How to use checksums
fee4c16f1f5242d96ac6a72cc2beb78513085be3b59498dfe914536d5e5f34a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp310-cp310-win_amd64.whl

Download URL slixmpp_multiplatform-1.12.0-cp310-cp310-win_amd64.whl
Size 825.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1d81cb043bd23f9311a9fd6df02ee32f92ae2e9528ad88ecbfbdd022daa594f8
BLAKE2b-256 checksum
How to use checksums
d32d36544c3c167e533fb3856b5ba1d298023db21b79a11b6093fc3ae7c1159f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 991.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4459c3ce2c6527d30528808e09027be68054f6c3a68c76f8034caf564ccaae35
BLAKE2b-256 checksum
How to use checksums
42ee2bebee5a425a31fc5a2da0600bd2ce42735cefd0055c92fe22a07c6d4c28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_11_0_arm64.whl
Size 943.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17107cc556d4e39088d71aee12f1231deb0bf0314ca15cdfbf523ba29b5deeea
BLAKE2b-256 checksum
How to use checksums
4694406ab6ab38fcf53f93cb0ac4c538a297df38bcb538d62bdad811db2e9483
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 950.9 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
146cef6b9e809bd83f072a87865c3be53dccfadde70c3126266a1c7d05b25078
BLAKE2b-256 checksum
How to use checksums
9cebc14ecfaf55bb8003061f6669db726ca7b788435e1e1302191cce0d32c332
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp39-cp39-win_amd64.whl

Download URL slixmpp_multiplatform-1.12.0-cp39-cp39-win_amd64.whl
Size 827.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b499a96c0d78a685eb1d29096631931d3af9960bebb961c76bcf8e37be5de12f
BLAKE2b-256 checksum
How to use checksums
d85f6db394523631bef7339242f6f0d0d84e8bce83cf35343174631f59a95eb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 992.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ced2e1eb6a4c6d59c650e767c54168529dcc05553fc5ba09206b500a988045cc
BLAKE2b-256 checksum
How to use checksums
53dc96ac0ff3f9683bc2d5db7108f56ce8768282e746bc9882d4304cc1fec211
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_11_0_arm64.whl
Size 945.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
509e75efb40e26bdcdf659bc8024bee9c3f7e6a6f46a0a966e493786a49a82d3
BLAKE2b-256 checksum
How to use checksums
2e26ab5d01db8227635732854d8b108e66c0438bb314354f1ac50cd8c32ba275
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release files / slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL slixmpp_multiplatform-1.12.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 952.9 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0b994e5f63f11aac714488d64cd24d1108a19971b93cfe020dd776cb0aff8772
BLAKE2b-256 checksum
How to use checksums
bc29a068119cb3674c8fd750f0f5784508bbbc87ae30e122cafd2cbb021c02ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.11

Release history Release notifications | RSS feed

This release

1.12.0 This release

24 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page