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
~
Ich denke, ich kann etwas tun
$ python.rb
python.rb> 1+1
2
gerührt
$ echo "print(1+1)" > test.py
$ python.rb test.py #gerührt
2
interessant
sawaken/python.rb: Python in Ruby
$ pip search ruby
~
pyruby (1.0.0) - Some Ruby for your Python
~
Es scheint zu geben!
$ 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
Das?
$ echo '''import ruby
print("Hello!")'''>app.py
$ python app.py
...。
Ich weiß nicht, welche Art von Bibliothek für eine Bibliothek wie pip registriert ist
Dieses Mal war es gut, weil es offensichtlich war, aber ich habe gelernt, dass es in Ordnung ist, eine Bibliothek zu haben, die im Dunkeln schlechte Dinge tut. Sie sollten sie also nicht nur blind verwenden, sondern auch den Quellcode richtig lesen.
2016-05-10 Nachtrag Englisch war das Gegenteil
Recommended Posts