Proofreading

This commit is contained in:
Julien Palard 2021-10-03 15:42:26 +02:00
parent 72d823f561
commit f8976ac80f
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Analysis of version adoptions on Pypi
# Analysis of version adoptions on PyPI
We get PyPI download statistics via Google's BigQuery using the
[pypinfo](https://github.com/ofek/pypinfo/) tool.

View File

@ -105,8 +105,8 @@ def plot_main():
by_version[row["python_version"]][row["start_date"]] = row["download_count"]
for version, data_points in by_version.items():
plt.plot(data_points.keys(), data_points.values(), label=version)
plt.xlabel("month")
plt.ylabel("pypi downloads")
plt.xlabel("Date")
plt.ylabel("PyPI downloads")
plt.legend()
plt.savefig("python-versions.png")