chord-progression-network 0.1.1__tar.gz → 0.1.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chord_progression_network
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Network transition chord progressions
5
5
  Author-email: Gene Boggs <gene.boggs@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -762,9 +762,12 @@ g = Generator(verbose=True)
762
762
  phrase = g.generate()
763
763
 
764
764
  s = stream.Score()
765
+ p = stream.Part()
765
766
 
766
- for chord in phrase:
767
- s.append(chord.Chord(chord, type='whole'))
767
+ for notes in phrase:
768
+ p.append(chord.Chord(notes, type='whole'))
769
+
770
+ s.append(p)
768
771
 
769
772
  s.show()
770
773
  ```
@@ -64,9 +64,12 @@ g = Generator(verbose=True)
64
64
  phrase = g.generate()
65
65
 
66
66
  s = stream.Score()
67
+ p = stream.Part()
67
68
 
68
- for chord in phrase:
69
- s.append(chord.Chord(chord, type='whole'))
69
+ for notes in phrase:
70
+ p.append(chord.Chord(notes, type='whole'))
71
+
72
+ s.append(p)
70
73
 
71
74
  s.show()
72
75
  ```
@@ -1,4 +1,4 @@
1
1
  # The root of the entire project
2
2
  from chord_progression_network.chord_progression_network import Generator
3
3
 
4
- __version__ = "0.1.1"
4
+ __version__ = "0.1.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chord_progression_network
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Network transition chord progressions
5
5
  Author-email: Gene Boggs <gene.boggs@gmail.com>
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -762,9 +762,12 @@ g = Generator(verbose=True)
762
762
  phrase = g.generate()
763
763
 
764
764
  s = stream.Score()
765
+ p = stream.Part()
765
766
 
766
- for chord in phrase:
767
- s.append(chord.Chord(chord, type='whole'))
767
+ for notes in phrase:
768
+ p.append(chord.Chord(notes, type='whole'))
769
+
770
+ s.append(p)
768
771
 
769
772
  s.show()
770
773
  ```