Introduction¶
Server name¶
Discobase turns a Discord bot into a database manager, through a server of name
. The top-level class for Discobase is Database
:
Internally, this would create a server called "My discord database," and then use that for all storage. If this server already exists, it simply uses the existing server.
Logging in¶
It's worth noting that the Database
constructor itself doesn't actually initialize the server. If we want to do anything useful, we need to log in -- that's when the server gets initialized.
There are a few methods to log in, that depend on your use case, the simplest being login()
:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
await db.login("My bot token...")
if __name__ == "__main__":
asyncio.run(main())
login()
has a bit of a pitfall: it blocks the function from proceeding (as in, the await
never finishes, at least without some magic). In that case, you have two options: login_task()
and conn
. Let's start with login_task
, which runs the connection in the background as a free-flying task.
Note
login_task()
stores a reference to the task internally to prevent it from being accidentially deallocated while running, this is what we mean by "free-flying."
For example:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
db.login_task("My bot token...")
# Do something else, the bot is now running in the background
if __name__ == "__main__":
asyncio.run(main())
Notice the lack of an await
before db.login_task()
-- that's intentional, and we'll talk about that more in a moment.
Waiting Until Ready¶
After calling login_task()
, there isn't really a guarantee that the database is connected, which can cause some odd "it works on my machine" problems. To ensure that you're good to go, you should call wait_ready()
:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
db.login_task("My bot token...")
await db.wait_ready()
# We can now safely use the database!
if __name__ == "__main__":
asyncio.run(main())
Note that while the asyncio.Task
object returned by login_task()
is "free-flying," it does not force the event loop to stay open indefinitely. To keep the connection alive, you must await
the task:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
task = db.login_task("My bot token...")
await db.wait_ready()
# We can now safely use the database!
# ...
await task # Keeps the connection open
if __name__ == "__main__":
asyncio.run(main())
login_task()
and wait_ready()
might suffice, depending on your application, but in many cases you might want to connect and disconnect, without running for the lifetime of the program.
For this use case, instead of just login_task()
followed by wait_ready()
, you want to use conn()
, which is an asynchronous context manager. This method calls wait_ready()
for you, so you assume that the database is connected while in the async with
block:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
async with db.conn("My bot token..."):
# Do something with the database
if __name__ == "__main__":
asyncio.run(main())
Tables¶
Now that your database is ready to go, let's make a table. Discobase uses Pydantic to define schemas, through the discobase.Table
type, which is, more or less, a drop in for pydantic.BaseModel
:
import discobase
db = discobase.Database("My discord database")
class User(discobase.Table):
name: str
password: str
Note
Throughout this documentation, we'll refer to a type that inherits from discobase.Table
(and incidentially is also decorated with table()
) as a "schema" or something similar.
However, we forgot something in the above example! discobase.Table
only allows use of User
as a schema, but the database still needs to know that it exists. We can do this via the table()
decorator:
import discobase
db = discobase.Database("My discord database")
@db.table
class User(discobase.Table):
name: str
password: str
Warning
It is not allowed to have multiple tables of the same name (i.e., the name of the class). For example, the following will not work:
Great, now User
is visible to our Database
object!
Saving¶
Now, let's write to the database -- we can do this via calling save()
on an instance of our schema type:
import discobase
import asyncio
db = discobase.Database("My discord database")
@db.table
class User(discobase.Table):
name: str
password: str
async def main():
async with db.conn("My bot token..."):
user = User(name="Peter", password="foobar")
await user.save() # Saves this record to the database
if __name__ == "__main__":
asyncio.run(main())
Querying¶
We can look up an instance of it via find
(or find_unique
, if you want a unique database entry):
async def main():
async with db.conn("My bot token..."):
users = await User.find(name="Peter")
for user in users:
print(f"Name: {user.name}, password: {user.password}")
Note that this works in a whitelist manner -- as in, we search for values in the query, not get everything and exclude those that don't match it. However, calling find()
with nothing is a special case that gets every entry in the table.
Late Tables¶
At first glance, it may look like @db.table
will set everything up for you -- this is not the case. In fact, @db.table
simply sets a few attributes, but the key is that it marks the type as a schema. We can't do any actual initialization until the bot is logged in, so initialization happens then.
For example, the following would cause some errors, since we use our table after the bot has already been initialized:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
async with db.conn("My bot token..."):
# By default, this is not allowed!
@db.table
class User(discobase.Table):
name: str
password: str
user = User(name="Peter", password="foobar")
await user.save() # Error!
if __name__ == "__main__":
asyncio.run(main())
OK, so what's the fix? The table()
decorator still marks the User
type as part of the database in the above example, so all we need to do is tell the database to do it's table building a second time -- we can do this through the build_tables()
method. Our fixed version of the example above would look like:
import discobase
import asyncio
db = discobase.Database("My discord database")
async def main():
async with db.conn("My bot token..."):
@db.table
class User(discobase.Table):
name: str
password: str
await db.build_tables() # Initialize `User` internally
user = User(name="Peter", password="foobar")
await user.save() # OK!
if __name__ == "__main__":
asyncio.run(main())
Why not call build_tables()
automatically in table()
?
Initializing is an asynchronous operation, and table()
is not an asynchronous function.
We'd have to do lots of weird event loop hacks to get it to work this way.