KBOC16 Database Access API for Bob
Project description
.. image:: http://img.shields.io/badge/docs-stable-yellow.png
:target: http://pythonhosted.org/bob.db.kboc16/index.html
.. image:: http://img.shields.io/badge/docs-latest-orange.png
:target: https://www.idiap.ch/software/bob/docs/latest/bioidiap/bob.db.kboc16/master/index.html
.. image:: https://travis-ci.org/bioidiap/bob.db.kboc16.svg?branch=v2.0.0
:target: https://travis-ci.org/bioidiap/bob.db.kboc16?branch=v2.0.0
.. image:: https://coveralls.io/repos/bioidiap/bob.db.kboc16/badge.svg?branch=v2.0.0
:target: https://coveralls.io/r/bioidiap/bob.db.kboc16?branch=v2.0.0
.. image:: https://img.shields.io/badge/github-master-0000c0.png
:target: https://github.com/bioidiap/bob.db.kboc16/tree/master
.. image:: http://img.shields.io/pypi/v/bob.db.kboc16.png
:target: https://pypi.python.org/pypi/bob.db.kboc16
.. image:: http://img.shields.io/pypi/dm/bob.db.kboc16.png
:target: https://pypi.python.org/pypi/bob.db.kboc16
==================
KBOC16 Database
==================
This package contains the access API and descriptions for the `KBOC16
Database`_.
You would normally not install this package unless you are maintaining it. What
you would do instead is to tie it in at the package you need to **use** it.
There are a few ways to achieve this:
1. You can add this package as a requirement at the ``setup.py`` for your own
`satellite package
<https://github.com/idiap/bob/wiki/Virtual-Work-Environments-with-Buildout>`_
or to your Buildout ``.cfg`` file, if you prefer it that way. With this
method, this package gets automatically downloaded and installed on your
working environment, or
2. You can manually download and install this package using commands like
``easy_install`` or ``pip``.
The package is available in two different distribution formats:
1. You can download it from `PyPI <http://pypi.python.org/pypi>`_, or
2. You can download it in its source form from `its git repository
<https://github.com/mgbarrero/bob.db.KBOC16>`_. When you download the
version at the git repository, you will need to run a command to recreate
the backend SQLite file required for its operation. This means that the
database raw files must be installed somewhere in this case. With option
``a`` you can run in `dummy` mode and only download the raw data files for
the database once you are happy with your setup.
You can mix and match points 1/2 above based on your requirements. Here are
some examples:
Modify your setup.py and download from PyPI
===========================================
That is the easiest. Edit your ``setup.py`` in your satellite package and add
the following entry in the ``install_requires`` section (note: ``...`` means
`whatever extra stuff you may have in-between`, don't put that on your
script)::
install_requires=[
...
"bob.db.kboc16",
],
Proceed normally with your ``boostrap/buildout`` steps and you should be all
set. That means you can now import the ``bob.db.kboc16 `` namespace into your scripts.
Modify your buildout.cfg and download from git
==============================================
You will need to add a dependence to `mr.developer
<http://pypi.python.org/pypi/mr.developer/>`_ to be able to install from our
git repositories. Your ``buildout.cfg`` file should contain the following
lines::
[buildout]
...
extensions =mr.developer
auto-checkout = *
eggs = ...
bob.db.kboc16
[sources]
bob.db.KBOC16 = git https://github.com/mgbarrero/bob.db.kboc16.git
...
:target: http://pythonhosted.org/bob.db.kboc16/index.html
.. image:: http://img.shields.io/badge/docs-latest-orange.png
:target: https://www.idiap.ch/software/bob/docs/latest/bioidiap/bob.db.kboc16/master/index.html
.. image:: https://travis-ci.org/bioidiap/bob.db.kboc16.svg?branch=v2.0.0
:target: https://travis-ci.org/bioidiap/bob.db.kboc16?branch=v2.0.0
.. image:: https://coveralls.io/repos/bioidiap/bob.db.kboc16/badge.svg?branch=v2.0.0
:target: https://coveralls.io/r/bioidiap/bob.db.kboc16?branch=v2.0.0
.. image:: https://img.shields.io/badge/github-master-0000c0.png
:target: https://github.com/bioidiap/bob.db.kboc16/tree/master
.. image:: http://img.shields.io/pypi/v/bob.db.kboc16.png
:target: https://pypi.python.org/pypi/bob.db.kboc16
.. image:: http://img.shields.io/pypi/dm/bob.db.kboc16.png
:target: https://pypi.python.org/pypi/bob.db.kboc16
==================
KBOC16 Database
==================
This package contains the access API and descriptions for the `KBOC16
Database`_.
You would normally not install this package unless you are maintaining it. What
you would do instead is to tie it in at the package you need to **use** it.
There are a few ways to achieve this:
1. You can add this package as a requirement at the ``setup.py`` for your own
`satellite package
<https://github.com/idiap/bob/wiki/Virtual-Work-Environments-with-Buildout>`_
or to your Buildout ``.cfg`` file, if you prefer it that way. With this
method, this package gets automatically downloaded and installed on your
working environment, or
2. You can manually download and install this package using commands like
``easy_install`` or ``pip``.
The package is available in two different distribution formats:
1. You can download it from `PyPI <http://pypi.python.org/pypi>`_, or
2. You can download it in its source form from `its git repository
<https://github.com/mgbarrero/bob.db.KBOC16>`_. When you download the
version at the git repository, you will need to run a command to recreate
the backend SQLite file required for its operation. This means that the
database raw files must be installed somewhere in this case. With option
``a`` you can run in `dummy` mode and only download the raw data files for
the database once you are happy with your setup.
You can mix and match points 1/2 above based on your requirements. Here are
some examples:
Modify your setup.py and download from PyPI
===========================================
That is the easiest. Edit your ``setup.py`` in your satellite package and add
the following entry in the ``install_requires`` section (note: ``...`` means
`whatever extra stuff you may have in-between`, don't put that on your
script)::
install_requires=[
...
"bob.db.kboc16",
],
Proceed normally with your ``boostrap/buildout`` steps and you should be all
set. That means you can now import the ``bob.db.kboc16 `` namespace into your scripts.
Modify your buildout.cfg and download from git
==============================================
You will need to add a dependence to `mr.developer
<http://pypi.python.org/pypi/mr.developer/>`_ to be able to install from our
git repositories. Your ``buildout.cfg`` file should contain the following
lines::
[buildout]
...
extensions =mr.developer
auto-checkout = *
eggs = ...
bob.db.kboc16
[sources]
bob.db.KBOC16 = git https://github.com/mgbarrero/bob.db.kboc16.git
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bob.db.kboc16-2.0.0.zip
(136.9 kB
view details)
File details
Details for the file bob.db.kboc16-2.0.0.zip
.
File metadata
- Download URL: bob.db.kboc16-2.0.0.zip
- Upload date:
- Size: 136.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b48f9ac7838b29626380ea792d707ed54baae9b7223fab919e4c12c4dd694922 |
|
MD5 | 254c65efa0bdb46e32d62d9578495e59 |
|
BLAKE2b-256 | a288f1bdea0092a58ab950476c83abce8e2684389ebc6ae409daa3ac883f611b |