Skip to content

Commit 2ce41a2

Browse files
committed
fmt
1 parent 254568f commit 2ce41a2

26 files changed

+73
-27
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# [<img src="https://app.tomba.io/tomba/f250de39816043cfc8f5578fa078a79e.svg" alt="Tomba" width="25"/>](https://tomba.io/) Tomba Email Finder Python Client Library
1+
# [<img src="https://app.tomba.io/logo.svg" alt="Tomba" width="25"/>](https://tomba.io/) Tomba Email Finder Python Client Library
22

3-
This is the official Python client library for the [Tomba.io](https://tomba.io.io) Email Finder API,
3+
This is the official Python client library for the [Tomba.io](https://tomba.io) Email Finder API,
44
allowing you to:
55

66
- [Domain Search.](https://developer.tomba.io/#domain-search) (Search emails are based on the website You give one domain name and it returns all the email addresses found on the internet.)
77
- [Email Finder](https://developer.tomba.io/#email-finder) (This API endpoint generates or retrieves the most likely email address from a domain name, a first name and a last name..)
8+
- [Author Finder](https://tomba.io/author-finder) (Instantly discover the email addresses of article authors.)
89
- [Email Verifier.](https://developer.tomba.io/#email-verifier) (checks the deliverability of a given email address, verifies if it has been found in our database, and returns their sources.)
910
- [Email Sources](https://developer.tomba.io/#email-sources) (Find email address source somewhere on the web .)
1011
- [Company Domain autocomplete](https://developer.tomba.io/#autocomplete) (Company Autocomplete is an API that lets you auto-complete company names and retreive logo and domain information.)
@@ -29,7 +30,7 @@ pip install tomba-io
2930

3031
get email addresses found on the internet.
3132

32-
```python
33+
```py
3334
from tomba.client import Client
3435
from tomba.services.domain import Domain
3536

@@ -50,7 +51,7 @@ result = domain.domain_search('stripe.com')
5051

5152
Find the verified email address of any professional.
5253

53-
```python
54+
```py
5455
from tomba.client import Client
5556
from tomba.services.finder import Finder
5657

@@ -71,7 +72,7 @@ result = finder.email_finder('stripe.com', 'fname', 'lname')
7172

7273
Verify the validity of any professional email address with the most complete email checker.
7374

74-
```python
75+
```py
7576
from tomba.client import Client
7677
from tomba.services.verifier import Verifier
7778

examples/account/get-account.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.account import Account
44

examples/count/email-count.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.count import Count
44

examples/domain/domain-search.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.domain import Domain
44

examples/finder/author-finder.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
```py
2+
from tomba.client import Client
3+
from tomba.services.finder import Finder
4+
5+
client = Client()
6+
7+
(client
8+
.set_key('ta_xxxx') # Your Key
9+
.set_secret('') # Your Secret
10+
)
11+
12+
finder = Finder(client)
13+
14+
result = finder.author_finder('https://clearbit.com/blog/company-name-to-domain-api')
15+
```

examples/finder/email-finder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.finder import Finder
44

examples/finder/linkedin-finder.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
```py
2+
from tomba.client import Client
3+
from tomba.services.finder import Finder
4+
5+
client = Client()
6+
7+
(client
8+
.set_key('ta_xxxx') # Your Key
9+
.set_secret('') # Your Secret
10+
)
11+
12+
finder = Finder(client)
13+
14+
result = finder.linkedin_finder('https://www.linkedin.com/in/alex-maccaw-ab592978')
15+
```

examples/finder/phone-finder.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
```py
2+
from tomba.client import Client
3+
from tomba.services.finder import Finder
4+
5+
client = Client()
6+
7+
(client
8+
.set_key('ta_xxxx') # Your Key
9+
.set_secret('') # Your Secret
10+
)
11+
12+
finder = Finder(client)
13+
14+
result = finder.phone_finder('******@zapier.com')
15+
```

examples/keys/create-key.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.keys import Keys
44

examples/keys/delete-key.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.keys import Keys
44

examples/keys/get-keys.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.keys import Keys
44

examples/keys/reset-key.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.keys import Keys
44

examples/leadsattributes/create-lead-attribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_attributes import LeadsAttributes
44

examples/leadsattributes/delete-lead-attribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_attributes import LeadsAttributes
44

examples/leadsattributes/get-lead-attributes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_attributes import LeadsAttributes
44

examples/leadsattributes/update-lead-attribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_attributes import LeadsAttributes
44

examples/leadslists/create-list.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_lists import LeadsLists
44

examples/leadslists/delete-list-id.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_lists import LeadsLists
44

examples/leadslists/get-lists.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_lists import LeadsLists
44

examples/leadslists/update-list-id.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.leads_lists import LeadsLists
44

examples/logs/get-logs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.logs import Logs
44

examples/sources/email-sources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.sources import Sources
44

examples/status/auto-complete.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.status import Status
44

examples/status/domain-status.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.status import Status
44

examples/usage/get-usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.usage import Usage
44

examples/verifier/email-verifier.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```python
1+
```py
22
from tomba.client import Client
33
from tomba.services.verifier import Verifier
44

0 commit comments

Comments
 (0)