-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare for 0.9 Co-authored-by: Gijs Molenaar <[email protected]>
- Loading branch information
1 parent
4f2067e
commit ab61fd7
Showing
5 changed files
with
50 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,52 @@ | ||
# monetdbe | ||
MonetDBe - the Python embedded MonetDB | ||
# MonetDBe-Python | ||
|
||
MonetDBe-Python - the Python embedded MonetDB | ||
|
||
https://github.com/monetdBSolutions/MonetDBe-Python/ | ||
|
||
documentation: https://monetdbe.readthedocs.io/en/latest/ | ||
Full documentation: https://monetdbe.readthedocs.io/en/latest/ | ||
|
||
|
||
# requirements | ||
|
||
For binary wheel installation you need: | ||
For a binary wheel installation you need: | ||
|
||
* Linux or OSX 10.13+ | ||
* An up-to-date Linux, OSX or Windows | ||
* pip >= 19.3 | ||
* Python >= 3.6 | ||
|
||
For non-binary wheel installation (Windows) you also need to have MonetDB installed, see the source installation section below. | ||
For a non-binary wheel installation you need to have | ||
MonetDB installed, see the source installation section below. | ||
|
||
|
||
# install | ||
|
||
you can install monetdbe from pypi using: | ||
You can install monetdbe from pypi using: | ||
``` | ||
$ pip install --upgrade pip | ||
$ pip install monetdbe | ||
``` | ||
|
||
On supported platforms, this will download and install the Binary wheel, otherwise a source compile is started. | ||
On supported platforms, this will download and install the Binary wheel, | ||
otherwise a source compile is started. | ||
|
||
|
||
# usage | ||
|
||
Just import and get started, no running a server required. Connecting without an argument starts an in-memory storage instance: | ||
Just import and get started, no running a server required. Connecting without | ||
an argument starts an in-memory storage instance: | ||
``` | ||
from monetdb import connect | ||
from monetdbe import connect | ||
con = connect() | ||
``` | ||
|
||
See a simple example illustrating the Pandas support in this notebook: | ||
|
||
https://github.com/MonetDBSolutions/MonetDBe-Python/blob/master/notebooks/basic_example.ipynb | ||
|
||
|
||
# Source installation | ||
|
||
see the detailed online installation documentation for instructions to build from source: | ||
See the detailed online installation documentation for instructions to build from source: | ||
|
||
https://monetdbe.readthedocs.io/en/latest/installation.html#source-installation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
setup( | ||
name="monetdbe", | ||
version="0.8.4", | ||
version="0.9", | ||
author="Gijs Molenaar", | ||
author_email="[email protected]", | ||
description="MonetDBe - the Python embedded MonetDB", | ||
|