> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callables/callables.with_name.md).

# Callables.with\_name()

`with_name(`*`name: str`*`,`` `*`sensitivity: bool = True`*`) →` [`Callables`](/glider-ide/api/callables.md)

Adds a filter to get callables having specified name. Returns a filtered [Callables](/glider-ide/api/callables.md) child object. This method can be called on all [Callables](/glider-ide/api/callables.md) child classes: [Functions](/glider-ide/api/functions.md) and [Modifiers](/glider-ide/api/modifiers.md).

To get all but the specified name, refer to [Callables.without\_name()](/glider-ide/api/callables/callables.without_name.md).

To filter given a list of names, refer to [Callables.with\_one\_of\_the\_names()](/glider-ide/api/callables/callables.with_one_of_the_names.md).

### Functions Example

```python
from glider import *

def query():
  # Retrieve the functions named `distributeFunds`
  functions = Functions().with_name("distributeFunds").exec(100)

  # Return the first five functions
  return functions[:5]
```

Output:

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F0QbTcRIB4K7QconCd17F%2Fimage.png?alt=media&amp;token=0144a2c6-63e2-4e9e-bfa0-6af6bb87dec5" alt=""><figcaption></figcaption></figure>

### Modifiers Example

```python
from glider import *

def query():
  # Retrieve the modifiers named `onlyCaller`
  modifiers = Modifiers().with_name("onlyCaller").exec(100)

  # Return the first five modifiers
  return modifiers[:5]
```

Output:

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FkMFWdmWgsnQfe7gha92S%2Fimage.png?alt=media&amp;token=c0993ea1-3d90-4f59-9c78-4440017a69bd" alt=""><figcaption></figcaption></figure>
