print(dp.redis.ping())
asyncio.get_event_loop().run_until_complete(aredis_wait())
asyncio.run(aredis_wait())
DeprecationWarning: There is no current event loop
Private Access Modifier:
The members of a class that are declared private are accessible within the class only, private access modifier is the most secure access modifier. Data members of a class are declared private by adding a double underscore ‘__’ symbol before the data member of that class.