Skip to content

Commit 93a7c1e

Browse files
moments before abandoning this project to reimplmenet in rust due to pip packaging
1 parent 909f30f commit 93a7c1e

File tree

3 files changed

+41
-12
lines changed

3 files changed

+41
-12
lines changed

pyproject.toml

+10
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "pythobets"
7+
version = "0.1.0"
8+
description = "A CLI Python app that assists with sports betting"
79
authors = [{name = "Jason Rodriguez", email = "[email protected]"}]
810
readme = "README.md"
911
license = {file = "LICENSE"}
1012
classifiers = ["License :: OSI Approved :: MIT License"]
1113
dynamic = ["version", "description"]
14+
dependencies = [
15+
"certifi==2022.12.7",
16+
"charset-normalizer==2.1.1",
17+
"click==8.1.3",
18+
"idna==3.4",
19+
"requests==2.28.1",
20+
"urllib3==1.26.13"
21+
]

pythobets/cli.py

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import click
2+
import os
3+
import configparser
4+
5+
APP_NAME = "pythobets"
6+
APP_DIR = click.get_app_dir(APP_NAME)
7+
8+
@click.group()
9+
def cli():
10+
pass
11+
12+
@cli.command()
13+
@click.option('--count', default=1, help='Number of greetings.')
14+
@click.option('--name', prompt='Your name',
15+
help='The person to greet.')
16+
def hello(count, name):
17+
"""Simple program that greets NAME for a total of COUNT times."""
18+
for x in range(count):
19+
click.echo(f"Hello {name}!")
20+
21+
22+
@cli.command()
23+
@click.option('--sports', '-s', default=['all'], help="Which sports you'd like to update, defaults to all, but can be limited to nba, nfl, soccer, or nhl", multiple=True)
24+
def update_predictions(sports):
25+
"""Command to update the latest sports analysts predictions."""
26+
print(sports)
27+
for i in sports:
28+
print(i)
29+
30+
if __name__ == '__main__':
31+
cli()

requirements.txt

-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,6 @@
11
certifi==2022.12.7
22
charset-normalizer==2.1.1
33
click==8.1.3
4-
colorama==0.4.6
5-
commonmark==0.9.1
6-
dload==0.6
7-
docutils==0.19
8-
flit==3.8.0
9-
flit-core==3.8.0
104
idna==3.4
11-
Pygments==2.13.0
125
requests==2.28.1
13-
rich==12.6.0
14-
shellingham==1.5.0
15-
tomli-w==1.0.0
16-
typer==0.7.0
17-
typing-extensions==4.4.0
186
urllib3==1.26.13

0 commit comments

Comments
 (0)