2019-08-13 22:54:45 +02:00
|
|
|
|
.. _interop:
|
|
|
|
|
|
2017-02-11 02:11:21 +01:00
|
|
|
|
=====================
|
|
|
|
|
Hy <-> Python interop
|
|
|
|
|
=====================
|
|
|
|
|
|
|
|
|
|
“Keep in mind we’re not Clojure. We’re not Common Lisp. We’re Homoiconic
|
|
|
|
|
Python, with extra bits that make sense.” — Hy Style Guide
|
|
|
|
|
|
|
|
|
|
Despite being a Lisp, Hy aims to be fully compatible with Python. That means
|
|
|
|
|
every Python module or package can be imported in Hy code, and vice versa.
|
|
|
|
|
|
2018-03-05 01:39:54 +01:00
|
|
|
|
:ref:`Mangling <mangling>` allows variable names to be spelled differently in
|
|
|
|
|
Hy and Python. For example, Python's ``str.format_map`` can be written
|
|
|
|
|
``str.format-map`` in Hy, and a Hy function named ``valid?`` would be called
|
|
|
|
|
``is_valid`` in Python. In Python, you can import Hy's core functions
|
|
|
|
|
``mangle`` and ``unmangle`` directly from the ``hy`` package.
|
|
|
|
|
|
2017-02-11 02:11:21 +01:00
|
|
|
|
Using Python from Hy
|
|
|
|
|
====================
|
|
|
|
|
|
2019-09-06 21:15:22 +02:00
|
|
|
|
You can embed Python code directly into a Hy program with the special operators
|
|
|
|
|
:ref:`py-specialform` and :ref:`pys-specialform`.
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
2019-09-06 21:15:22 +02:00
|
|
|
|
Using a Python module from Hy is nice and easy: you just have to :ref:`import`
|
|
|
|
|
it. If you have the following in ``greetings.py`` in Python::
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
|
|
|
|
def greet(name):
|
|
|
|
|
print("hello," name)
|
|
|
|
|
|
|
|
|
|
You can use it in Hy:
|
|
|
|
|
|
|
|
|
|
.. code-block:: clj
|
|
|
|
|
|
|
|
|
|
(import greetings)
|
|
|
|
|
(.greet greetings "foo") ; prints "hello, foo"
|
|
|
|
|
|
|
|
|
|
You can also import ``.pyc`` bytecode files, of course.
|
|
|
|
|
|
|
|
|
|
Using Hy from Python
|
|
|
|
|
====================
|
|
|
|
|
|
|
|
|
|
Suppose you have written some useful utilities in Hy, and you want to use them in
|
|
|
|
|
regular Python, or to share them with others as a package. Or suppose you work
|
|
|
|
|
with somebody else, who doesn't like Hy (!), and only uses Python.
|
|
|
|
|
|
|
|
|
|
In any case, you need to know how to use Hy from Python. Fear not, for it is
|
|
|
|
|
easy.
|
|
|
|
|
|
|
|
|
|
If you save the following in ``greetings.hy``:
|
|
|
|
|
|
|
|
|
|
.. code-block:: clj
|
|
|
|
|
|
2018-12-26 16:00:56 +01:00
|
|
|
|
(setv this-will-have-underscores "See?")
|
|
|
|
|
(defn greet [name] (print "Hello from Hy," name))
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
|
|
|
|
Then you can use it directly from Python, by importing Hy before importing
|
|
|
|
|
the module. In Python::
|
|
|
|
|
|
|
|
|
|
import hy
|
|
|
|
|
import greetings
|
|
|
|
|
|
2018-12-26 16:00:56 +01:00
|
|
|
|
greetings.greet("Foo") # prints "Hello from Hy, Foo"
|
|
|
|
|
print(greetings.this_will_have_underscores) # prints "See?"
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
|
|
|
|
If you create a package with Hy code, and you do the ``import hy`` in
|
|
|
|
|
``__init__.py``, you can then directly include the package. Of course, Hy still
|
|
|
|
|
has to be installed.
|
|
|
|
|
|
|
|
|
|
Compiled files
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
You can also compile a module with ``hyc``, which gives you a ``.pyc`` file. You
|
|
|
|
|
can import that file. Hy does not *really* need to be installed ; however, if in
|
|
|
|
|
your code, you use any symbol from :doc:`core`, a corresponding ``import``
|
|
|
|
|
statement will be generated, and Hy will have to be installed.
|
|
|
|
|
|
|
|
|
|
Even if you do not use a Hy builtin, but just another function or variable with
|
|
|
|
|
the name of a Hy builtin, the ``import`` will be generated. For example, the previous code
|
|
|
|
|
causes the import of ``name`` from ``hy.core.language``.
|
|
|
|
|
|
|
|
|
|
**Bottom line: in most cases, Hy has to be installed.**
|
|
|
|
|
|
|
|
|
|
Launching a Hy REPL from Python
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
|
|
You can use the function ``run_repl()`` to launch the Hy REPL from Python::
|
|
|
|
|
|
|
|
|
|
>>> import hy.cmdline
|
|
|
|
|
>>> hy.cmdline.run_repl()
|
|
|
|
|
hy 0.12.1 using CPython(default) 3.6.0 on Linux
|
|
|
|
|
=> (defn foo [] (print "bar"))
|
|
|
|
|
=> (test)
|
|
|
|
|
bar
|
|
|
|
|
|
|
|
|
|
If you want to print the Python code Hy generates for you, use the ``spy``
|
|
|
|
|
argument::
|
|
|
|
|
|
|
|
|
|
>>> import hy.cmdline
|
|
|
|
|
>>> hy.cmdline.run_repl(spy=True)
|
|
|
|
|
hy 0.12.1 using CPython(default) 3.6.0 on Linux
|
|
|
|
|
=> (defn test [] (print "bar"))
|
|
|
|
|
def test():
|
|
|
|
|
return print('bar')
|
|
|
|
|
=> (test)
|
|
|
|
|
test()
|
|
|
|
|
bar
|
|
|
|
|
|
2017-08-06 02:29:15 +02:00
|
|
|
|
Evaluating strings of Hy code from Python
|
|
|
|
|
-----------------------------------------
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
2017-08-06 02:29:15 +02:00
|
|
|
|
Evaluating a string (or ``file`` object) containing a Hy expression requires
|
|
|
|
|
two separate steps. First, use the ``read_str`` function (or ``read`` for a
|
|
|
|
|
``file`` object) to turn the expression into a Hy model::
|
2017-02-11 02:11:21 +01:00
|
|
|
|
|
2017-08-06 02:29:15 +02:00
|
|
|
|
>>> import hy
|
|
|
|
|
>>> expr = hy.read_str("(- (/ (+ 1 3 88) 2) 8)")
|
|
|
|
|
|
|
|
|
|
Then, use the ``eval`` function to evaluate it::
|
|
|
|
|
|
|
|
|
|
>>> hy.eval(expr)
|
|
|
|
|
38.0
|