Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaPy/pyjulia
python interface to julia
https://github.com/JuliaPy/pyjulia
Last synced: 14 days ago
JSON representation
python interface to julia
- Host: GitHub
- URL: https://github.com/JuliaPy/pyjulia
- Owner: JuliaPy
- License: mit
- Created: 2013-11-21T03:40:38.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T19:43:21.000Z (7 months ago)
- Last Synced: 2024-08-10T18:05:47.311Z (3 months ago)
- Language: Python
- Homepage:
- Size: 710 KB
- Stars: 881
- Watchers: 37
- Forks: 103
- Open Issues: 146
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesomeJulia - Python
README
PyJulia
=======> [!CAUTION]
> Ongoing development of the Python/Julia interface has transitioned to [PythonCall.jl/juliacall](https://github.com/JuliaPy/PythonCall.jl), please consider using that package instead.[![Stable documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://pyjulia.readthedocs.io/en/stable/)
[![Latest documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://pyjulia.readthedocs.io/en/latest/)
[![Main workflow](https://github.com/JuliaPy/pyjulia/workflows/Main%20workflow/badge.svg)](https://github.com/JuliaPy/pyjulia/actions?query=workflow%3A%22Main+workflow%22)
[![DOI](https://zenodo.org/badge/14576985.svg)](https://zenodo.org/badge/latestdoi/14576985)Experimenting with developing a better interface to [Julia language](https://julialang.org/) that works with [Python](https://www.python.org/) 3 and Julia v1.4+.
Quick usage
-----------```console
$ python3 -m pip install julia # install PyJulia
... # you may need `--user` after `install`$ python3
>>> import julia
>>> julia.install() # install PyCall.jl etc.
>>> from julia import Base # short demo
>>> Base.sind(90)
1.0
```See more in the [documentation](https://pyjulia.readthedocs.io).