Metadata-Version: 2.1
Name: predictions
Version: 1.0.2
Summary: A package that predicts bloxflip games
Home-page: UNKNOWN
Author: DuxV2
Author-email: duxv420@gmail.com
License: UNKNOWN
Keywords: python,bloxflip,bloxflippredictor,predictor
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# import predictions



## Examples



Crash

```py

import predictions



o = predictions.crash

varName = o.crashpredictor()

#  varName returns a dict {{'crashchance': str(chance), 'crashprediction': str(prediction)}

chance = varName[crashchance]

prediction = varName[crashprediction]

print(chance, prediction)

```

Mines

```py

import predictions



o = predictions.mines

output = o.minespredictor(tileo, bombs) # tileo = How many tiles the user wants to open  # bombs = how many bombs on the field

print(output)

```



Towers

```py

import predictions



o = predictions.towers

output = o.towerspredictor()

print(output)

```



Roulette

```py

import predictions



o = predictions.roulette

output = o.roulettepredictor()

print(output)

```





