![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.
[![npm version](https://badge.fury.io/js/cav.svg)](https://badge.fury.io/js/cav)
A supporter for making your CLI.
$ npm i -S cav
#!/usr/bin/env node
// sample-cli
const Cav = require('cav');
const packageJson = require('./package.json');
const commands = {
'deploy <to> <env>' : 'Deploy to ec2.',
'migrate <from> <to> <version>': 'Migrate data.',
'-f' : '✊',
'-c, --current-state' : 'Show Current State.'
};
const cav = new Cav(commands, packageJson);
cav.start((args) => {
console.log(args)
});
$ sample-cli deploy japan prod -f -c ok
cav.start((args) => {
console.log(JSON.stringify(args, null, 2));
// {
// "commands": {
// "deploy": {
// "to": "japan",
// "env": "prod"
// }
// },
// "options": {
// "f": true,
// "c": "ok"
// }
// }
});
Version: 1.0.0
Usage: sample-cli <commands> <options>
Commands:
deploy <to> <env> Deploy to ec2.
migrate <from> <to> <version> Migrate data.
Options:
-v, --version Display version.
-h, --help Display help.
-f ✊
-c, --current-state Show Current State.
FAQs
[![npm version](https://badge.fury.io/js/cav.svg)](https://badge.fury.io/js/cav)
The npm package cav receives a total of 2 weekly downloads. As such, cav popularity was classified as not popular.
We found that cav 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.