ReQL command: repl

Command syntax

conn.repl()

Description

Set the default connection to make REPL use easier. Allows calling .run() on queries without specifying a connection.

Note: Avoid using repl in application code. RethinkDB connection objects are not thread-safe, and calls to connect from multiple threads may change the global connection object used by repl. Applications should specify connections explicitly.

Example: Set the default connection for the REPL, then call run() without specifying the connection.

r.connect(db='marvel').repl()
r.table('heroes').run()

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/python/repl/