Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quickstart notebook #847

Merged
merged 2 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sphinx_design
pydata_sphinx_theme
sphinx
sphinx<8.0
sphinx-copybutton
autodoc-pydantic==1.9.0
pydantic==1.10.13
Expand Down
17 changes: 6 additions & 11 deletions docs/source/quickstart/qca_15min.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@
"`query_records` with arguments `created_before` and `created_after`.\n",
"\n",
"There are many fields you can query the database on and this can differ by the type of computation you'd like to retrieve.\n",
"The query method returns a Python iterator.\n",
"For more detailed information, see [the quickstart tutorial on querying](query-quickstart)."
"The query method returns a Python iterator."
]
},
{
Expand All @@ -145,7 +144,7 @@
"metadata": {},
"outputs": [],
"source": [
"records = client.query_records(created_after=\"2023/01/10\", created_before=\"2023/01/14\")\n",
"records = client.query_records(created_after=\"2024/01/01\")\n",
"\n",
"# Print the first record.\n",
"print(next(records))"
Expand Down Expand Up @@ -318,14 +317,10 @@
"metadata": {},
"outputs": [],
"source": [
"water_xyz = \"\"\"\n",
"3\n",
"\n",
"H 0.026223561887 1.224983815810 0.000000000000\n",
"H 0.971741135004 0.039335313725 0.000000000000\n",
"O 0.002035305512 0.235680871424 0.000000000000\n",
"\n",
"\"\"\"\n",
"water_xyz = \"\"\"3\n",
" H 0.026223561887 1.224983815810 0.000000000000\n",
" H 0.971741135004 0.039335313725 0.000000000000\n",
" O 0.002035305512 0.235680871424 0.000000000000\"\"\"\n",
"\n",
"water = Molecule.from_data(water_xyz)"
]
Expand Down