python | RubyGems.org | your community gem host
$ gem install python
$ gem specification python
--- !ruby/object:Gem::Specification
name: python
version: !ruby/object:Gem::Version
version: 0.0.1
platform: ruby
authors:
- Kensuke Sawada
~
executables:
- python.rb
~
Je pense que je peux faire quelque chose
$ python.rb
python.rb> 1+1
2
déplacé
$ echo "print(1+1)" > test.py
$ python.rb test.py #déplacé
2
intéressant
sawaken/python.rb: Python in Ruby
$ pip search ruby
~
pyruby (1.0.0) - Some Ruby for your Python
~
Il semble y avoir!
$ pip install pyruby
$ pip show pyruby
---
Metadata-Version: 1.1
Name: pyruby
Version: 1.0.0
Summary: Some Ruby for your Python
Home-page: http://github.com/danielfm/pyruby
Author: Daniel Fernandes Martins
Author-email: [email protected]
License: BSD
Location: /Users/him0/Desktop/venv/lib/python3.5/site-packages
Requires:
Classifiers:
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Ruby
Topic :: Software Development :: Interpreters
danielfm/pyruby: Some Ruby for your Python!
$ echo '''import ruby
> puts "Hello!"'''>app.p
$ python app.py
File "app.py", line 2
puts "Hello!"
^
SyntaxError: invalid syntax
cette?
$ echo '''import ruby
print("Hello!")'''>app.py
$ python app.py
...。
Je ne sais pas quel type de bibliothèque est enregistré pour une bibliothèque comme pip
Cette fois, c'était bien parce que c'était évident, mais j'ai appris qu'il était normal d'avoir une bibliothèque qui fait de mauvaises choses dans le noir, donc vous ne devriez pas seulement l'utiliser aveuglément, mais aussi lire le code source correctement
2016-05-10 Addendum L'anglais était le contraire
Recommended Posts