> 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="/files/CxlhC5yYCNjZb2PUdJKV" 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="/files/xhW16lVq8kSxqKqFjg3u" alt=""><figcaption></figcaption></figure>
