⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
python3
/
dist-packages
/
jeepney
/
integrate
/
View File Name :
tornado.py
"""Deprecated: use jeepney.io.tornado instead""" from warnings import warn from jeepney.io.tornado import * warn("jeepney.integrate.tornado is deprecated. Tornado is now built on top of " "asyncio, so please use jeepney.io.asyncio instead.", stacklevel=2) async def connect_and_authenticate(bus='SESSION'): conn = await open_dbus_connection(bus) return DBusRouter(conn) if __name__ == '__main__': rtr = IOLoop.current().run_sync(connect_and_authenticate) print("Unique name is:", rtr.unique_name)