معرفی شرکت ها


experimentum-1.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Data-Management Framework for Running and Analyzing Computational Experiments
ویژگی مقدار
سیستم عامل -
نام فایل experimentum-1.0.3
نام experimentum
نسخه کتابخانه 1.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Pascal Kleindienst
ایمیل نویسنده mail@pascalkleindienst.de
آدرس صفحه اصلی https://github.com/PascalKleindienst/experimentum
آدرس اینترنتی https://pypi.org/project/experimentum/
مجوز Apache
# 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&utm_medium=referral&utm_content=PascalKleindienst/experimentum&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


نیازمندی

مقدار نام
>=1.2.0 SQLAlchemy
- termcolor
- colorama
- tabulate
- inflection
- six
- psutil
- matplotlib
>=1.0.0 Flask
- pyodbc
- pymssql
- pyodbc
- mysqlclient
- cx-oracle
- psycopg2
- pg8000
- psycopg2-binary
- psycopg2cffi
- pymysql


زبان مورد نیاز

مقدار نام
>=2.7.0 Python


نحوه نصب


نصب پکیج whl experimentum-1.0.3:

    pip install experimentum-1.0.3.whl


نصب پکیج tar.gz experimentum-1.0.3:

    pip install experimentum-1.0.3.tar.gz