Skip to content

Commit 81624e1

Browse files
committed
Deploying to gh-pages from @ d263a24 🚀
1 parent 4374226 commit 81624e1

15 files changed

+159
-289
lines changed

.buildinfo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 670747512c3317cfe8b4484face8858f
3+
config: 3ec35454601a541c301143e5caf37525
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_examples/basic-usage.html

+8-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
77

8-
<title>Pandalchemy: Basic Usage &#8212; pandalchemy 0.1.0 documentation</title>
8+
<title>seekwellpandas: Basic Usage &#8212; seekwellpandas 0.1.0 documentation</title>
99
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=d1102ebc" />
1010
<link rel="stylesheet" type="text/css" href="../_static/alabaster.css?v=12dfc556" />
1111
<link rel="stylesheet" type="text/css" href="../_static/nbsphinx-code-cells.css?v=2aa19091" />
@@ -35,9 +35,9 @@
3535

3636
<div class="body" role="main">
3737

38-
<section id="Pandalchemy:-Basic-Usage">
39-
<h1>Pandalchemy: Basic Usage<a class="headerlink" href="#Pandalchemy:-Basic-Usage" title="Link to this heading"></a></h1>
40-
<p>This notebook demonstrates the basic usage of the Pandalchemy library, which extends pandas with SQL-like functionality.</p>
38+
<section id="seekwellpandas:-Basic-Usage">
39+
<h1>seekwellpandas: Basic Usage<a class="headerlink" href="#seekwellpandas:-Basic-Usage" title="Link to this heading"></a></h1>
40+
<p>This notebook demonstrates the basic usage of the seekwellpandas library, which extends pandas with SQL-like functionality.</p>
4141
<section id="Setup">
4242
<h2>Setup<a class="headerlink" href="#Setup" title="Link to this heading"></a></h2>
4343
<p>First, let’s import the necessary libraries and create some sample data.</p>
@@ -46,7 +46,7 @@ <h2>Setup<a class="headerlink" href="#Setup" title="Link to this heading">¶</a>
4646
</pre></div>
4747
</div>
4848
<div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre><span></span>import pandas as pd
49-
import pandalchemy as pa
49+
import seekwellpandas
5050

5151
# Create sample data
5252
people = pd.DataFrame({
@@ -1223,9 +1223,9 @@ <h3>Rename Column<a class="headerlink" href="#Rename-Column" title="Link to this
12231223
<div class="sphinxsidebar" role="navigation" aria-label="Main">
12241224
<div class="sphinxsidebarwrapper">
12251225
<p class="logo"><a href="../index.html">
1226-
<img class="logo" src="../_static/logo.png" alt="Logo of pandalchemy"/>
1226+
<img class="logo" src="../_static/logo.png" alt="Logo of seekwellpandas"/>
12271227
</a></p>
1228-
<h1 class="logo"><a href="../index.html">pandalchemy</a></h1>
1228+
<h1 class="logo"><a href="../index.html">seekwellpandas</a></h1>
12291229

12301230

12311231

@@ -1237,9 +1237,8 @@ <h1 class="logo"><a href="../index.html">pandalchemy</a></h1>
12371237
<h3>Navigation</h3>
12381238
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p>
12391239
<ul class="current">
1240-
<li class="toctree-l1"><a class="reference internal" href="../installation.html">Installation</a></li>
12411240
<li class="toctree-l1"><a class="reference internal" href="../api.html">API Reference</a></li>
1242-
<li class="toctree-l1 current"><a class="current reference internal" href="#">Pandalchemy: Basic Usage</a><ul>
1241+
<li class="toctree-l1 current"><a class="current reference internal" href="#">seekwellpandas: Basic Usage</a><ul>
12431242
<li class="toctree-l2"><a class="reference internal" href="#Setup">Setup</a></li>
12441243
<li class="toctree-l2"><a class="reference internal" href="#Basic-Operations">Basic Operations</a></li>
12451244
<li class="toctree-l2"><a class="reference internal" href="#Advanced-Operations">Advanced Operations</a></li>

_examples/basic-usage.ipynb

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Pandalchemy: Basic Usage\n",
7+
"# seekwellpandas: Basic Usage\n",
88
"\n",
9-
"This notebook demonstrates the basic usage of the Pandalchemy library, which extends pandas with SQL-like functionality.\n",
9+
"This notebook demonstrates the basic usage of the seekwellpandas library, which extends pandas with SQL-like functionality.\n",
1010
"\n",
1111
"## Setup\n",
1212
"\n",
@@ -141,7 +141,7 @@
141141
],
142142
"source": [
143143
"import pandas as pd\n",
144-
"import pandalchemy as pa\n",
144+
"import seekwellpandas\n",
145145
"\n",
146146
"# Create sample data\n",
147147
"people = pd.DataFrame({\n",
@@ -1411,9 +1411,9 @@
14111411
],
14121412
"metadata": {
14131413
"kernelspec": {
1414-
"display_name": "Python (pandalchemy)",
1414+
"display_name": "Python (seekwellpandas)",
14151415
"language": "python",
1416-
"name": "pandalchemy"
1416+
"name": "seekwellpandas"
14171417
},
14181418
"language_info": {
14191419
"codemirror_mode": {

_sources/_examples/basic-usage.ipynb.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Pandalchemy: Basic Usage\n",
7+
"# seekwellpandas: Basic Usage\n",
88
"\n",
9-
"This notebook demonstrates the basic usage of the Pandalchemy library, which extends pandas with SQL-like functionality.\n",
9+
"This notebook demonstrates the basic usage of the seekwellpandas library, which extends pandas with SQL-like functionality.\n",
1010
"\n",
1111
"## Setup\n",
1212
"\n",
@@ -141,7 +141,7 @@
141141
],
142142
"source": [
143143
"import pandas as pd\n",
144-
"import pandalchemy as pa\n",
144+
"import seekwellpandas\n",
145145
"\n",
146146
"# Create sample data\n",
147147
"people = pd.DataFrame({\n",
@@ -1411,9 +1411,9 @@
14111411
],
14121412
"metadata": {
14131413
"kernelspec": {
1414-
"display_name": "Python (pandalchemy)",
1414+
"display_name": "Python (seekwellpandas)",
14151415
"language": "python",
1416-
"name": "pandalchemy"
1416+
"name": "seekwellpandas"
14171417
},
14181418
"language_info": {
14191419
"codemirror_mode": {

_sources/api.rst.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
API Reference
22
=============
33

4-
.. automodule:: pandalchemy.methods
4+
.. automodule:: seekwellpandas.methods
55
:members:
66
:undoc-members:
77
:show-inheritance:

_sources/index.rst.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
Welcome to Pandalchemy's documentation!
1+
Welcome to seekwellpandas's documentation!
22
=======================================
33

4-
Pandalchemy is a simple Python package that provides methods to query pandas DataFrames using a SQL-like synthax.
4+
seekwellpandas (SQL-pandas) is a simple Python package that provides methods to query pandas DataFrames using a SQL-like synthax.
55

66
.. toctree::
77
:maxdepth: 2
88
:caption: Contents:
99

10-
installation
1110
api
1211
_examples/basic-usage

_sources/installation.rst.txt

-3
This file was deleted.

0 commit comments

Comments
 (0)