• This repository has been archived on 11/Jan/2022
  • Stars
    star
    254
  • Rank 159,067 (Top 4 %)
  • Language
    Ruby
  • License
    Other
  • Created over 13 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An in-process between Ruby and Python 2.

rubypython¶ ↑

Description¶ ↑

RubyPython is a bridge between the Ruby and Python interpreters. It embeds a running Python interpreter in the Ruby application’s process using FFI and provides a means for wrapping, converting, and calling Python objects and methods.

RubyPython uses FFI to marshal the data between the Ruby and Python VMs and make Python calls. You can:

  • Inherit from Python classes.

  • Configure callbacks from Python.

  • Run Python generators (on Ruby 1.9.2 or later).

Where¶ ↑

The RubyPython homepage, project description, and main downloads can be found on RubyForge.

Source is kept in sync between Bitbucket and GitHub, but the Bitbucket repository is the canonical repository and where the issue tracker resides. We use Hg-Git to keep the two repositories in sync.

Synopsis¶ ↑

RubyPython is fairly easy to start using; there are three phases to its use:

  1. Start the Python interpreter (RubyPython.start).

  2. Import and use Python code (RubyPython.import).

  3. Stop the Python interpreter (RubyPython.stop).

There are also two methods, RubyPython.session and RubyPython.run that will start before running the code provided in the block and stop it afterwards.

Basic Usage¶ ↑

require "rubypython"

RubyPython.start # start the Python interpreter

cPickle = RubyPython.import("cPickle")
p cPickle.dumps("Testing RubyPython.").rubify

RubyPython.stop # stop the Python interpreter

Specific Python Version¶ ↑

require "rubypython"

RubyPython.start(:python_exe => "python2.7") # Can also be a full path

cPickle = RubyPython.import("cPickle")
p cPickle.dumps("Testing RubyPython.").rubify

RubyPython.stop # stop the Python interpreter

VirtualEnv¶ ↑

# Easy
RubyPython.start_from_virtualenv("/path/to/virtualenv")

# Or verbose
RubyPython.start(:python_exe => "/path/to/virtualenv/bin/python")
RubyPython.activate

Iterator support¶ ↑

# Python
def readfile():
  for line in open("/some/file"):
    yield line

# Ruby
readfile.to_enum.each do |line|
  puts line
end

# Python
def iterate_list():
  for item in [ 1, 2, 3 ]:
    yield item

# Ruby
items = []
iterate_list.to_enum.each { |item| items << item }
puts items == [ 1, 2, 3 ] # => true

Python to Ruby callbacks¶ ↑

# Python
def simple_callback(callback, value):
  return callback(value)

# Ruby
simple_callback(lambda { |v| v * v }, 4) # => 16

def triple(v)
  v * 3
end

simple_callback(method(:triple), 4) # => 12

Python-style Generators¶ ↑

# Python
def test_generator(callback):
  for i in callback():
    print "Got %d" % i

# Ruby 1.9.2 or later
test_generator(RubyPython.generator do
  (0..10).each { |i| RubyPython.yield i }
end)

Python named arguments (Experimental)¶ ↑

This format is experimental and may be changed.

# Python
def foo(arg1, arg2):
  pass

# Ruby
foo!(:arg2 => "bar2", :arg1 => "bar1")

# with Ruby 1.9
foo!(arg2: "bar2", arg1: "bar1")

Features / Problems¶ ↑

Features¶ ↑

  • Simple two-way conversion of built-in types between Ruby and Python.

  • Python module import and arbitrary method execution.

  • Python objects can be treated as Ruby objects.

  • Python’s standard library available from within Ruby.

  • Pass Ruby methods and procs as callbacks and call them from within Python code.

  • Specify the Python executable to be loaded, including using virtualenv.

Experimental Features¶ ↑

  • Calling Python methods or functions that expect keyword arguments, or call any Python method or function with named parameters.

    # Python
    def func(a, b, c):
      pass
    
    # Ruby
    func!(:b => 2, :c => 3, :a => 1) # => [ 1, 2, 3 ]

    While we are committed to keeping this feature in place, we have not yet determined that the form (method!) is the best way to achieve this functionality.

    This mechanism is experimental because the use of the bang at the end of the method to indicate the use of keyword arguments may not be the best use of that feature of Ruby naming.

  • Changing Python interpreters in a single Ruby program. Under some circumstances, this will partially work. If a native Python extension has been imported (such as cPickle), there is a very high likelihood that there will be a segmentation fault because the newly loaded DLL will still refer to the other version’s loaded extension. This is not a recommended workflow.

Known Problems¶ ↑

  • Built-in Python methods requiring a top-level frame object (such as eval(), dir(), and the like) do not work properly at present.

  • There is no support for passing complicated (non-basic) Ruby types to Python.

What’s planned¶ ↑

There are features that are not currently supported in RubyPython that may be considered for future releases, dependent on need, interest, and solutions.

Python 3¶ ↑

We do plan on working this, but as none of the projects any of us are working on require Python 3 as of yet, this is not yet started.

Simpler Imports¶ ↑

It might be nice to have some nice import helpers provided by RubyPython to make the interface more seamless and provide advanced import features:

Import Aliasing¶ ↑

# Python
from mod2.mod1 import sym as mysym

# Ruby
py :from => "mod2.mod1", :import => "sym", :as => "mysym"
py :from => "mod2.mod1", :import => :sym, :as => :mysym
py :from => [ :mod2, :mod1 ], :import => :sym, :as => :mysym

# Python
import mod1 as mymod

# Ruby
py :import => "mod1", :as => "mymod"
py :import => :mod1, :as => :mymod

# Python
from mod2.mod1 import *

# Ruby
py :from => "mod2.mod1", :import => :*
pyrequire "mod2/mod1" # ruby style imports

Catch Exceptions from Ruby¶ ↑

# Python
class MyFirstException(Exception):
  pass

class MySecondException(MyFirstException):
  pass

def test():
  raise MySecondException

# Ruby
begin
  test
rescue MyFirstException => e
  # We may need to work out name collisions
  puts e.message
end

Requirements¶ ↑

  • Python >= 2.4, < 3.0

  • Ruby >= 1.8.6, or JRuby >= 1.6.0

  • You must either have the ability to build the Ruby FFI gem, version 1.0.7 or better in your environment or have a pre-built one that you can install.

Python Support¶ ↑

RubyPython has been tested with the C-based Python interpreter (cpython), versions 2.4 through 2.7. Work is planned to enable Python 3 support, but has not yet been started. If you’re interested in helping us enable Python 3 support, please let us know.

Ruby Support¶ ↑

  • Ruby 1.8.7 and 1.9.2 (MRI)

  • JRuby 1.6.0

It should work with other implementations that support the Ruby FFI gem with no modification.

OS Support¶ ↑

RubyPython has been extensively tested on Mac OS 10.5 and 10.6, and Ubuntu 10.10 (64-bit Intel). If your platform has a DLL or shared object version of Python and supports the FFI gem, it should work. Feedback on other platforms is always welcome.

Install¶ ↑

gem install rubypython

:include: Contributors.rdoc

:include: License.rdoc

More Repositories

1

diff-lcs

Generate difference sets between Ruby sequences.
Ruby
286
star
2

color

Color tools for Ruby.
Ruby
133
star
3

coredata-easyfetch

A fast fetch based on example code by Matt Gallagher
Objective-C
81
star
4

text-hyphen

Text::Hyphen will hyphenate words using modified versions of TeX hyphenation patterns.
Ruby
48
star
5

minitar

Minimal pure-ruby support for POSIX tar(1) archives.
Ruby
38
star
6

fish-docker

Docker and Docker Compose completions for the Fish Shell
Shell
37
star
7

fish-macos

MacOS functions for Fish
Shell
25
star
8

transaction-simple

Transaction::Simple for Ruby
Ruby
19
star
9

fish-rust

Rust/Cargo configuration for Fish
Shell
15
star
10

dotfiles

Dotfiles for 2023, Managed with chezmoi
Shell
12
star
11

fish-haskell

Haskell configuration for Fish
Shell
10
star
12

fish-go

Golang configuration discovery for Fish
Shell
10
star
13

fish-brew

Homebrew utility functions for Fish
Shell
9
star
14

fish-direnv

A very basic direnv configuration for fish
Shell
9
star
15

i18n-tasks-csv

Ruby
8
star
16

xcode-git-version

A script that I use for versioning builds using git. Supports both sharef and version-tag numbering.
Ruby
7
star
17

dsym-archiver

A simple bash script to archive your .dSYM bundles. Based originally on http://furbo.org/stuff/dSYM_Archive.txt.
7
star
18

fish-elixir

Fish meets Elixir
Shell
7
star
19

fish-fzf

FZF Helpers for Fish
Shell
6
star
20

minitest-bonus-assertions

Useful Minitest assertions, and assertions for testing Minitest assertions
Ruby
6
star
21

fish-utils

Fish utility functions
Shell
6
star
22

stockpile

Stockpile: a cache connection manager
Ruby
5
star
23

agio

Pure Ruby HTML to Markdown Converter
Ruby
4
star
24

zsh-focused-dotfiles

Shell
3
star
25

text-formatting

Text Formatting tools for Ruby
Ruby
3
star
26

fish-utils-net

Network fish utilities
Shell
3
star
27

ruwiki

Ruwiki. This is a dead project and is only preserved for historical reasons.
Ruby
3
star
28

text-reform

Text::Reform reformats text according to formatting picture templates.
Ruby
2
star
29

fish-ssh-agent

SSH agent initialization for Fish
Shell
2
star
30

terraform-modules

Useful modules for Terraform
HCL
2
star
31

vim-config

My new vim config.
Vim Script
2
star
32

minitar-cli

Ruby minitar command-line tool
Ruby
2
star
33

fish-battery

Battery function for Fish - deprecated
Shell
2
star
34

kx

Elixir Version Manager
Shell
2
star
35

vuex-notes

Learn vuex with a notes app, based on a Coligo tutorial and updated for vue2 and vuex2
JavaScript
2
star
36

jruby-vijava

A simple wrapper around the VMware Infrastructure (vSphere) Java API for use with JRuby.
Ruby
2
star
37

fish-utils-core

Core fish utilities
Shell
2
star
38

rails-ansible-presentation

The Deckset presentation on Rails + Ansible
2
star
39

stockpile-redis

A Redis backend for stockpile (https://github.com/halostatue/stockpile).
Ruby
2
star
40

uninheritable

Sample code demontrating how to make a class uninheritable in Ruby
Ruby
1
star
41

canonical-attributes

Ruby
1
star
42

fish-dict

Dictionary functions for fish shell
Shell
1
star
43

vim-hz

Newer vim configurations
Vim Script
1
star
44

what-gem-why-gem-how-gem

Why build gems and how to build gems, presented for RailsGirls T.O. on 24 November 2015 at the Kinetic Cafe office
1
star
45

fisher-plugin

A template for making new fisher-compatible fish plugins
Makefile
1
star
46

tex-hyphen

A port of Perl's TeX::Hyphen to Ruby 1.6/1.8. This project has been superseded by Text::Hyphen
Ruby
1
star
47

poole

Ruby
1
star
48

gh-merge-upstream

A helper for gh cli to keep forks up-to-date
Shell
1
star
49

text-format

The text-format gem for Ruby, modernized and available on GitHub.
Ruby
1
star