Skip to content

Commit

Permalink
added tag v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSec committed Jan 18, 2018
1 parent 6de1e63 commit 6607498
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
Binary file added dist/dnsdumpster-0.3.tar.gz
Binary file not shown.
Binary file added dist/dnsdumpster-0.4.tar.gz
Binary file not shown.
5 changes: 0 additions & 5 deletions dnsdumpster/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
# command to install dependencies
install:
- pip install .
Expand Down
5 changes: 4 additions & 1 deletion dnsdumpster/API_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

from dnsdumpster.DNSDumpsterAPI import DNSDumpsterAPI
import base64
domain = 'uber.com'

res = DNSDumpsterAPI(False).search('tsebo.com')
print('Testing... : {}'.format(domain))

res = DNSDumpsterAPI(True).search(domain)

print("####### Domain #######")
print(res['domain'])
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
setup(
name = 'dnsdumpster',
packages = ['dnsdumpster'], # this must be the same as the name above
version = '0.3',
version = '0.4',
description = 'DNS Dumpster lib',
author = 'Paul Sec',
author_email = '[email protected]',
url = 'https://github.com/PaulSec/API-dnsdumpster.com',
download_url = 'https://github.com/PaulSec/API-dnsdumpster.com/tarball/0.3',
download_url = 'https://github.com/PaulSec/API-dnsdumpster.com/tarball/0.4',
keywords = ['dnsdumpster', 'dns', 'harvesting'],
install_requires=["bs4", "requests"],
classifiers = [],
Expand Down

0 comments on commit 6607498

Please sign in to comment.