-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from dual-wield-ray/dev/refactor-for-mvp
Further cleanup in preparation for MVP release
- Loading branch information
Showing
29 changed files
with
126 additions
and
138 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
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,7 @@ | ||
""" | ||
Calls the exporter when running 'pydrumscore' from the command line with 'python -m pydrumscore' | ||
""" | ||
from pydrumscore.core import export | ||
from pydrumscore import export | ||
|
||
if __name__ == "__main__": | ||
export.main() |
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
File renamed without changes.
Empty file.
File renamed without changes.
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,10 +1,10 @@ | ||
# pylint: disable = missing-module-docstring | ||
|
||
import pydrumscore as api | ||
import pydrumscore as pds | ||
|
||
metadata = api.Metadata(workTitle="Flam_1b") | ||
metadata = pds.Metadata(workTitle="Flam_1b") | ||
|
||
|
||
# Fill up this array with api.Measure objects | ||
# Fill up this array with Measure objects | ||
measures = [] | ||
measures += api.Measure(fm=[1]) | ||
measures += pds.Measure(fm=[1]) |
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,9 +1,9 @@ | ||
# pylint: disable = missing-module-docstring | ||
|
||
import pydrumscore as api | ||
import pydrumscore as pds | ||
|
||
metadata = api.Metadata(workTitle="Ghost_1b") | ||
metadata = pds.Metadata(workTitle="Ghost_1b") | ||
|
||
# Fill up this array with api.Measure objects | ||
measures = [] | ||
measures += api.Measure(sg=[1]) | ||
measures += pds.Measure(sg=[1]) |
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,8 +1,8 @@ | ||
# pylint: disable = missing-module-docstring | ||
|
||
import pydrumscore as api | ||
from pydrumscore.core.beats import SILENCE | ||
import pydrumscore as pds | ||
from pydrumscore.beats import SILENCE | ||
|
||
metadata = api.Metadata(workTitle="Rémy's Wonderful Song") | ||
metadata = pds.Metadata(workTitle="Rémy's Wonderful Song") | ||
|
||
measures = [SILENCE] |
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,10 +1,10 @@ | ||
# pylint: disable = missing-module-docstring | ||
|
||
import pydrumscore as api | ||
from pydrumscore.core.beats import MONEY_BEAT | ||
import pydrumscore as pds | ||
from pydrumscore.beats import MONEY_BEAT | ||
|
||
measures = [] | ||
|
||
metadata = api.Metadata(workTitle="MoneyBeat_1b") | ||
metadata = pds.Metadata(workTitle="MoneyBeat_1b") | ||
|
||
measures += MONEY_BEAT |
Oops, something went wrong.