-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move schemas around for easier packaging * Various conf changes * Fix drill/clickhouse * Add baseball.computer note
- Loading branch information
Showing
19 changed files
with
263 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
CHADWICK_VERSION=v0.9.5 | ||
BASEBALLDATABANK_VERSION=ccb3cef05e68f0085db4ada6d4a9ebab9435b452 | ||
RETROSHEET_VERSION=48334a58f7446d59746d81aa73c3e9fa9b2676e9 | ||
RETROSHEET_VERSION=8449632be02cdf743932600f3218d77e059d5c91 | ||
CHADWICK_VERSION=aff8d779500da16521542e084c35cc3e159fd536 | ||
BASEBALLDATABANK_VERSION=28169eaf9007200d7f51160713c647eac64f9aa8 | ||
|
||
EXTRACT_DIR=extract | ||
REPO=doublewick/boxball | ||
VERSION=2023.0.0 | ||
VERSION=2024.0.0 | ||
BUILD_ENV=prod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,12 @@ | |
<br> | ||
</p> | ||
|
||
**Update**: I have released a new project, [baseball.computer](https://baseball.computer), which is designed | ||
as the successor to boxball. It is much easier to use (no Docker required, runs entirely in your browser/program) | ||
and includes many more tables, features, and quality controls. The event schema is different, which will be the main migration pain point in | ||
migration. _I aim to continue Boxball maintenence and updates as long as people are still using it,_ and I may try to rebase | ||
boxball on top of the new project to make maintaining both easier. Please let me know if there are things you can do in Boxball that you can't do yet in baseball.computer by filing an issue on the [repo](https://github.com/droher/baseball.computer) or reaching me at [email protected]. | ||
|
||
## Introduction | ||
**Boxball** creates prepopulated databases of the two most significant open source baseball datasets: | ||
[Retrosheet](http://retrosheet.org) and the [Baseball Databank](https://github.com/chadwickbureau/baseballdatabank). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pyhumps==1.6.1 | ||
zstandard==0.15.2 | ||
zstandard==0.22.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from typing import List | ||
from sqlalchemy import MetaData | ||
from .retrosheet import metadata as retrosheet_metadata | ||
from .baseballdatabank import metadata as baseballdatabank_metadata | ||
|
||
all_metadata: List[MetaData] = [baseballdatabank_metadata, retrosheet_metadata] |
File renamed without changes.
Oops, something went wrong.