Skip to main content

The general-purpose API

Reason this release was yanked:

This package is deprecated and unsupported. A replacement package is due to be released shortly.

Project description

Getting started

The general-purpose API

Initialization

Authentication

In order to setup authentication and initialization of the API client, you need the following information.

Parameter Description
user_id Your user ID
api_key Your API key

API client can be initialized as following.

# Configuration parameters and credentials
user_id = 'user_id' # Your user ID
api_key = 'api_key' # Your API key

client = NeutrinoApiClient(user_id, api_key)

Class Reference

List of Controllers

Class: Imaging

Get controller instance

An instance of the Imaging class can be accessed from the API Client.

 imaging_controller = client.imaging

Method: image_resize

Resize an image and output as either JPEG or PNG. See: https://www.neutrinoapi.com/api/image-resize/

def image_resize(self,
                     image_url,
                     width,
                     height,
                     format='png')

Parameters

Parameter Tags Description
imageUrl Required The URL to the source image
width Required The width to resize to (in px) while preserving aspect ratio
height Required The height to resize to (in px) while preserving aspect ratio
format Optional DefaultValue The output image format, can be either png or jpg

Example Usage

image_url = 'image-url'
width = 189
height = 189
format = 'png'

result = imaging_controller.image_resize(image_url, width, height, format)

Method: qr_code

Generate a QR code as a PNG image. See: https://www.neutrinoapi.com/api/qr-code/

def qr_code(self,
                content,
                width=256,
                height=256,
                fg_color='#000000',
                bg_color='#ffffff')

Parameters

Parameter Tags Description
content Required The content to encode into the QR code (e.g. a URL or a phone number)
width Optional DefaultValue The width of the QR code (in px)
height Optional DefaultValue The height of the QR code (in px)
fgColor Optional DefaultValue The QR code foreground color
bgColor Optional DefaultValue The QR code background color

Example Usage

content = 'content'
width = 256
height = 256
fg_color = '#000000'
bg_color = '#ffffff'

result = imaging_controller.qr_code(content, width, height, fg_color, bg_color)

Method: image_watermark

Watermark one image with another image. See: https://www.neutrinoapi.com/api/image-watermark/

def image_watermark(self,
                        image_url,
                        watermark_url,
                        opacity=50,
                        format='png',
                        position='center',
                        width=None,
                        height=None)

Parameters

Parameter Tags Description
imageUrl Required The URL to the source image
watermarkUrl Required The URL to the watermark image
opacity Optional DefaultValue The opacity of the watermark (0 to 100)
format Optional DefaultValue The output image format, can be either png or jpg
position Optional DefaultValue The position of the watermark image, possible values are: center, top-left, top-center, top-right, bottom-left, bottom-center, bottom-right
width Optional If set resize the resulting image to this width (in px) while preserving aspect ratio
height Optional If set resize the resulting image to this height (in px) while preserving aspect ratio

Example Usage

image_url = 'image-url'
watermark_url = 'watermark-url'
opacity = 50
format = 'png'
position = 'center'
width = 189
height = 189

result = imaging_controller.image_watermark(image_url, watermark_url, opacity, format, position, width, height)

Method: html_5_render

Render HTML content to PDF, JPG or PNG. See: https://www.neutrinoapi.com/api/html5-render/

def html_5_render(self,
                      content,
                      format='PDF',
                      page_size='A4',
                      title=None,
                      margin=0,
                      margin_left=0,
                      margin_right=0,
                      margin_top=0,
                      margin_bottom=0,
                      landscape=False,
                      zoom=1,
                      grayscale=False,
                      media_print=False,
                      media_queries=False,
                      forms=False,
                      css=None,
                      image_width=1024,
                      image_height=None,
                      render_delay=0,
                      header_text_left=None,
                      header_text_center=None,
                      header_text_right=None,
                      header_size=9,
                      header_font='Courier',
                      header_font_size=11,
                      header_line=False,
                      footer_text_left=None,
                      footer_text_center=None,
                      footer_text_right=None,
                      footer_size=9,
                      footer_font='Courier',
                      footer_font_size=11,
                      footer_line=False,
                      page_width=None,
                      page_height=None)

Parameters

Parameter Tags Description
content Required The HTML content. This can be either a URL to load HTML from or an actual HTML content string
format Optional DefaultValue Which format to output, available options are: PDF, PNG, JPG
pageSize Optional DefaultValue Set the document page size, can be one of: A0 - A9, B0 - B10, Comm10E, DLE or Letter
title Optional The document title
margin Optional DefaultValue The document margin (in mm)
marginLeft Optional DefaultValue The document left margin (in mm)
marginRight Optional DefaultValue The document right margin (in mm)
marginTop Optional DefaultValue The document top margin (in mm)
marginBottom Optional DefaultValue The document bottom margin (in mm)
landscape Optional DefaultValue Set the document to lanscape orientation
zoom Optional DefaultValue Set the zoom factor when rendering the page (2.0 for double size, 0.5 for half size)
grayscale Optional DefaultValue Render the final document in grayscale
mediaPrint Optional DefaultValue Use @media print CSS styles to render the document
mediaQueries Optional DefaultValue Activate all @media queries before rendering. This can be useful if you wan't to render the mobile version of a responsive website
forms Optional DefaultValue Generate real (fillable) PDF forms from HTML forms
css Optional Inject custom CSS into the HTML. e.g. 'body { background-color: red;}'
imageWidth Optional DefaultValue If rendering to an image format (PNG or JPG) use this image width (in pixels)
imageHeight Optional If rendering to an image format (PNG or JPG) use this image height (in pixels). The default is automatic which dynamically sets the image height based on the content
renderDelay Optional DefaultValue Number of milliseconds to wait before rendering the page (can be useful for pages with animations etc)
headerTextLeft Optional Text to print to the left-hand side header of each page. e.g. 'My header - Page {page_number} of {total_pages}'
headerTextCenter Optional Text to print to the center header of each page
headerTextRight Optional Text to print to the right-hand side header of each page
headerSize Optional DefaultValue The height of your header (in mm)
headerFont Optional DefaultValue Set the header font. Fonts available: Times, Courier, Helvetica, Arial
headerFontSize Optional DefaultValue Set the header font size (in pt)
headerLine Optional DefaultValue Draw a full page width horizontal line under your header
footerTextLeft Optional Text to print to the left-hand side footer of each page. e.g. 'My footer - Page {page_number} of {total_pages}'
footerTextCenter Optional Text to print to the center header of each page
footerTextRight Optional Text to print to the right-hand side header of each page
footerSize Optional DefaultValue The height of your footer (in mm)
footerFont Optional DefaultValue Set the footer font. Fonts available: Times, Courier, Helvetica, Arial
footerFontSize Optional DefaultValue Set the footer font size (in pt)
footerLine Optional DefaultValue Draw a full page width horizontal line above your footer
pageWidth Optional Set the PDF page width explicitly (in mm)
pageHeight Optional Set the PDF page height explicitly (in mm)

Example Usage

content = 'content'
format = 'PDF'
page_size = 'A4'
title = 'title'
margin = 0
margin_left = 0
margin_right = 0
margin_top = 0
margin_bottom = 0
landscape = False
zoom = 1
grayscale = False
media_print = False
media_queries = False
forms = False
css = 'css'
image_width = 1024
image_height = 189
render_delay = 0
header_text_left = 'header-text-left'
header_text_center = 'header-text-center'
header_text_right = 'header-text-right'
header_size = 9
header_font = 'Courier'
header_font_size = 11
header_line = False
footer_text_left = 'footer-text-left'
footer_text_center = 'footer-text-center'
footer_text_right = 'footer-text-right'
footer_size = 9
footer_font = 'Courier'
footer_font_size = 11
footer_line = False
page_width = 189
page_height = 189

result = imaging_controller.html_5_render(content, format, page_size, title, margin, margin_left, margin_right, margin_top, margin_bottom, landscape, zoom, grayscale, media_print, media_queries, forms, css, image_width, image_height, render_delay, header_text_left, header_text_center, header_text_right, header_size, header_font, header_font_size, header_line, footer_text_left, footer_text_center, footer_text_right, footer_size, footer_font, footer_font_size, footer_line, page_width, page_height)

Back to List of Controllers

Class: Telephony

Get controller instance

An instance of the Telephony class can be accessed from the API Client.

 telephony_controller = client.telephony

Method: verify_security_code

Check if a security code from one of the verify APIs is valid. See: https://www.neutrinoapi.com/api/verify-security-code/

def verify_security_code(self,
                             security_code)

Parameters

Parameter Tags Description
securityCode Required The security code to verify

Example Usage

security_code = 'security-code'

result = telephony_controller.verify_security_code(security_code)

Method: hlr_lookup

Connect to the global mobile cellular network and retrieve the status of a mobile device. See: https://www.neutrinoapi.com/api/hlr-lookup/

def hlr_lookup(self,
                   number,
                   country_code=None)

Parameters

Parameter Tags Description
number Required A phone number
countryCode Optional ISO 2-letter country code, assume numbers are based in this country. If not set numbers are assumed to be in international format (with or without the leading + sign)

Example Usage

number = 'number'
country_code = 'country-code'

result = telephony_controller.hlr_lookup(number, country_code)

Method: phone_playback

Make an automated call to any valid phone number and playback an audio message. See: https://www.neutrinoapi.com/api/phone-playback/

def phone_playback(self,
                       number,
                       audio_url)

Parameters

Parameter Tags Description
number Required The phone number to call. Must be in valid international format
audioUrl Required A URL to a valid audio file. Accepted audio formats are:
  • MP3
  • WAV
  • OGG
You can use the following MP3 URL for testing: https://www.neutrinoapi.com/test-files/test1.mp3

Example Usage

number = 'number'
audio_url = 'audio-url'

result = telephony_controller.phone_playback(number, audio_url)

Method: sms_verify

Send a unique security code to any mobile device via SMS. See: https://www.neutrinoapi.com/api/sms-verify/

def sms_verify(self,
                   number,
                   code_length=5,
                   security_code=None,
                   country_code=None,
                   language_code='en')

Parameters

Parameter Tags Description
number Required The phone number to send a verification code to
codeLength Optional DefaultValue The number of digits to use in the security code (must be between 4 and 12)
securityCode Optional Pass in your own security code. This is useful if you have implemented TOTP or similar 2FA methods. If not set then we will generate a secure random code
countryCode Optional ISO 2-letter country code, assume numbers are based in this country. If not set numbers are assumed to be in international format (with or without the leading + sign)
languageCode Optional DefaultValue The language to send the verification code in, available languages are:
  • de - German
  • en - English
  • es - Spanish
  • fr - French
  • it - Italian
  • pt - Portuguese
  • ru - Russian

Example Usage

number = 'number'
code_length = 5
security_code = 189
country_code = 'country-code'
language_code = 'en'

result = telephony_controller.sms_verify(number, code_length, security_code, country_code, language_code)

Method: sms_message

Send a free-form message to any mobile device via SMS. See: https://www.neutrinoapi.com/api/sms-message/

def sms_message(self,
                    number,
                    message,
                    country_code=None)

Parameters

Parameter Tags Description
number Required The phone number to send a message to
message Required The SMS message to send. Messages are truncated to a maximum of 150 characters for ASCII content OR 70 characters for UTF content
countryCode Optional ISO 2-letter country code, assume numbers are based in this country. If not set numbers are assumed to be in international format (with or without the leading + sign)

Example Usage

number = 'number'
message = 'message'
country_code = 'country-code'

result = telephony_controller.sms_message(number, message, country_code)

Method: phone_verify

Make an automated call to any valid phone number and playback a unique security code. See: https://www.neutrinoapi.com/api/phone-verify/

def phone_verify(self,
                     number,
                     code_length=6,
                     security_code=None,
                     playback_delay=800,
                     country_code=None,
                     language_code='en')

Parameters

Parameter Tags Description
number Required The phone number to send the verification code to
codeLength Optional DefaultValue The number of digits to use in the security code (between 4 and 12)
securityCode Optional Pass in your own security code. This is useful if you have implemented TOTP or similar 2FA methods. If not set then we will generate a secure random code
playbackDelay Optional DefaultValue The delay in milliseconds between the playback of each security code
countryCode Optional ISO 2-letter country code, assume numbers are based in this country. If not set numbers are assumed to be in international format (with or without the leading + sign)
languageCode Optional DefaultValue The language to playback the verification code in, available languages are:
  • de - German
  • en - English
  • es - Spanish
  • fr - French
  • it - Italian
  • pt - Portuguese
  • ru - Russian

Example Usage

number = 'number'
code_length = 6
security_code = 189
playback_delay = 800
country_code = 'country-code'
language_code = 'en'

result = telephony_controller.phone_verify(number, code_length, security_code, playback_delay, country_code, language_code)

Back to List of Controllers

Class: DataTools

Get controller instance

An instance of the DataTools class can be accessed from the API Client.

 data_tools_controller = client.data_tools

Method: email_validate

Parse, validate and clean an email address. See: https://www.neutrinoapi.com/api/email-validate/

def email_validate(self,
                       email,
                       fix_typos=False)

Parameters

Parameter Tags Description
email Required An email address
fixTypos Optional DefaultValue Automatically attempt to fix typos in the address

Example Usage

email = 'email'
fix_typos = False

result = data_tools_controller.email_validate(email, fix_typos)

Method: user_agent_info

Parse, validate and get detailed user-agent information from a user agent string. See: https://www.neutrinoapi.com/api/user-agent-info/

def user_agent_info(self,
                        user_agent)

Parameters

Parameter Tags Description
userAgent Required A user agent string

Example Usage

user_agent = 'user-agent'

result = data_tools_controller.user_agent_info(user_agent)

Method: bad_word_filter

Detect bad words, swear words and profanity in a given text. See: https://www.neutrinoapi.com/api/bad-word-filter/

def bad_word_filter(self,
                        content,
                        censor_character=None)

Parameters

Parameter Tags Description
content Required The content to scan. This can be either a URL to load content from or an actual content string
censorCharacter Optional The character to use to censor out the bad words found

Example Usage

content = 'content'
censor_character = 'censor-character'

result = data_tools_controller.bad_word_filter(content, censor_character)

Method: convert

A powerful unit conversion tool. See: https://www.neutrinoapi.com/api/convert/

def convert(self,
                from_value,
                from_type,
                to_type)

Parameters

Parameter Tags Description
fromValue Required The value to convert from (e.g. 10.95)
fromType Required The type of the value to convert from (e.g. USD)
toType Required The type to convert to (e.g. EUR)

Example Usage

from_value = 'from-value'
from_type = 'from-type'
to_type = 'to-type'

result = data_tools_controller.convert(from_value, from_type, to_type)

Method: phone_validate

Parse, validate and get location information about a phone number. See: https://www.neutrinoapi.com/api/phone-validate/

def phone_validate(self,
                       number,
                       country_code=None,
                       ip=None)

Parameters

Parameter Tags Description
number Required A phone number. This can be in international format (E.164) or local format. If passing local format you should use the 'country-code' or 'ip' options as well
countryCode Optional ISO 2-letter country code, assume numbers are based in this country. If not set numbers are assumed to be in international format (with or without the leading + sign)
ip Optional Pass in a users IP address and we will assume numbers are based in the country of the IP address

Example Usage

number = 'number'
country_code = 'country-code'
ip = 'ip'

result = data_tools_controller.phone_validate(number, country_code, ip)

Back to List of Controllers

Class: SecurityAndNetworking

Get controller instance

An instance of the SecurityAndNetworking class can be accessed from the API Client.

 security_and_networking_controller = client.security_and_networking

Method: ip_probe

Analyze and extract provider information for an IP address. See: https://www.neutrinoapi.com/api/ip-probe/

def ip_probe(self,
                 ip)

Parameters

Parameter Tags Description
ip Required IPv4 or IPv6 address

Example Usage

ip = 'ip'

result = security_and_networking_controller.ip_probe(ip)

Method: email_verify

SMTP based email address verification. See: https://www.neutrinoapi.com/api/email-verify/

def email_verify(self,
                     email,
                     fix_typos=False)

Parameters

Parameter Tags Description
email Required An email address
fixTypos Optional DefaultValue Automatically attempt to fix typos in the address

Example Usage

email = 'email'
fix_typos = False

result = security_and_networking_controller.email_verify(email, fix_typos)

Method: ip_blocklist

The IP Blocklist API will detect potentially malicious or dangerous IP addresses. See: https://www.neutrinoapi.com/api/ip-blocklist/

def ip_blocklist(self,
                     ip)

Parameters

Parameter Tags Description
ip Required An IPv4 or IPv6 address

Example Usage

ip = 'ip'

result = security_and_networking_controller.ip_blocklist(ip)

Method: host_reputation

Check the reputation of an IP address, domain name, FQDN or URL against a comprehensive list of blacklists and blocklists. See: https://www.neutrinoapi.com/api/host-reputation/

def host_reputation(self,
                        host,
                        list_rating=3)

Parameters

Parameter Tags Description
host Required An IP address, domain name, FQDN or URL. If you supply a domain/URL it will be checked against the URI DNSBL lists
listRating Optional DefaultValue Only check lists with this rating or better

Example Usage

host = 'host'
list_rating = 3

result = security_and_networking_controller.host_reputation(host, list_rating)

Back to List of Controllers

Class: Geolocation

Get controller instance

An instance of the Geolocation class can be accessed from the API Client.

 geolocation_controller = client.geolocation

Method: geocode_reverse

Convert a geographic coordinate (latitude and longitude) into a real world address. See: https://www.neutrinoapi.com/api/geocode-reverse/

def geocode_reverse(self,
                        latitude,
                        longitude,
                        language_code='en',
                        zoom='address')

Parameters

Parameter Tags Description
latitude Required The location latitude in decimal degrees format
longitude Required The location longitude in decimal degrees format
languageCode Optional DefaultValue The language to display results in, available languages are:
  • de, en, es, fr, it, pt, ru
zoom Optional DefaultValue The zoom level to respond with:
  • address - the most precise address available
  • street - the street level
  • city - the city level
  • state - the state level
  • country - the country level

Example Usage

latitude = 'latitude'
longitude = 'longitude'
language_code = 'en'
zoom = 'address'

result = geolocation_controller.geocode_reverse(latitude, longitude, language_code, zoom)

Method: ip_info

Get location information about an IP address and do reverse DNS (PTR) lookups. See: https://www.neutrinoapi.com/api/ip-info/

def ip_info(self,
                ip,
                reverse_lookup=False)

Parameters

Parameter Tags Description
ip Required IPv4 or IPv6 address
reverseLookup Optional DefaultValue Do a reverse DNS (PTR) lookup. This option can add extra delay to the request so only use it if you need it

Example Usage

ip = 'ip'
reverse_lookup = False

result = geolocation_controller.ip_info(ip, reverse_lookup)

Method: geocode_address

Geocode an address, partial address or just the name of a place. See: https://www.neutrinoapi.com/api/geocode-address/

def geocode_address(self,
                        address,
                        country_code=None,
                        language_code='en',
                        fuzzy_search=False)

Parameters

Parameter Tags Description
address Required The address, partial address or name of a place to try and locate
countryCode Optional The ISO 2-letter country code to be biased towards (the default is no country bias)
languageCode Optional DefaultValue The language to display results in, available languages are:
  • de, en, es, fr, it, pt, ru
fuzzySearch Optional DefaultValue If no matches are found for the given address, start performing a recursive fuzzy search until a geolocation is found. This option is recommended for processing user input or implementing auto-complete. We use a combination of approximate string matching and data cleansing to find possible location matches

Example Usage

address = 'address'
country_code = 'country-code'
language_code = 'en'
fuzzy_search = False

result = geolocation_controller.geocode_address(address, country_code, language_code, fuzzy_search)

Back to List of Controllers

Class: ECommerce

Get controller instance

An instance of the ECommerce class can be accessed from the API Client.

 e_commerce_controller = client.e_commerce

Method: bin_lookup

Perform a BIN (Bank Identification Number) or IIN (Issuer Identification Number) lookup. See: https://www.neutrinoapi.com/api/bin-lookup/

def bin_lookup(self,
                   bin_number,
                   customer_ip=None)

Parameters

Parameter Tags Description
binNumber Required The BIN or IIN number (the first 6 digits of a credit card number)
customerIp Optional Pass in the customers IP address and we will return some extra information about them

Example Usage

bin_number = 'bin-number'
customer_ip = 'customer-ip'

result = e_commerce_controller.bin_lookup(bin_number, customer_ip)

Back to List of Controllers

Class: WWW

Get controller instance

An instance of the WWW class can be accessed from the API Client.

 www_controller = client.www

Method: url_info

Parse, analyze and retrieve content from the supplied URL. See: https://www.neutrinoapi.com/api/url-info/

def url_info(self,
                 url,
                 fetch_content=False,
                 ignore_certificate_errors=False,
                 timeout=20)

Parameters

Parameter Tags Description
url Required The URL to probe
fetchContent Optional DefaultValue If this URL responds with html, text, json or xml then return the response. This option is useful if you want to perform further processing on the URL content (e.g. with the HTML Extract or HTML Clean APIs)
ignoreCertificateErrors Optional DefaultValue Ignore any TLS/SSL certificate errors and load the URL anyway
timeout Optional DefaultValue Timeout in seconds. Give up if still trying to load the URL after this number of seconds

Example Usage

url = 'url'
fetch_content = False
ignore_certificate_errors = False
timeout = 20

result = www_controller.url_info(url, fetch_content, ignore_certificate_errors, timeout)

Method: html_clean

Clean and sanitize untrusted HTML. See: https://www.neutrinoapi.com/api/html-clean/

def html_clean(self,
                   content,
                   output_type)

Parameters

Parameter Tags Description
content Required The HTML content. This can be either a URL to load HTML from or an actual HTML content string
outputType Required The level of sanitization, possible values are: plain-text: reduce the content to plain text only (no HTML tags at all) simple-text: allow only very basic text formatting tags like b, em, i, strong, u basic-html: allow advanced text formatting and hyper links basic-html-with-images: same as basic html but also allows image tags advanced-html: same as basic html with images but also allows many more common HTML tags like table, ul, dl, pre

Example Usage

content = 'content'
output_type = 'output-type'

result = www_controller.html_clean(content, output_type)

Method: browser_bot

Browser bot can extract content, interact with keyboard and mouse events, and execute JavaScript on a website. See: https://www.neutrinoapi.com/api/browser-bot/

def browser_bot(self,
                    url,
                    timeout=30,
                    delay=3,
                    selector=None,
                    mexec=None,
                    user_agent=None,
                    ignore_certificate_errors=False)

Parameters

Parameter Tags Description
url Required The URL to load
timeout Optional DefaultValue Timeout in seconds. Give up if still trying to load the page after this number of seconds
delay Optional DefaultValue Delay in seconds to wait before capturing any page data, executing selectors or JavaScript
selector Optional Extract content from the page DOM using this selector. Commonly known as a CSS selector, you can find a good reference here
mexec Optional Collection Execute JavaScript on the page. Each array element should contain a valid JavaScript statement in string form. If a statement returns any kind of value it will be returned in the 'exec-results' response. For your convenience you can also use the following special shortcut functions:
sleep(seconds); Just wait/sleep for the specified number of seconds. click('selector'); Click on the first element matching the given selector. focus('selector'); Focus on the first element matching the given selector. keys('characters'); Send the specified keyboard characters. Use click() or focus() first to send keys to a specific element. enter(); Send the Enter key. tab(); Send the Tab key.
Example:
[ "click('#button-id')", "sleep(1)", "click('.field-class')", "keys('1234')", "enter()" ]
userAgent Optional Override the browsers default user-agent string with this one
ignoreCertificateErrors Optional DefaultValue Ignore any TLS/SSL certificate errors and load the page anyway

Example Usage

url = 'url'
timeout = 30
delay = 3
selector = 'selector'
mexec = ['exec']
user_agent = 'user-agent'
ignore_certificate_errors = False

result = www_controller.browser_bot(url, timeout, delay, selector, mexec, user_agent, ignore_certificate_errors)

Back to List of Controllers

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neutrino_api-3.4.5.tar.gz (68.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page