A Java based driver for py3o
Project description
#Juno for py3o
py3o.renderers.juno is a Java driver for py3o to transform
an OpenOffice document into a PDF
It is intended to be used in conjunction with
[py3o.renderserver](https://bitbucket.org/faide/py3o.renderserver/)
But can be used outside it if you wish.
#Note for end-users
If you just search for an easy way to render LibreOffice files to PDF or DOCX,
with ot without templating capabilities, you should directly look at
[py3o.fusion](https://bitbucket.org/faide/py3o.fusion/)
[py3o.fusion](https://bitbucket.org/faide/py3o.fusion/) is a packaged
webservice that lets you send a template, a target format and your data
and will return the resulting file.
#Prerequisites
Since this is a Java implementation you will need to install
jpype1 and to have a recent Java runtime on the rendering machine.
You will also need a running OpenOffice instance. (If you are on
windows this can be addressed by using the py3o.renderserver
Open Office service.)
We have a dependency on gson from google. Which can be installed on
ubuntu like this:
```bash
$ sudo apt-get install libgoogle-gson-java
```
This has been tested to build correctly with:
- Oracle JDK 1.6 and OpenOffice 3.2.1 on Windows 7 and Windows server 2003
- Oracle JDK 1.6 and LibreOffice 3.4 on Windows 7 64bit
- OpenJDK 6 and LibreOffice 3.4 on Linux (Ubuntu and RHEL 5)
- OpenJDK 7 and LibreOffice 4.0.4 on Linux (Ubuntu 13.04)
- OpenJDK 7 and LibreOffice 4.2.4.2 on Linux (Ubuntu 14.04)
For example if you are on Ubuntu you should run this command:
```bash
$ sudo apt-get install default-jdk
```
#Usage
Start a JVM from python and then initialize you convertor and use it:
```python
# -*- encoding: utf-8 -*-
from py3o.renderers.juno import start_jvm, Convertor, formats
import datetime
# first arg is the jvm.so or .dll
# second arg is the basedir where we can find the basis3.3/program/classes/unoil.jar
# third argument it the ure basedir where we can find ure/share/java/*.jar containing
# java_uno.jar, juh.jar, jurt.jar, unoloader.jar
# the fourth argument was the openoffice version but is no more used
# fifth argument is the max memory you want to give to the JVM
start_jvm(
"/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so",
"/usr/lib/libreoffice",
"/usr/lib",
"",
140)
c = Convertor("127.0.0.1", "8997")
t1 = datetime.datetime.now()
c.convert("py3o_example.odt", "py3o_example.pdf", formats['PDF'])
t2 = datetime.datetime.now()
```
For more information please read the example provided in the examples dir and
read the API documentation.
#Installation
```bash
$ pip install --upgrade py3o.renderers.juno
```
##Requirements
We just made a change of requirement from jpype to jpype1 in version 0.6
which should be pip installable by anyone with the correct toolchain.
This means all requirements should now install automatically on a development
machine.
##Driver compilation and installation
NOTE: this is optionnal and reserved for developpers who want to compile the
jar file by themselves
If you want to install from source you'll need to clone our repository:
```bash
$ hg clone http://bitbucket.org/faide/py3o.renderers.juno
$ cd py3o.renderers.juno/java/py3oconvertor
$ ./compile.sh
$ cd ../../
$ python setup.py develop
```
Please note how you must first compile the jar file with our script
(some more example scripts are available for windows and OpenOffice).
If something fails, first try to edit the script and find if all referenced
jar files are present on your system.
#Contributors
By order of appearance:
- Florent Aide
- Thomas Desvenain
- Eric Bréhault
- Alexis de Lattre
- Fabien George
#Release Notes
##2018-07-04 0.8.1
- Add support for PDF options
- Fix ods to pdf conversion
##2016-11-28 0.8
- Update java classpath depending on plateform (Thomas Desvenain &
Eric Bréhault)
py3o.renderers.juno is a Java driver for py3o to transform
an OpenOffice document into a PDF
It is intended to be used in conjunction with
[py3o.renderserver](https://bitbucket.org/faide/py3o.renderserver/)
But can be used outside it if you wish.
#Note for end-users
If you just search for an easy way to render LibreOffice files to PDF or DOCX,
with ot without templating capabilities, you should directly look at
[py3o.fusion](https://bitbucket.org/faide/py3o.fusion/)
[py3o.fusion](https://bitbucket.org/faide/py3o.fusion/) is a packaged
webservice that lets you send a template, a target format and your data
and will return the resulting file.
#Prerequisites
Since this is a Java implementation you will need to install
jpype1 and to have a recent Java runtime on the rendering machine.
You will also need a running OpenOffice instance. (If you are on
windows this can be addressed by using the py3o.renderserver
Open Office service.)
We have a dependency on gson from google. Which can be installed on
ubuntu like this:
```bash
$ sudo apt-get install libgoogle-gson-java
```
This has been tested to build correctly with:
- Oracle JDK 1.6 and OpenOffice 3.2.1 on Windows 7 and Windows server 2003
- Oracle JDK 1.6 and LibreOffice 3.4 on Windows 7 64bit
- OpenJDK 6 and LibreOffice 3.4 on Linux (Ubuntu and RHEL 5)
- OpenJDK 7 and LibreOffice 4.0.4 on Linux (Ubuntu 13.04)
- OpenJDK 7 and LibreOffice 4.2.4.2 on Linux (Ubuntu 14.04)
For example if you are on Ubuntu you should run this command:
```bash
$ sudo apt-get install default-jdk
```
#Usage
Start a JVM from python and then initialize you convertor and use it:
```python
# -*- encoding: utf-8 -*-
from py3o.renderers.juno import start_jvm, Convertor, formats
import datetime
# first arg is the jvm.so or .dll
# second arg is the basedir where we can find the basis3.3/program/classes/unoil.jar
# third argument it the ure basedir where we can find ure/share/java/*.jar containing
# java_uno.jar, juh.jar, jurt.jar, unoloader.jar
# the fourth argument was the openoffice version but is no more used
# fifth argument is the max memory you want to give to the JVM
start_jvm(
"/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server/libjvm.so",
"/usr/lib/libreoffice",
"/usr/lib",
"",
140)
c = Convertor("127.0.0.1", "8997")
t1 = datetime.datetime.now()
c.convert("py3o_example.odt", "py3o_example.pdf", formats['PDF'])
t2 = datetime.datetime.now()
```
For more information please read the example provided in the examples dir and
read the API documentation.
#Installation
```bash
$ pip install --upgrade py3o.renderers.juno
```
##Requirements
We just made a change of requirement from jpype to jpype1 in version 0.6
which should be pip installable by anyone with the correct toolchain.
This means all requirements should now install automatically on a development
machine.
##Driver compilation and installation
NOTE: this is optionnal and reserved for developpers who want to compile the
jar file by themselves
If you want to install from source you'll need to clone our repository:
```bash
$ hg clone http://bitbucket.org/faide/py3o.renderers.juno
$ cd py3o.renderers.juno/java/py3oconvertor
$ ./compile.sh
$ cd ../../
$ python setup.py develop
```
Please note how you must first compile the jar file with our script
(some more example scripts are available for windows and OpenOffice).
If something fails, first try to edit the script and find if all referenced
jar files are present on your system.
#Contributors
By order of appearance:
- Florent Aide
- Thomas Desvenain
- Eric Bréhault
- Alexis de Lattre
- Fabien George
#Release Notes
##2018-07-04 0.8.1
- Add support for PDF options
- Fix ods to pdf conversion
##2016-11-28 0.8
- Update java classpath depending on plateform (Thomas Desvenain &
Eric Bréhault)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py3o.renderers.juno-0.8.1.tar.gz
(42.3 kB
view details)
Built Distributions
File details
Details for the file py3o.renderers.juno-0.8.1.tar.gz
.
File metadata
- Download URL: py3o.renderers.juno-0.8.1.tar.gz
- Upload date:
- Size: 42.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bc321ae344ce9a3f63f1245262a7ac1e9d11f87c629933ee35039497c83dcaf |
|
MD5 | 95af4821591e79ab71bfa2722f40a28c |
|
BLAKE2b-256 | 17325954c32dc1d0e568410c3dcb4f203f0c9d10dabf73b3e78acb90ee639e84 |
File details
Details for the file py3o.renderers.juno-0.8.1-py2.7.egg
.
File metadata
- Download URL: py3o.renderers.juno-0.8.1-py2.7.egg
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b125a4b51c2aea28d6344631ede267711e49ca6107274e6a2fd798f7d2ecc163 |
|
MD5 | 2b52cd178d6c11ffe1b04e048733c997 |
|
BLAKE2b-256 | 052c4409260746af3f8f6c675a5fe37fbafd2869d24472753b75bd71687883d7 |
File details
Details for the file py3o.renderers.juno-0.8.1-py2-none-any.whl
.
File metadata
- Download URL: py3o.renderers.juno-0.8.1-py2-none-any.whl
- Upload date:
- Size: 13.8 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e4a53ea7f5350bbb185f1080bc1bb66d42b292083a18871100ea60f1c293b00 |
|
MD5 | b5cb9d32630b0d05b5f7bcba0ac7365e |
|
BLAKE2b-256 | f64fe595e6db25f66c5ff3992e76f8c9c5af73ead4fb6d57988ebcd9001f829a |