starplot 0.13.0__py2.py3-none-any.whl → 0.15.0__py2.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.
- starplot/__init__.py +5 -2
- starplot/base.py +311 -197
- starplot/cli.py +33 -0
- starplot/coordinates.py +6 -0
- starplot/data/__init__.py +6 -24
- starplot/data/bigsky.py +58 -40
- starplot/data/constellation_lines.py +827 -0
- starplot/data/constellation_stars.py +1501 -0
- starplot/data/constellations.py +600 -27
- starplot/data/db.py +17 -0
- starplot/data/dsos.py +24 -141
- starplot/data/stars.py +45 -24
- starplot/geod.py +0 -6
- starplot/geometry.py +181 -0
- starplot/horizon.py +302 -231
- starplot/map.py +100 -463
- starplot/mixins.py +75 -14
- starplot/models/__init__.py +1 -1
- starplot/models/base.py +18 -129
- starplot/models/constellation.py +55 -32
- starplot/models/dso.py +132 -67
- starplot/models/moon.py +57 -78
- starplot/models/planet.py +44 -69
- starplot/models/star.py +91 -60
- starplot/models/sun.py +32 -53
- starplot/optic.py +21 -18
- starplot/plotters/__init__.py +2 -0
- starplot/plotters/constellations.py +342 -0
- starplot/plotters/dsos.py +49 -68
- starplot/plotters/experimental.py +171 -0
- starplot/plotters/milkyway.py +39 -0
- starplot/plotters/stars.py +126 -122
- starplot/profile.py +16 -0
- starplot/settings.py +26 -0
- starplot/styles/__init__.py +2 -0
- starplot/styles/base.py +56 -34
- starplot/styles/ext/antique.yml +11 -9
- starplot/styles/ext/blue_dark.yml +8 -10
- starplot/styles/ext/blue_gold.yml +135 -0
- starplot/styles/ext/blue_light.yml +14 -12
- starplot/styles/ext/blue_medium.yml +23 -20
- starplot/styles/ext/cb_wong.yml +9 -7
- starplot/styles/ext/grayscale.yml +4 -3
- starplot/styles/ext/grayscale_dark.yml +7 -5
- starplot/styles/ext/map.yml +9 -6
- starplot/styles/ext/nord.yml +7 -7
- starplot/styles/ext/optic.yml +1 -1
- starplot/styles/extensions.py +1 -0
- starplot/utils.py +19 -0
- starplot/warnings.py +21 -0
- {starplot-0.13.0.dist-info → starplot-0.15.0.dist-info}/METADATA +19 -18
- starplot-0.15.0.dist-info/RECORD +97 -0
- starplot-0.15.0.dist-info/entry_points.txt +3 -0
- starplot/data/bayer.py +0 -3499
- starplot/data/flamsteed.py +0 -2682
- starplot/data/library/constellation_borders_inv.gpkg +0 -0
- starplot/data/library/constellation_lines_hips.json +0 -709
- starplot/data/library/constellation_lines_inv.gpkg +0 -0
- starplot/data/library/constellations.gpkg +0 -0
- starplot/data/library/constellations_hip.fab +0 -88
- starplot/data/library/milkyway.gpkg +0 -0
- starplot/data/library/milkyway_inv.gpkg +0 -0
- starplot/data/library/ongc.gpkg.zip +0 -0
- starplot/data/library/stars.bigsky.mag11.parquet +0 -0
- starplot/data/library/stars.hipparcos.parquet +0 -0
- starplot/data/messier.py +0 -111
- starplot/data/prep/__init__.py +0 -0
- starplot/data/prep/constellations.py +0 -108
- starplot/data/prep/dsos.py +0 -299
- starplot/data/prep/utils.py +0 -16
- starplot/models/geometry.py +0 -44
- starplot-0.13.0.dist-info/RECORD +0 -101
- {starplot-0.13.0.dist-info → starplot-0.15.0.dist-info}/LICENSE +0 -0
- {starplot-0.13.0.dist-info → starplot-0.15.0.dist-info}/WHEEL +0 -0
starplot/utils.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import math
|
|
2
2
|
from datetime import datetime
|
|
3
3
|
|
|
4
|
+
import numpy as np
|
|
4
5
|
from pytz import timezone
|
|
5
6
|
|
|
6
7
|
|
|
@@ -149,3 +150,21 @@ def azimuth_to_string(azimuth_degrees: int):
|
|
|
149
150
|
|
|
150
151
|
def dt_or_now(dt):
|
|
151
152
|
return dt or timezone("UTC").localize(datetime.now())
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
def points_on_line(start, end, num_points=100):
|
|
156
|
+
"""Generates points along a line segment.
|
|
157
|
+
|
|
158
|
+
Args:
|
|
159
|
+
start (tuple): (x, y) coordinates of the starting point.
|
|
160
|
+
end (tuple): (x, y) coordinates of the ending point.
|
|
161
|
+
num_points (int): Number of points to generate.
|
|
162
|
+
|
|
163
|
+
Returns:
|
|
164
|
+
list: List of (x, y) coordinates of the generated points.
|
|
165
|
+
"""
|
|
166
|
+
|
|
167
|
+
x_coords = np.linspace(start[0], end[0], num_points)
|
|
168
|
+
y_coords = np.linspace(start[1], end[1], num_points)
|
|
169
|
+
|
|
170
|
+
return list(zip(x_coords, y_coords))
|
starplot/warnings.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import warnings
|
|
2
|
+
|
|
3
|
+
import matplotlib
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def suppress():
|
|
7
|
+
# ignore noisy matplotlib warnings
|
|
8
|
+
warnings.filterwarnings(
|
|
9
|
+
"ignore",
|
|
10
|
+
message="Setting the 'color' property will override the edgecolor or facecolor properties",
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
# Silence various matplotlib logs (e.g. building font cache)
|
|
14
|
+
matplotlib.set_loglevel("critical")
|
|
15
|
+
|
|
16
|
+
# Silence all user warnings
|
|
17
|
+
warnings.filterwarnings("ignore", category=UserWarning)
|
|
18
|
+
|
|
19
|
+
# Silence noisy cartopy warnings
|
|
20
|
+
warnings.filterwarnings("ignore", module="cartopy")
|
|
21
|
+
warnings.filterwarnings("ignore", module="shapely")
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: starplot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: Star charts and maps of the sky
|
|
5
|
-
Keywords: astronomy,stars,charts,maps,constellations
|
|
5
|
+
Keywords: astronomy,stars,charts,maps,constellations,sky,plotting
|
|
6
6
|
Author-email: Steve Berardi <hello@steveberardi.com>
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -17,34 +16,36 @@ Requires-Dist: pandas >= 1.4.0
|
|
|
17
16
|
Requires-Dist: pydantic >= 2.0.3
|
|
18
17
|
Requires-Dist: shapely >= 2.0.1
|
|
19
18
|
Requires-Dist: skyfield >= 1.41
|
|
20
|
-
Requires-Dist: adjustText >= 1.0
|
|
21
19
|
Requires-Dist: cartopy >= 0.21.1
|
|
22
|
-
Requires-Dist: geopandas >= 0.
|
|
20
|
+
Requires-Dist: geopandas >= 1.0.1
|
|
23
21
|
Requires-Dist: pillow >= 10.0.0
|
|
24
22
|
Requires-Dist: PyYAML >= 6.0.1
|
|
25
23
|
Requires-Dist: pyarrow >= 14.0.2
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist: pyogrio >= 0.7.2
|
|
24
|
+
Requires-Dist: pyogrio >= 0.10.0
|
|
28
25
|
Requires-Dist: rtree >= 1.2.0
|
|
29
26
|
Requires-Dist: requests >= 2.31.0
|
|
27
|
+
Requires-Dist: duckdb >= 1.1.3
|
|
28
|
+
Requires-Dist: ibis-framework[duckdb, geospatial] >= 9.5.0
|
|
30
29
|
Project-URL: Documentation, https://starplot.dev
|
|
31
30
|
Project-URL: Home, https://starplot.dev
|
|
32
31
|
Project-URL: Source, https://github.com/steveberardi/starplot
|
|
33
32
|
|
|
34
33
|
# <img src="https://raw.githubusercontent.com/steveberardi/starplot/main/docs/images/favicon.svg" width="48" style="vertical-align:middle"> Starplot
|
|
35
|
-

|
|
35
|
+

|
|
36
|
+

|
|
37
|
+

|
|
39
38
|
|
|
40
39
|
**Starplot** is a Python library for creating star charts and maps of the sky.
|
|
41
40
|
|
|
42
|
-
- ⭐ **Zenith Plots** -
|
|
41
|
+
- ⭐ **Zenith Plots** - shows the entire sky at a specific time and place
|
|
43
42
|
- 🗺️ **Map Plots** - including many map projections
|
|
44
|
-
-
|
|
45
|
-
-
|
|
43
|
+
- 🌃 **Horizon Plots** - shows the horizon at a specific time and place
|
|
44
|
+
- 🔭 **Optic Plots** - shows what you'll see through an optic (e.g. telescope) at a specific time and place
|
|
45
|
+
- 🪐 **Planets and Deep Sky Objects (DSOs)** - more than 14,000 objects built-in
|
|
46
46
|
- 🎨 **Custom Styles** - for all objects
|
|
47
47
|
- 📥 **Export** - png, svg, jpeg
|
|
48
|
+
- 🚀 **Data Backend** - powered by DuckDB + Ibis for fast object lookup
|
|
48
49
|
- 🧭 **Label Collision Avoidance**
|
|
49
50
|
|
|
50
51
|
## Examples
|
|
@@ -76,11 +77,12 @@ p = sp.MapPlot(
|
|
|
76
77
|
style=sp.styles.PlotStyle().extend(
|
|
77
78
|
sp.styles.extensions.BLUE_MEDIUM,
|
|
78
79
|
),
|
|
79
|
-
resolution=
|
|
80
|
+
resolution=4096,
|
|
80
81
|
autoscale=True,
|
|
81
82
|
)
|
|
82
83
|
p.constellations()
|
|
83
|
-
p.stars(
|
|
84
|
+
p.stars(where=[_.magnitude < 4.6])
|
|
85
|
+
p.constellation_labels()
|
|
84
86
|
p.export("starchart.png")
|
|
85
87
|
```
|
|
86
88
|
|
|
@@ -105,11 +107,10 @@ https://discord.gg/WewJJjshFu
|
|
|
105
107
|
Contributing to Starplot is welcome and very much appreciated! Please see [here](CONTRIBUTING.md) for details.
|
|
106
108
|
|
|
107
109
|
## Coming Soon
|
|
108
|
-
-
|
|
110
|
+
- 🧮 Coordinate system helpers
|
|
109
111
|
- 🌑 Planet moons
|
|
110
112
|
- ✴️ Custom markers
|
|
111
113
|
- ☄️ Comet model
|
|
112
|
-
- 💫 Better constellation label placement
|
|
113
114
|
- 😄 🔭 Clear skies
|
|
114
115
|
|
|
115
116
|
See more details on the [Public Roadmap](https://trello.com/b/sUksygn4/starplot-roadmap)
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
starplot/__init__.py,sha256=1_SAR3tp3ToZmW-U7ZAJu8-W3Q-YJCNhhtAMjgnG0o0,558
|
|
2
|
+
starplot/base.py,sha256=JjBqM96gPoBFngbxZ5dsHDKwbsBsrviEipAlljtl8YU,42842
|
|
3
|
+
starplot/callables.py,sha256=_zDGCAJTqqNLvCtcIt4PVEe2L0Ggvl6pj-7ZFI-0zqI,4043
|
|
4
|
+
starplot/cli.py,sha256=W-V-h1DeD8zwzdhYuQ-i26LSZWYcS_NJ0zRXa-dmy1o,711
|
|
5
|
+
starplot/coordinates.py,sha256=7LDz32VTKa8H-4F67-XvzmjpcTVojZwYVJzXZkBaZ3U,136
|
|
6
|
+
starplot/geod.py,sha256=pVnDr-yxGjOIXwKCknbtCZiRle5IqRnqpY43s0PMnmA,2574
|
|
7
|
+
starplot/geometry.py,sha256=wr1vJo-WWP51bfblVC2CAR7288yWrG31dZg9ks9vfYg,4359
|
|
8
|
+
starplot/horizon.py,sha256=vsJCsJE5VJEe0vlx6A-L70LAGjbey9xMjgUcRSj1F4Y,15808
|
|
9
|
+
starplot/map.py,sha256=CIJC2CoAhH4SlV-dgLC4xDqCoyqXl7DOGegZafRIoqU,23441
|
|
10
|
+
starplot/mixins.py,sha256=8X-LhFbsVNBZN1PKIjlftknppRpcQMOMYE15gdNC-sE,4857
|
|
11
|
+
starplot/optic.py,sha256=7lGUOJf7z-xCu84zlsALF154Jm2riiHO3JzVPAfptKY,15318
|
|
12
|
+
starplot/optics.py,sha256=JfSzfrCx_g8r3upyukgJUtXekwyVkCJ3dZxdOclfzU4,8624
|
|
13
|
+
starplot/profile.py,sha256=V5LOZFDdnGo-P8ikWvV3jmUVJIKO3gd4H2bjBlk7aUM,300
|
|
14
|
+
starplot/projections.py,sha256=o5wHLoaU8o0s0Z2kkWKxeNbOrskvWG88ULAXDoLOGeA,3423
|
|
15
|
+
starplot/settings.py,sha256=DCylQwkrgUki1yHrelMF483t98NIDQ1bivCeWfeknJw,627
|
|
16
|
+
starplot/utils.py,sha256=49m8QXJl188Pgpef_82gyykly7ZjfAuHVEcSA5QFITA,3720
|
|
17
|
+
starplot/warnings.py,sha256=uKvGSAVpWKZIHMKxxegO5owFJnKvBYLyq3pJatD0qQ4,594
|
|
18
|
+
starplot/data/__init__.py,sha256=3M_uHlwyIsc9cyfabnOp-6CoXoMteYAaWuj4St9_1BE,308
|
|
19
|
+
starplot/data/bigsky.py,sha256=SiHzzhoy-DAZpJ-Q_-lmJqHRLwTKgosaVOEXYWQ94PI,2820
|
|
20
|
+
starplot/data/constellation_lines.py,sha256=Uz5Qd754ayXYQdUsPR5R1QN3AxK0yewgp1c0rOqMH7w,19281
|
|
21
|
+
starplot/data/constellation_stars.py,sha256=v5Xd8eXlzaNPFuJ7U_kB0pP3FT_bXGToo6gHw-jbQIk,38199
|
|
22
|
+
starplot/data/constellations.py,sha256=E-wEyZ4W5lcUS_StH26F9NMRsFyFs-utGxGcfRK7zBk,15484
|
|
23
|
+
starplot/data/db.py,sha256=77oWr2HkZ95K_mG4vLc-ivP_SOFIiFYwoqrtTw-YWtk,384
|
|
24
|
+
starplot/data/dsos.py,sha256=tx-6oDzKPthg-nxfda2ah5t10USdyrckP4UjM5k-e10,1237
|
|
25
|
+
starplot/data/ecliptic.py,sha256=Qre9YdFbTC9mAx-vd2C0Ou4CsnRehIScnTpmEUDDYcM,4638
|
|
26
|
+
starplot/data/stars.py,sha256=PWAszqlIDpndySIW-uLAibCwbPia_AE6nK_w3pAQxz0,11862
|
|
27
|
+
starplot/data/utils.py,sha256=RPk3bnfL-KtjMk1VQygDD27INz_gEya_B1hu7X4K8hU,772
|
|
28
|
+
starplot/data/library/de421_2001.bsp,sha256=ymkZigAd8Vgscq_DYkdR4nZ1VGD5wwPd-sxe6HiiTns,5341104
|
|
29
|
+
starplot/models/__init__.py,sha256=qi4arVatzEcR9TAbHadSbhq8xRhSb1_Br3UKNv4FP7o,330
|
|
30
|
+
starplot/models/base.py,sha256=zuHcRSs4eSyIwtyUTsAk9a73bnIW2gfWh7Ze_zt8Tq0,1623
|
|
31
|
+
starplot/models/constellation.py,sha256=qfBcWyQRL2m83wNIKiPk-4bGRblYvabxymW6TJ0nXFI,3355
|
|
32
|
+
starplot/models/dso.py,sha256=KHd5N6F2Y7EhO3RWUpmjfl_162uwNqhlC1Zqh9p0Ev4,6942
|
|
33
|
+
starplot/models/moon.py,sha256=FNIzdSMV-5ET7WtmSxWz_4n-U4IlIomQpGTbOMl7fxk,5104
|
|
34
|
+
starplot/models/objects.py,sha256=BXwUMT-zPiOYBWYV7L-TRDfPo6lsx_AIk3yxJ3qi0ck,683
|
|
35
|
+
starplot/models/planet.py,sha256=QekNlSRw6tv5-TY8qUFvtLKxmz7ao6nv3Iwl7FiGeHY,5014
|
|
36
|
+
starplot/models/star.py,sha256=7LPlqZInBdu4D5XH2sJDiM6IJvtyVDAZvijMMH5hGAY,4693
|
|
37
|
+
starplot/models/sun.py,sha256=iUforZSmzw-o_tOKHgYslhFHUQTQxllDKMG1HdzlI98,2695
|
|
38
|
+
starplot/plotters/__init__.py,sha256=p2wpyY_jK5_zOWWbGtokw4tcHBTuILjAhuobghDvdvM,223
|
|
39
|
+
starplot/plotters/constellations.py,sha256=udfyx4_hCQ3cV_Ldr_kEY1p3E-MhR2o4oJBTPikaSxo,12823
|
|
40
|
+
starplot/plotters/dsos.py,sha256=rmLV5bpC1t-TkbKeDy57at07-9xN63oYbdt0jn6Im5s,8283
|
|
41
|
+
starplot/plotters/experimental.py,sha256=P4T9jJyAnViv6k2RJpmYEY8uI-0dyd-E6NeIRUWbu6c,5909
|
|
42
|
+
starplot/plotters/milkyway.py,sha256=ofenSqpqeeg7_LlWnH1PJiiHstzD-qQL7Lk6-WlEv2M,1122
|
|
43
|
+
starplot/plotters/stars.py,sha256=npIghOtFChA6RRDffyc1el1_YwEFN4jKmTixLynqJTA,11738
|
|
44
|
+
starplot/styles/__init__.py,sha256=rtwzAylENUGIYGDPl106RGjU6e89yNURoxmPD3I_HM0,193
|
|
45
|
+
starplot/styles/base.py,sha256=fuj_hWqF5xViJMhisyRCh88YRNHCcvxIqGeBlBIm6cw,36405
|
|
46
|
+
starplot/styles/extensions.py,sha256=Mv9FTSbwEtB4IFuo_5MFDlHRYQsKdC-19uLYtmJSUuE,649
|
|
47
|
+
starplot/styles/fonts.py,sha256=wC3cHuFkBUaZM5fKpT_ExV7anrRKMJX46mjEfcSRQMU,379
|
|
48
|
+
starplot/styles/helpers.py,sha256=AGgHWaHLzJZ6jicvwPzY-p5oSHE0H8gDk1raCmeRFtg,3032
|
|
49
|
+
starplot/styles/markers.py,sha256=gEkKBXP2wL3_GA2skIwg3TP86MnmZqDtbrL3OtEq1lk,9135
|
|
50
|
+
starplot/styles/ext/antique.yml,sha256=54Qdiqg_i4poh4GUlon-JfGwDx_gQh5Eqvz7yO6tkSc,3271
|
|
51
|
+
starplot/styles/ext/blue_dark.yml,sha256=8XcD5nphKE2oR37MbhD01X3fo0TVAwQw3ptpom-Z51g,3048
|
|
52
|
+
starplot/styles/ext/blue_gold.yml,sha256=qDZsJ_ALUZ6lwW52bnFmLRWCpIXyif3Sbkh_XmVAjFc,2387
|
|
53
|
+
starplot/styles/ext/blue_light.yml,sha256=GHRUgCPuod1uNQ0qg86UDB_2oqUQtPwK6w52ybt5IQY,2215
|
|
54
|
+
starplot/styles/ext/blue_medium.yml,sha256=DETMuqeo4qbMsELl4xO62AGRYT10do2-wy-JZ2SmwWM,2453
|
|
55
|
+
starplot/styles/ext/cb_wong.yml,sha256=SLD6t-VJm2izS7l0RDdQXyFt8xvEdqtG6WnHMdw3Dm8,2364
|
|
56
|
+
starplot/styles/ext/color_print.yml,sha256=z9kh39yHvgUnZaBwn3ZHYXwkvhPIt2QKLnEwVyUksY0,1812
|
|
57
|
+
starplot/styles/ext/grayscale.yml,sha256=7LTv8gwW6Btojk25iFBTWESnnzXJs0P_YBIsMHdlGnA,1332
|
|
58
|
+
starplot/styles/ext/grayscale_dark.yml,sha256=saD0WTTloCBnL_ThcM7DKP5DD3YSq0luwbw3VF7AeY8,2606
|
|
59
|
+
starplot/styles/ext/map.yml,sha256=uN2_IPMl_XMOgFX_rsGeEIDrLBu0Z1RDP1yErPH9ZuM,142
|
|
60
|
+
starplot/styles/ext/nord.yml,sha256=-eYXvXjv2UuwPl4_1HuIpwT22-ctMN9WbZ6YLqhII0Q,2684
|
|
61
|
+
starplot/styles/ext/optic.yml,sha256=ZF6YXjVXeSrptd9q8JQDP175GCLHOg6IYEncBmLhyx0,270
|
|
62
|
+
starplot/styles/fonts-library/gfs-didot/DESCRIPTION.en_us.html,sha256=mqYfpdiHL5yrU74_8eBAq70K8JMSB71uqdKX74lQYiM,1160
|
|
63
|
+
starplot/styles/fonts-library/gfs-didot/GFSDidot-Regular.ttf,sha256=T8eEq4JOiGbu74rVWXa5Pn4XD7G4I3_U-HgbW03Sl_k,191168
|
|
64
|
+
starplot/styles/fonts-library/gfs-didot/METADATA.pb,sha256=ANrWV7hje3V4-YfQRowrh8Z6zGZHEracmrxzSrd0vtA,438
|
|
65
|
+
starplot/styles/fonts-library/gfs-didot/OFL.txt,sha256=nhnA0ufnrcvp39B0njTdpB5-NW4PLMCC1h0vybbgzvc,4543
|
|
66
|
+
starplot/styles/fonts-library/hind/DESCRIPTION.en_us.html,sha256=Zd6OzG43xQrr7nEOLyI_oE7GcFGRVIAKRAcCPkUvLnY,1918
|
|
67
|
+
starplot/styles/fonts-library/hind/Hind-Bold.ttf,sha256=MwxUOWvCdijDLmm4hlTkEGVyIYLG8zuTaipG1yydZ3Q,286604
|
|
68
|
+
starplot/styles/fonts-library/hind/Hind-Light.ttf,sha256=wxuLYHOxT4kYdYb7H6OHENitrjQp70Hho5jay_6DnlE,287484
|
|
69
|
+
starplot/styles/fonts-library/hind/Hind-Medium.ttf,sha256=cPnBFYOQ0Mk6i8JLNbS-SyQ5ZTNyu85zgaMsaG-5Gpg,277300
|
|
70
|
+
starplot/styles/fonts-library/hind/Hind-Regular.ttf,sha256=Ad4VgCL1MHe1IwPkbeOwq1-yRSIqf_4loqV_3Z6WkWI,299532
|
|
71
|
+
starplot/styles/fonts-library/hind/Hind-SemiBold.ttf,sha256=F0KhsKupe0naHT7jr1aPqZfFmjz-c4Kfe-wpP0FtJd0,281940
|
|
72
|
+
starplot/styles/fonts-library/hind/METADATA.pb,sha256=9qbRa-XFp51Ei6bpcynvN0CKFasj9Axs0YBEk8QtFkU,1427
|
|
73
|
+
starplot/styles/fonts-library/hind/OFL.txt,sha256=9i7zV9Ohw9J-3TWm4bo1DoqNE0mXl5ZO6t778LOxXR8,4373
|
|
74
|
+
starplot/styles/fonts-library/inter/Inter-Black.ttf,sha256=a96-t2CD4YfHrllCC_wk6FHttXLhqNl8HDe3stwmFIw,414140
|
|
75
|
+
starplot/styles/fonts-library/inter/Inter-BlackItalic.ttf,sha256=1UkRBonN3gghyixxSPe0eglxZrQWl4akqe3mdfXOh_M,422324
|
|
76
|
+
starplot/styles/fonts-library/inter/Inter-Bold.ttf,sha256=DLG8EzU3LZ46DPb1MRx8zoevkNKnd_3uwYvmBaKnC8E,415072
|
|
77
|
+
starplot/styles/fonts-library/inter/Inter-BoldItalic.ttf,sha256=XmBvgFpxQy1Idd59q3N7-d6hGHCQ8KUZDamxu6sJ9Xw,420068
|
|
78
|
+
starplot/styles/fonts-library/inter/Inter-ExtraBold.ttf,sha256=PBNIe48uugp4ytTO_RknKw9OU9YcIj5rJm3fCzMunxw,416228
|
|
79
|
+
starplot/styles/fonts-library/inter/Inter-ExtraBoldItalic.ttf,sha256=aiz4mwYQM8dsPNdFERPz2NKc4sLoCyc_1g-UdOOSfLw,422904
|
|
80
|
+
starplot/styles/fonts-library/inter/Inter-ExtraLight.ttf,sha256=lE9lp8bNoTXDcFWenXNHv91FpXn-TdHvi6W8Z5vNlh0,409996
|
|
81
|
+
starplot/styles/fonts-library/inter/Inter-ExtraLightItalic.ttf,sha256=u1SI3v0BjPbOqFtDGkCZHwq4k5w5Al6DXoCRYNzZEqY,415636
|
|
82
|
+
starplot/styles/fonts-library/inter/Inter-Italic.ttf,sha256=0FTZmK4SvjOCCxAODtOSPVE_pcecbU58oZU6_rJi6ps,412848
|
|
83
|
+
starplot/styles/fonts-library/inter/Inter-Light.ttf,sha256=GTbSTLD0znAG4Ixu9CQ9LkKntF8iSfj-VNkvdqMX39E,408364
|
|
84
|
+
starplot/styles/fonts-library/inter/Inter-LightItalic.ttf,sha256=_jcUkmCCrFdkMn47Z65Sy28M9rjEIhwGSmys-CEHlBQ,415024
|
|
85
|
+
starplot/styles/fonts-library/inter/Inter-Medium.ttf,sha256=G9qBEk1q4m7RanIB4r2Tdmr1o7FPr3nuoU0ZHrvUEUY,411500
|
|
86
|
+
starplot/styles/fonts-library/inter/Inter-MediumItalic.ttf,sha256=DTT5WIQApYa3dL6X5mrowHaogHuEVd8Fh7OdKkoaO0I,417780
|
|
87
|
+
starplot/styles/fonts-library/inter/Inter-Regular.ttf,sha256=ZPi-blXDfjLvA9qZcUvzqli48gmb_k91mnV447gpESM,407056
|
|
88
|
+
starplot/styles/fonts-library/inter/Inter-SemiBold.ttf,sha256=DcmOiqWVhTlIgPJauJ5tkVrVE0Ui6WGwRspR-tOhglU,413976
|
|
89
|
+
starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf,sha256=HhKJRT16iVz7c1adSFFjTIsOSdFQxN1S1Ev10gaQgnI,418520
|
|
90
|
+
starplot/styles/fonts-library/inter/Inter-Thin.ttf,sha256=TDktzIrZFvD533VZq1VjsB3ZT587LbNGF_45LgAGAzk,403404
|
|
91
|
+
starplot/styles/fonts-library/inter/Inter-ThinItalic.ttf,sha256=X8Ca-UpEf65vgsAPFd-u-ernxWDmy-RtPoRSQBmldKo,410232
|
|
92
|
+
starplot/styles/fonts-library/inter/LICENSE.txt,sha256=JiSB6ERSGzJvXs0FPlm5jIstp4yO4b27boF0MF5Uk1o,4380
|
|
93
|
+
starplot-0.15.0.dist-info/entry_points.txt,sha256=Sm6jC6h_RcaMGC8saLnYmT0SdhcF9_rMeQIiHneLHyc,46
|
|
94
|
+
starplot-0.15.0.dist-info/LICENSE,sha256=jcjClHF4BQwhz-kDgia-KphO9Zxu0rCa2BbiA7j1jeU,1070
|
|
95
|
+
starplot-0.15.0.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
|
|
96
|
+
starplot-0.15.0.dist-info/METADATA,sha256=tE_Fz7mFuujDBMzFpF_MNXkemNlwSDafptf_F59PpaQ,4258
|
|
97
|
+
starplot-0.15.0.dist-info/RECORD,,
|