Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ajshedivy committed Aug 30, 2024
1 parent c791a84 commit 4d9c4b2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ The following script sets up a `DaemonServer` object that will be used to connec
```python
import configparser
from mapepire_python.client.sql_job import SQLJob
from mapepire_python.types import DaemonServer
from mapepire_python.data_types import DaemonServer

config = configparser.ConfigParser()
config.read('mapepire.ini')
Expand Down Expand Up @@ -243,7 +243,7 @@ To create and run a query in a single step, use the `query_and_run` method:
```python
import configparser
from mapepire_python.client.sql_job import SQLJob
from mapepire_python.types import DaemonServer
from mapepire_python.data_types import DaemonServer

config = configparser.ConfigParser()
config.read('mapepire.ini')
Expand All @@ -270,7 +270,7 @@ The `PoolJob` object can be used to create and run queries asynchronously:
import asyncio
import configparser
from mapepire_python.pool.pool_job import PoolJob
from mapepire_python.types import DaemonServer
from mapepire_python.data_types import DaemonServer

config = configparser.ConfigParser()
config.read('mapepire.ini')
Expand Down Expand Up @@ -299,7 +299,7 @@ To run a create and run a query asynchronously in a single step, use the `query_
import asyncio
import configparser
from mapepire_python.pool.pool_job import PoolJob
from mapepire_python.types import DaemonServer
from mapepire_python.data_types import DaemonServer

config = configparser.ConfigParser()
config.read('mapepire.ini')
Expand Down Expand Up @@ -331,7 +331,7 @@ The `Pool` object can be used to create a pool of `PoolJob` objects to run queri
import asyncio
import configparser
from mapepire_python.pool.pool_client import Pool, PoolOptions
from mapepire_python.types import DaemonServer
from mapepire_python.data_types import DaemonServer

config = configparser.ConfigParser()
config.read('mapepire.ini')
Expand Down

0 comments on commit 4d9c4b2

Please sign in to comment.