Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(python3 -c ' *)",
"Bash(git log *)"
]
}
}
9 changes: 4 additions & 5 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
name: Upload Python Package

on:
push:
branches:
- main
release:
types: [published]

jobs:
deploy:
Expand All @@ -22,9 +21,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install build
- name: Build package
run: |
python setup.py sdist bdist_wheel
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ Please follow the [installation procedure](#installation--usage) and then run th

```python

import os
import time
import cfbd
from cfbd.rest import ApiException
from cfbd.exceptions import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.collegefootballdata.com
Expand Down