noteflow 0.1__py3-none-any.whl

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.
Files changed (36) hide show
  1. noteflow/__init__.py +4 -0
  2. noteflow/fonts/.DS_Store +0 -0
  3. noteflow/fonts/hack-bold-webfont.ttf +0 -0
  4. noteflow/fonts/hack-bold-webfont.woff +0 -0
  5. noteflow/fonts/hack-bold-webfont.woff2 +0 -0
  6. noteflow/fonts/hack-bolditalic-webfont.ttf +0 -0
  7. noteflow/fonts/hack-bolditalic-webfont.woff +0 -0
  8. noteflow/fonts/hack-bolditalic-webfont.woff2 +0 -0
  9. noteflow/fonts/hack-italic-webfont.ttf +0 -0
  10. noteflow/fonts/hack-italic-webfont.woff +0 -0
  11. noteflow/fonts/hack-italic-webfont.woff2 +0 -0
  12. noteflow/fonts/hack-regular-webfont.ttf +0 -0
  13. noteflow/fonts/hack-regular-webfont.woff +0 -0
  14. noteflow/fonts/hack-regular-webfont.woff2 +0 -0
  15. noteflow/fonts/spacemono-bold-webfont.ttf +0 -0
  16. noteflow/fonts/spacemono-bold-webfont.woff +0 -0
  17. noteflow/fonts/spacemono-bold-webfont.woff2 +0 -0
  18. noteflow/fonts/spacemono-bolditalic-webfont.ttf +0 -0
  19. noteflow/fonts/spacemono-bolditalic-webfont.woff +0 -0
  20. noteflow/fonts/spacemono-bolditalic-webfont.woff2 +0 -0
  21. noteflow/fonts/spacemono-italic-webfont.ttf +0 -0
  22. noteflow/fonts/spacemono-italic-webfont.woff +0 -0
  23. noteflow/fonts/spacemono-italic-webfont.woff2 +0 -0
  24. noteflow/fonts/spacemono-regular-webfont.ttf +0 -0
  25. noteflow/fonts/spacemono-regular-webfont.woff +0 -0
  26. noteflow/fonts/spacemono-regular-webfont.woff2 +0 -0
  27. noteflow/fonts/stylesheet.css +79 -0
  28. noteflow/noteflow.py +915 -0
  29. noteflow/static/favicon.ico +0 -0
  30. noteflow-0.1.dist-info/LICENSE +674 -0
  31. noteflow-0.1.dist-info/METADATA +133 -0
  32. noteflow-0.1.dist-info/RECORD +36 -0
  33. noteflow-0.1.dist-info/WHEEL +5 -0
  34. noteflow-0.1.dist-info/entry_points.txt +2 -0
  35. noteflow-0.1.dist-info/top_level.txt +1 -0
  36. noteflow.py +914 -0
noteflow/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ # noteflow/__init__.py
2
+
3
+ __version__ = '0.1'
4
+ __author__ = '@Xafloc'
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,79 @@
1
+ @font-face {
2
+ font-family: 'hackbold';
3
+ src: url('hack-bold-webfont.woff2') format('woff2'),
4
+ url('hack-bold-webfont.woff') format('woff'),
5
+ url('hack-bold-webfont.ttf') format('truetype');
6
+ font-weight: normal;
7
+ font-style: normal;
8
+
9
+ }
10
+
11
+ @font-face {
12
+ font-family: 'hackbold_italic';
13
+ src: url('hack-bolditalic-webfont.woff2') format('woff2'),
14
+ url('hack-bolditalic-webfont.woff') format('woff'),
15
+ url('hack-bolditalic-webfont.ttf') format('truetype');
16
+ font-weight: normal;
17
+ font-style: normal;
18
+
19
+ }
20
+
21
+ @font-face {
22
+ font-family: 'hackitalic';
23
+ src: url('hack-italic-webfont.woff2') format('woff2'),
24
+ url('hack-italic-webfont.woff') format('woff'),
25
+ url('hack-italic-webfont.ttf') format('truetype');
26
+ font-weight: normal;
27
+ font-style: normal;
28
+
29
+ }
30
+
31
+ @font-face {
32
+ font-family: 'hackregular';
33
+ src: url('hack-regular-webfont.woff2') format('woff2'),
34
+ url('hack-regular-webfont.woff') format('woff'),
35
+ url('hack-regular-webfont.ttf') format('truetype');
36
+ font-weight: normal;
37
+ font-style: normal;
38
+
39
+ }
40
+
41
+ @font-face {
42
+ font-family: 'space_monobold';
43
+ src: url('spacemono-bold-webfont.woff2') format('woff2'),
44
+ url('spacemono-bold-webfont.woff') format('woff'),
45
+ url('spacemono-bold-webfont.ttf') format('truetype');
46
+ font-weight: normal;
47
+ font-style: normal;
48
+
49
+ }
50
+
51
+ @font-face {
52
+ font-family: 'space_monobold_italic';
53
+ src: url('spacemono-bolditalic-webfont.woff2') format('woff2'),
54
+ url('spacemono-bolditalic-webfont.woff') format('woff'),
55
+ url('spacemono-bolditalic-webfont.ttf') format('truetype');
56
+ font-weight: normal;
57
+ font-style: normal;
58
+
59
+ }
60
+
61
+ @font-face {
62
+ font-family: 'space_monoitalic';
63
+ src: url('spacemono-italic-webfont.woff2') format('woff2'),
64
+ url('spacemono-italic-webfont.woff') format('woff'),
65
+ url('spacemono-italic-webfont.ttf') format('truetype');
66
+ font-weight: normal;
67
+ font-style: normal;
68
+
69
+ }
70
+
71
+ @font-face {
72
+ font-family: 'space_monoregular';
73
+ src: url('spacemono-regular-webfont.woff2') format('woff2'),
74
+ url('spacemono-regular-webfont.woff') format('woff'),
75
+ url('spacemono-regular-webfont.ttf') format('truetype');
76
+ font-weight: normal;
77
+ font-style: normal;
78
+
79
+ }