Metadata-Version: 2.1
Name: experimentum
Version: 1.0.2
Summary: Data-Management Framework for Running and Analyzing Computational Experiments
Home-page: https://github.com/PascalKleindienst/experimentum
Author: Pascal Kleindienst
Author-email: mail@pascalkleindienst.de
License: Apache
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=2.7.0
Description-Content-Type: text/markdown
Requires-Dist: SQLAlchemy (>=1.2.0)
Requires-Dist: termcolor
Requires-Dist: colorama
Requires-Dist: tabulate
Requires-Dist: inflection
Requires-Dist: six
Requires-Dist: psutil
Requires-Dist: matplotlib
Requires-Dist: Flask (>=1.0.0)
Provides-Extra: mssql
Requires-Dist: pyodbc ; extra == 'mssql'
Provides-Extra: mssql_pymssql
Requires-Dist: pymssql ; extra == 'mssql_pymssql'
Provides-Extra: mssql_pyodbc
Requires-Dist: pyodbc ; extra == 'mssql_pyodbc'
Provides-Extra: mysql
Requires-Dist: mysqlclient ; extra == 'mysql'
Provides-Extra: oracle
Requires-Dist: cx-oracle ; extra == 'oracle'
Provides-Extra: postgresql
Requires-Dist: psycopg2 ; extra == 'postgresql'
Provides-Extra: postgresql_pg8000
Requires-Dist: pg8000 ; extra == 'postgresql_pg8000'
Provides-Extra: postgresql_psycopg2binary
Requires-Dist: psycopg2-binary ; extra == 'postgresql_psycopg2binary'
Provides-Extra: postgresql_psycopg2cffi
Requires-Dist: psycopg2cffi ; extra == 'postgresql_psycopg2cffi'
Provides-Extra: pymysql
Requires-Dist: pymysql ; extra == 'pymysql'


# Experimentum
[![Build Status][build-status-badge]][build-status-link]
[![Codacy grade][codacy-quality-badge]][codacy-quality-link]
[![Codacy coverage][codacy-coverage-badge]][codacy-coverage-link]
![PyPI - Python Version][python_version_badge]
![PyPI - License][license_badge]
![PyPI][version_badge]


👨‍🔬🔬Experimentum is a domain-independent data-management framework for running and analyzing computational experiments.

## About Experimentum

![Experimentum Dashboard](https://pascalkleindienst.github.io/experimentum/_images/dashboard.png)
*Fig. 1: Web-Interface Dashboard*

The main purposes of Experimentum are to support experimenters in conducting routine tasks in complex experiments more efficiently. Experimentum itself takes care of the database-specific parts of the data management: creating and modifying the database schema, storing the  collected experiment results, and retrieving data from the database for further analysis.

### Features
- Domain-independent
- Independent of used database *(standard is a SQL database, but implementation can be swapped out to support NoSQL databases like MongoDB)*
- Migrations and Schema-builder to easily create the database-schema *(no need to know SQL!)*
- Visualize results with matplotlib
- Manage Experiments via CLI or via Web-Interface


## Installation 👨‍💻
The framework can be easily installed via `pip` with the following command:

`$ pip install experimentum`

>The different ``dbapi`` packages are not part of the package dependencies, so you must install them in order to connect to corresponding databases:
>* PostgreSQL: ``psycopg2``
>* MySQL: ``PyMySQL`` or ``mysqlclient``
>* Oracle: ``cx_oracle``
>* Microsoft SQL Server: ``pyodbc`` or ``pymssql``
>* SQLite: The ``sqlite3`` module is bundled with Python by default

### Getting Started
In order to use the experimentum framework, you’ll have to take care of some initial setup. You’ll need to auto-generate some code that creates the config files, migrations, repositories and other application-specific settings.

From the command line, `cd` into a directory where you would like to store your code, and then run the following command:

~~~
$ experimentum-quickstart
# if you you want to create the project in a subdirectory you can add the --root option
# experimentum-quickstart --root myproject
~~~

This willl create a **myproject** directory in your current directoy. The quickstart command will have created the following:
```
/
    config/
        app.json
        storage.json
    experiments/
        __init__.py
    logs/
    migrations/
        {TIMESTAMP}_create_experiments.py
        {TIMESTAMP}_create_testcase.py
        {TIMESTAMP}_create_performance.py
    repositories/
        __init__.py
        ExperimentRepository.py
        PerformanceRepository.py
        TestcaseRepository.py
    main.py
```
These files are:

- **main.py**: The main entry point of the framework. It lets you interact with the experimentum framework via the command line.
- **config/**: Contains all configuration files. You can place you own configuration files here. All *.json files will be loaded by the framework and available via the Config class under the config attribute of the App class.
- **config/app.json** and **storage.json**: Framework related settings. For more information see Configuration
- **experiments/**: Here you can place your experiments and their configrations.
- **logs/**: Contains the log files.
- **migrations/**: Your migration files are placed here.
- **migrations/{TIMESTAMP}_create_experiments.py**: Migration for creating the experiments table.
- **migrations/{TIMESTAMP}_create_testcase.py**: Migration for creating the testcase table.
- **migrations/{TIMESTAMP}_create_performance.py**: Migration for creating the performance table.
- **repositories/ExperimentRepository.py**: Repository for experiment data.
- **repositories/TestcaseRepository.py**: Repository for testcase data.
- **repositories/PerformanceRepository.py**: Repository for performance data.


## Documentation 📃
An extensive documentation about the usage of the Experimentum framework and each individual component can be found under: https://pascalkleindienst.github.io/experimentum/index.html

## Changelog 📝
The full changelog can be found in the [CHANGELOG.md](CHANGELOG.md) file.

## Contributing
Thank you for considering contributing to the Experimentum framework! The contribution guide can be found in the [CONTRIBUTING.md](.github/CONTRIBUTING.md) file.

## Acknowledgments 👍
- [@softgit](https://github.com/softgit) - Beta Tester

## License
Copyright 2019 Pascal Kleindienst

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


[build-status-badge]: https://travis-ci.com/PascalKleindienst/experimentum.svg?token=Hv3aZrJaquTDR7zjNhps&branch=master
[build-status-link]:https://travis-ci.com/PascalKleindienst/experimentum

[_codacy-quality-badge]: https://img.shields.io/codacy/grade/e85a2c346ef14265b3986ff7f58b3c7a.svg?style=flat-square
[codacy-quality-badge]: https://api.codacy.com/project/badge/Grade/e85a2c346ef14265b3986ff7f58b3c7a
[codacy-quality-link]: https://www.codacy.com?utm_source=github.com&utm_medium=referral&utm_content=PascalKleindienst/experimentum&utm_campaign=Badge_Grade

[_codacy-coverage-badge]: https://img.shields.io/codacy/coverage/e85a2c346ef14265b3986ff7f58b3c7a.svg?style=flat-square
[codacy-coverage-badge]: https://api.codacy.com/project/badge/Coverage/e85a2c346ef14265b3986ff7f58b3c7a
[codacy-coverage-link]: https://www.codacy.com?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=PascalKleindienst/experimentum&amp;utm_campaign=Badge_Coverage

[python_version_badge]: https://img.shields.io/pypi/pyversions/experimentum.svg?style=flat-square
[license_badge]: https://img.shields.io/pypi/l/experimentum.svg?style=flat-square
[version_badge]: https://img.shields.io/pypi/v/experimentum.svg?style=flat-square

