Metadata-Version: 2.1
Name: autojs
Version: 0.1.0
Summary: The RPC framework of autojs allows you to use Python to operate phone.
Home-page: https://github.com/miloira/autojs
Author: Msky
Author-email: 690126048@qq.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE


`autojs`
===============================================
The RPC framework of autojs allows you to use Python to operate phone.

Usage
-----


1.Download and install [AutoX.js](https://github.com/kkevsekk1/AutoX/releases)

2.Add autox-client.js to AutoX.js app, then run this script

3.Install autojs

```bash
$ pip install autojs
```

script mode
```python
from autojs import AutoJS

with AutoJS() as auto_js:
    auto_js.app.launchApp('微信')
    auto_js.eval('console.log("Hello AutoX.js")')
```

shell mode
```python
from autojs import AutoJS

with AutoJS() as auto_js:
    auto_js.shell()
```

Documentation
-------------

AutoX.js API documentation at `<http://doc.autoxjs.com>`.

Meta
----


Distributed under the MIT license. See `LICENSE <https://github.com/miloira/autojs/LICENSE>` for more information.

https://github.com/miloira/autojs
