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 8e2188a commit b61f9d7Copy full SHA for b61f9d7
src/axiomatic/magic.py
@@ -23,13 +23,8 @@ def __init__(self, api_key: str = os.getenv("AXIOMATIC_API_KEY")):
23
self.client = Axiomatic(api_key=api_key)
24
self.query = ""
25
26
- def ax_api(self, api_key: str):
27
- folder = platformdirs.user_config_dir("axiomatic")
28
- with open(f"{folder}/api_key", "w") as f:
29
- f.write(query)
30
- self.api = query
31
- self.ax = Axiomatic(api_key=self.api_key)
32
- print("API key set.")
+ def ax_api(self, query):
+ continue
33
34
def axquery(self, query, cell=None):
35
if self.api_key:
0 commit comments