Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (17.5%) to scientific vocabulary
Repository
Python API
Basic Info
Statistics
- Stars: 26
- Watchers: 1
- Forks: 2
- Open Issues: 0
- Releases: 3
Metadata Files
readme.md
Efficient & Feature-Rich Integrated Decision Environment
Quick Intro
FelooPy (/fɛlupaɪ/) is a user-friendly tool for coding, modeling, and solving decision problems. It helps you focus on analysis and offers and supports a wide range of mathematical and statistical models and algorithms for decision-making.
Quick Features
- Linear & Non-Linear Programming: Exact algorithms for LP/NLP.
- Integer & Mixed-Integer Programming: Exact algorithms for IP/MIP.
- General Purpose Programming: Heuristic algorithms for various problems.
- Constraint Programming: Techniques for constraint satisfaction.
- Multi-Objective Decision-Making: Optimizing multiple objectives (MODM/MCDM).
- Multi-Attribute Decision-Making: Evaluating opinions on alternatives using multiple attributes (MADM/MCDM).
Quick Installation
You can install feloopy inside a Python>=3.1x.x virtual environment:
bash
pip install -U "feloopy[stock]==0.3.9"
For supporting the developer, testing the latest version, and reporting bugs or contributing to the codebase, use:
bash
pip install "feloopy[stock] @ git+https://github.com/feloopy/feloopy.git"
Quick Testing
Here is an example to test FelooPy's functionality:
```python import feloopy as flp
def example(m): x = m.bvar(name="x") y = m.pvar(name="y", bound=[0, 1]) m.con(x + y <= 1, name="c1") m.con(x - y >= 1, name="c2") m.obj(x + y) return m
flp.search(example,directions=["max"]).clean_report() ```
Quick Citation
To cite or give credit to FelooPy in publications, projects, presentations, web pages, blog posts, etc., please use one of the following entries based on the version you used:
APA 7th Edition
Tafakkori, K. (2022–2025). FelooPy: Efficient and feature-rich integrated decision environment (Version 0.3.9) [Computer software]. GitHub. https://github.com/feloopy/feloopy
For APA 6th Edition, use: Tafakkori, K. (2025). FelooPy: Efficient and feature-rich integrated decision environment (Version 0.3.9) [Computer software]. Retrieved from https://github.com/feloopy/feloopy
LaTeX/BibTeX
bibtex
@software{tafakkori_feloopy_2025,
author = {Keivan Tafakkori},
title = {{FelooPy: Efficient and Feature-Rich Integrated Decision Environment}},
year = {2025},
version = {0.3.9},
publisher = {GitHub},
url = {https://github.com/feloopy/feloopy},
note = {Original release: September 2022},
}
Previous citations
#### Versions before 0.3.6 ##### APA 6th/7th Edition Tafakkori, K. (2022). FelooPy: An integrated optimization environment for AutoOR in Python [Python Library]. Retrieved from https://github.com/ktafakkori/feloopy (Original work published September 2022). ##### LaTeX/BiBTeX ``` @software{ktafakkori2022Sep, author = {Keivan Tafakkori}, title = { {FelooPy: An integrated optimization environment for AutoOR in Python} }, year = {2022}, month = sep, publisher = {GitHub}, url = {https://github.com/ktafakkori/feloopy/} } ```Owner
- Name: FelooPy
- Login: feloopy
- Kind: organization
- Email: feloopy@gmail.com
- Website: https://feloopy.github.io
- Twitter: feloopy
- Repositories: 1
- Profile: https://github.com/feloopy
Integrated Decision Environment
Citation (citation.cff)
cff-version: 1.2.0
message: 'If you use this software, please cite it as follows:'
title: 'FelooPy: Efficient and feature-rich integrated decision environment'
authors:
- family-names: Tafakkori
given-names: Keivan
name: Keivan Tafakkori
version: 0.3.9
date-released: '2025-07-02'
repository-code: https://github.com/feloopy/feloopy/
preferred-citation:
type: software
authors:
- family-names: Tafakkori
given-names: Keivan
title: 'FelooPy: Efficient and feature-rich integrated decision environment'
version: 0.3.8
month: 5
year: 2025
publisher: GitHub
url: https://github.com/feloopy/feloopy/
license: MIT
GitHub Events
Total
- Release event: 3
- Watch event: 22
- Push event: 39
- Fork event: 2
- Create event: 3
Last Year
- Release event: 3
- Watch event: 22
- Push event: 39
- Fork event: 2
- Create event: 3
Packages
- Total packages: 1
-
Total downloads:
- pypi 73 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 21
- Total maintainers: 1
pypi.org: feloopy
FelooPy: Efficient and feature-rich integrated decision environment
- Homepage: https://feloopy.github.io/
- Documentation: https://feloopy.readthedocs.io/
- License: MIT
-
Latest release: 0.3.9
published 8 months ago