معرفی شرکت ها


degen-0.1.6


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Programming with betting odds, made simple
ویژگی مقدار
سیستم عامل -
نام فایل degen-0.1.6
نام degen
نسخه کتابخانه 0.1.6
نگهدارنده []
ایمیل نگهدارنده ['jzuhusky@gmail.com']
نویسنده Joey Zuhusky
ایمیل نویسنده jzuhusky@gmail.com
آدرس صفحه اصلی https://github.com/jzuhusky/degen
آدرس اینترنتی https://pypi.org/project/degen/
مجوز MIT
# Degen ### Programming with betting odds, made simple *pronounced "dee-gen"* as in [Degenerate Gambler](https://www.urbandictionary.com/define.php?term=Degenerate%20Gambler) ![alt text](https://github.com/jzuhusky/degen/blob/master/coverage.svg?raw=true) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) ## Table of Contents 1. [Installation](#installation) 2. [Getting Started](#getting-started) 3. [Examples](#examples) 4. [Developing / Contributing](#contributing--developing) ### Installation ```bash pip install degen ``` ## Getting Started ```python from degen import AmericanOdds odds = AmericanOdds(-110) print(odds.value) # >>> -110 ``` ### Easy conversion between odds types There are 3 main `Odds` types provided by degen: * `AmericanOdds` * `DecimalOdds` * `ImpliedProbability` They all support the methods: * `.to_american_odds()` * `.to_decimal_odds()` * `.to_implied_probability()` *No more formulas* ## Examples Example 0: simple odds objects ```python from degen import AmericanOdds, DecimalOdds, ImpliedProbability american_odds = AmericanOdds(-110) decimal_odds: DecimalOdds = american_odds.to_decimal_odds() print(decimal_odds.value) # >>> 1.909090909090909090909090909 implied_probability: ImpliedProbability = american_odds.to_implied_probability() print(implied_probability.value) # >>> 0.5238095238095238095238095238 ``` Example 1: Bitwise operators for simple odds computation, parlay using bitwise-and operator ```python odds1 = AmericanOdds(-110) odds2 = AmericanOdds(-110) parlay_odds: AmericanOdds = odds1 & odds2 print(parlay_odds.value) # >>> 264.4628099173553719008264463 ``` Example 2: Computing *juice* or *the vig* using the bitwise-or operator ```python juice = AmericanOdds(-110) | AmericanOdds(-110) # Juice can't be represented by american odds, so the type of the juice # variable will be "ImpliedProbability" after the computation, which is still an Odds type. print(type(juice)) # >>> <class 'degen.odds_models.ImpliedProbability'> # ImpliedProb > 1.0 provides a measure of "juiced" odds, or the book "vig" print(juice.value) # >>> 1.047619047619047619047619048 # You can ask all odds objects if they're "juiced" print(juice.is_juiced) # >>> True ``` # Contributing / Developing Install requirements ```bash pip install -r requirements-dev.txt -r requirements.txt ``` Run tox suite: * Run black code fmt checks * Run unittests * Check coverage * Generate coverage report & badge ``` tox ``` Test coverage has a floor of 95% - this will block a PR from getting approval if this threshold isn't met. ## Todo Contributions from other developers are always welcome, here are some things that need to be implemented: * Fractional Odds * Hong Odds ### Notes * Everythign done with Decimals for numerical precision


نحوه نصب


نصب پکیج whl degen-0.1.6:

    pip install degen-0.1.6.whl


نصب پکیج tar.gz degen-0.1.6:

    pip install degen-0.1.6.tar.gz