Skip to content

yakupaslantas/rootchecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rootchecker

Simple tool to check if android device is rooted

Install

pip install rootchecker

How to use

>>> from rootchecker import rootchecker

>>> rootchecker.check_root()
{'magisk': True, 'root': True, 'su_binary': True}

Example

from rootchecker import rootchecker

client = rootchecker.check_root()

if client["root"] == True:
   print("Your device is rooted!")
else:
   print("Your device is not rooted.")

About

Simple tool to check if android device is rooted

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages