![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.
The JavaScript API to the "Swiss army knife of cloud storage" rclone.
Besides providing a way to install rclone on different platforms, a CLI and a JavaScript API are included.
npm install rclone.js
After installation, the latest binary of rclone
is also fetched based on
your system environment.
Except update
(which is used to update rclone
binary), all API functions
return a child process whose events we can listen to.
const rclone = require("rclone.js");
const ls = rclone.ls("source:");
ls.stdout.on("data", (data) => {
console.log(data.toString());
});
ls.stderr.on("data", (data) => {
console.error(data.toString());
});
There is also a Promise-based API:
const rclone = require("rclone.js").promises;
(async function() {
const results = await rclone.ls("source:");
console.log(results);
})();
This simple CLI calls the JS API above and outputs stdout
and stderr
.
$ npx rclone --version
rclone v1.54.0
- os/arch: darwin/amd64
- go version: go1.15.7
$ npx rclone ls source:
-1 2020-12-12 10:01:44 -1 Documents
-1 2020-12-11 16:24:20 -1 Pictures
FAQs
JavaScript API for rclone
The npm package rclone.js receives a total of 732 weekly downloads. As such, rclone.js popularity was classified as not popular.
We found that rclone.js demonstrated a not healthy version release cadence and project activity because the last version was released 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.