diff --git a/docs/examples.rst b/docs/examples.rst
index 455a98b3..6dcc3464 100644
--- a/docs/examples.rst
+++ b/docs/examples.rst
@@ -64,7 +64,7 @@ Pandas Basics
 -------------
 
 The following example shows how to insert data from a Pandas DataFrame to the
-``'trades'`` table.
+``'trades_python'`` table.
 
 .. literalinclude:: ../examples/pandas_basic.py
    :language: python
diff --git a/examples/auth.py b/examples/auth.py
index aaf07e3c..4beb758a 100644
--- a/examples/auth.py
+++ b/examples/auth.py
@@ -17,7 +17,7 @@ def example(host: str = 'localhost', port: int = 9009):
             # but timestamps in other columns are expected in Microseconds. 
             # The API provides convenient functions
             sender.row(
-                'trades',
+                'trades_python',
                 symbols={
                     'pair': 'USDGBP',
                     'type': 'buy'},
diff --git a/examples/auth_and_tls.py b/examples/auth_and_tls.py
index 904c83dc..25915ffa 100644
--- a/examples/auth_and_tls.py
+++ b/examples/auth_and_tls.py
@@ -17,7 +17,7 @@ def example(host: str = 'localhost', port: int = 9009):
             # but timestamps in other columns are expected in Microseconds. 
             # The API provides convenient functions
             sender.row(
-                'trades',
+                'trades_python',
                 symbols={
                     'pair': 'USDGBP',
                     'type': 'buy'},
diff --git a/examples/basic.py b/examples/basic.py
index 194af9c3..612042d0 100644
--- a/examples/basic.py
+++ b/examples/basic.py
@@ -12,7 +12,7 @@ def example(host: str = 'localhost', port: int = 9009):
             # but timestamps in other columns are expected in Microseconds. 
             # The API provides convenient functions
             sender.row(
-                'trades',
+                'trades_python',
                 symbols={
                     'pair': 'USDGBP',
                     'type': 'buy'},
diff --git a/examples/from_conf.py b/examples/from_conf.py
index 6c0b5212..c3c17e79 100644
--- a/examples/from_conf.py
+++ b/examples/from_conf.py
@@ -12,7 +12,7 @@ def example():
             # but timestamps in other columns are expected in Microseconds. 
             # The API provides convenient functions
             sender.row(
-                'trades',
+                'trades_python',
                 symbols={
                     'pair': 'USDGBP',
                     'type': 'buy'},
diff --git a/examples/http.py b/examples/http.py
index ee976cb4..dd834cf7 100644
--- a/examples/http.py
+++ b/examples/http.py
@@ -12,7 +12,7 @@ def example(host: str = 'localhost', port: int = 9009):
             # but timestamps in other columns are expected in Microseconds. 
             # The API provides convenient functions
             sender.row(
-                'trades',
+                'trades_python',
                 symbols={
                     'pair': 'USDGBP',
                     'type': 'buy'},
diff --git a/examples/http_transaction.py b/examples/http_transaction.py
index 89939c9c..1b2e6df6 100644
--- a/examples/http_transaction.py
+++ b/examples/http_transaction.py
@@ -8,7 +8,7 @@ def example():
         # Force a whole dataframe to be written in a single transaction.
         # This temporarily suspends auto-flushing:
         # The dataframe-generated buffer must thus fit in memory.
-        with sender.transaction('trades') as txn:
+        with sender.transaction('trades_python') as txn:
             df = pd.DataFrame({
                 'pair': ['USDGBP', 'EURJPY'],
                 'traded_price': [0.83, 142.62],
diff --git a/examples/pandas_basic.py b/examples/pandas_basic.py
index ce6e952d..2ebbf648 100644
--- a/examples/pandas_basic.py
+++ b/examples/pandas_basic.py
@@ -17,7 +17,7 @@ def example(host: str = 'localhost', port: int = 9000):
         with Sender.from_conf(f"http::addr={host}:{port};") as sender:
             sender.dataframe(
                 df,
-                table_name='trades',  # Table name to insert into.
+                table_name='trades_python',  # Table name to insert into.
                 symbols=['pair'],  # Columns to be inserted as SYMBOL types.
                 at='timestamp')  # Column containing the designated timestamps.