![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Remotely is a simple and secure remote code execution api that supports both asynchronous and blocking execution.
Remotely can be used for:
You start the remotely server on the box where you want to execute code.
::
from remotely import create_remotely_server
server = create_remotely_server("YOUR_API_KEY", PORT)
server.serve_forever()
...
And you use the remotely decorater for any function you want to run remotely.
::
from remotely import remotely
@remotely("YOUR_API_KEY", SERVER, PORT)
def remote_code():
# import required packages
# do something here
return result
# function will be executed on the remote server
remote_code()
The asynchronous (non-blocking) version runs the function as a separate process on the remote server and supports simple job management functions (join and kill).
::
from remotely import RemoteClient
rc = RemoteClient("API_KEY", SERVER, PORT)
pid = rc.run(foo, arg1, arg2=key2)
output = rc.join(pid)
output = rc.kill(pid)
|
| Created by Kefei Zhou (kefei.zhou at gmail)
| Licensed under BSD 3-Clause, included as LICENSE in the source distribution.
|
FAQs
Remotely is a simple and secure remote code execution api
We found that remotely demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.