We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae2b10d commit ff256a2Copy full SHA for ff256a2
pyproject.toml
@@ -1,11 +1,12 @@
1
[tool.poetry]
2
name = "quickchart.io"
3
-version = "0.1.1"
+version = "0.1.2"
4
description = "A client for quickchart.io, a service that generates static chart images"
5
+keywords = ["chart api", "chart image", "charts"]
6
authors = ["Ian Webster <ianw_pypi@ianww.com>"]
7
license = "MIT"
8
packages = [
- { include = "*.py" },
9
+ { include = "quickchart" },
10
]
11
12
[tool.poetry.dependencies]
quickchart.py quickchart/__init__.pyquickchart.py renamed to quickchart/__init__.py
@@ -71,5 +71,5 @@ def get_bytes(self):
71
def to_file(self, path):
72
content = self.get_bytes()
73
with open(path, 'wb') as f:
74
- f.write(response.content)
+ f.write(content)
75
0 commit comments