chord-progression-network 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/PKG-INFO +3 -3
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/README.md +2 -2
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network/__init__.py +1 -1
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network.egg-info/PKG-INFO +3 -3
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/LICENSE +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/pyproject.toml +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/setup.cfg +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network/chord_progression_network.py +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network.egg-info/SOURCES.txt +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network.egg-info/dependency_links.txt +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network.egg-info/requires.txt +0 -0
- {chord_progression_network-0.1.1 → chord_progression_network-0.1.2}/src/chord_progression_network.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chord_progression_network
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Network transition chord progressions
|
5
5
|
Author-email: Gene Boggs <gene.boggs@gmail.com>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -763,8 +763,8 @@ phrase = g.generate()
|
|
763
763
|
|
764
764
|
s = stream.Score()
|
765
765
|
|
766
|
-
for
|
767
|
-
s.append(chord.Chord(
|
766
|
+
for notes in phrase:
|
767
|
+
s.append(chord.Chord(notes, type='whole'))
|
768
768
|
|
769
769
|
s.show()
|
770
770
|
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: chord_progression_network
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: Network transition chord progressions
|
5
5
|
Author-email: Gene Boggs <gene.boggs@gmail.com>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -763,8 +763,8 @@ phrase = g.generate()
|
|
763
763
|
|
764
764
|
s = stream.Score()
|
765
765
|
|
766
|
-
for
|
767
|
-
s.append(chord.Chord(
|
766
|
+
for notes in phrase:
|
767
|
+
s.append(chord.Chord(notes, type='whole'))
|
768
768
|
|
769
769
|
s.show()
|
770
770
|
```
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|