dartpip 0.0.1+2 copy "dartpip: ^0.0.1+2" to clipboard
dartpip: ^0.0.1+2 copied to clipboard

outdated

Add Python modules (packages) to your Dart or Flutter project. Like `pip`, but for Dart, heavily inspired by the `pub` command.

example/lib/main.dart

import "package:args/command_runner.dart";
import "package:dartpip/dartpip.dart";

Future<void> main(List<String> arguments) async {
  final CommandRunner<void> runner = CommandRunner<void>(
    "python_ffi_bundler",
    "The command line application for bundling Python modules into Dart applications.",
  )
    ..addCommand(BundleModuleCommand())
    ..addCommand(BundleCommand());

  await runner.run(arguments);
}
6
likes
0
points
20
downloads

Publisher

verified publisherivlivs.dev

Weekly Downloads

Add Python modules (packages) to your Dart or Flutter project. Like `pip`, but for Dart, heavily inspired by the `pub` command.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

args, collection, yaml

More

Packages that depend on dartpip