gmusicapi-wrapper Documentation

Size: px
Start display at page:

Download "gmusicapi-wrapper Documentation"

Transcription

1 gmusicapi-wrapper Documentation Release thebigmunch Nov 02, 2017

2

3 Contents 1 Mobile Client 3 2 Music Manager 7 3 Utils 11 Python Module Index 15 i

4 ii

5 A wrapper interface for gmusicapi providing extra functionality and conveniences. Contents: Contents 1

6 2 Contents

7 CHAPTER 1 Mobile Client Mobile Client functionality. >>> from gmusicapi_wrapper import MobileClientWrapper class MobileClientWrapper(enable_logging=False) Wrap gmusicapi s Mobileclient client interface to provide extra functionality and conveniences. enable_logging (bool) Enable gmusicapi s debug_logging option. login(username=none, password=none, android_id=none) Authenticate the gmusicapi Mobileclient instance. username (Optional[str]) Your Google Music username. Will be prompted if not given. password (Optional[str]) Your Google Music password. Will be prompted if not given. android_id (Optional[str]) The 16 hex digits from an Android device ID. Default: Use gmusicapi.mobileclient.from_mac_address to create ID from computer s MAC address. Returns True on successful login or False on unsuccessful login. logout() Log out the gmusicapi Mobileclient instance. Returns True on success. is_authenticated Check the authentication status of the gmusicapi client instance. Returns True if authenticated, False if not. is_subscribed Check the subscription status of the gmusicapi client instance. 3

8 Returns True if subscribed, False if not. get_local_songs(filepaths, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false, exclude_patterns=none, max_depth=inf ) Load songs from local filepaths. filepaths (list or str) Filepath(s) to search for music files. include_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a exclude_patterns (list or str) Pattern(s) to exclude. Patterns are Python regex patterns. Filepaths are excluded if they match any of the exclude patterns. max_depth (int) The depth in the directory tree to walk. A depth of 0 limits the walk to the top directory. Default: No limit. Returns A list of local song filepaths matching criteria, a list of local song filepaths filtered out using filter criteria, and a list of local song filepaths excluded using exclusion criteria. get_google_songs(include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false) Create song list from user s Google Music library. include_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Mobileclient client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Mobileclient client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a Returns A list of Google Music song dicts matching criteria and a list of Google Music song dicts filtered out using filter criteria. get_local_playlists(filepaths, exclude_patterns=none, max_depth=inf ) Load playlists from local filepaths. filepaths (list or str) Filepath(s) to search for music files. 4 Chapter 1. Mobile Client

9 exclude_patterns (list or str) Pattern(s) to exclude. Patterns are Python regex patterns. Filepaths are excluded if they match any of the exclude patterns. max_depth (int) The depth in the directory tree to walk. A depth of 0 limits the walk to the top directory. Default: No limit. Returns A list of local playlist filepaths matching criteria and a list of local playlist filepaths excluded using exclusion criteria. get_local_playlist_songs(playlist, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false, exclude_patterns=none) Load songs from local playlist. playlist (str) An M3U(8) playlist filepath. include_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a exclude_patterns (list or str) Pattern(s) to exclude. Patterns are Python regex patterns. Filepaths are excluded if they match any of the exclude patterns. Returns A list of local playlist song filepaths matching criteria, a list of local playlist song filepaths filtered out using filter criteria, and a list of local playlist song filepaths excluded using exclusion criteria. get_google_playlist(playlist) Get playlist information of a user-generated Google Music playlist. playlist (str) Name or ID of Google Music playlist. Names are casesensitive. Google allows multiple playlists with the same name. If multiple playlists have the same name, the first one encountered is used. Returns The playlist dict as returned by Mobileclient.get_all_user_playlist_contents. Return type dict get_google_playlist_songs(playlist, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false) Create song list from a user-generated Google Music playlist. playlist (str) Name or ID of Google Music playlist. Names are case-sensitive. Google allows multiple playlists with the same name. If multiple playlists have the same name, the first one encountered is used. include_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values don t match any of the given patterns. 5

10 exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a Returns A list of Google Music song dicts in the playlist matching criteria and a list of Google Music song dicts in the playlist filtered out using filter criteria. 6 Chapter 1. Mobile Client

11 CHAPTER 2 Music Manager Music Manager functionality. >>> from gmusicapi_wrapper import MusicManagerWrapper class MusicManagerWrapper(enable_logging=False) Wrap gmusicapi s Musicmanager client interface to provide extra functionality and conveniences. enable_logging (bool) Enable gmusicapi s debug_logging option. login(oauth_filename= oauth, uploader_id=none) Authenticate the gmusicapi Musicmanager instance. oauth_filename (str) The filename of the oauth credentials file to use/create for login. Default: oauth uploader_id (str) A unique id as a MAC address (e.g. '00:11:22:33:AA:BB'). This should only be provided in cases where the default (host MAC address incremented by 1) won t work. Returns True on successful login, False on unsuccessful login. logout(revoke_oauth=false) Log out the gmusicapi Musicmanager instance. revoke_oauth (bool) If True, oauth credentials will be revoked and the corresponding oauth file will be deleted. Returns True on success. is_authenticated Check the authentication status of the gmusicapi client instance. Returns True if authenticated, False if not. get_local_songs(filepaths, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false, exclude_patterns=none, max_depth=inf ) Load songs from local filepaths. 7

12 filepaths (list or str) Filepath(s) to search for music files. include_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a exclude_patterns (list or str) Pattern(s) to exclude. Patterns are Python regex patterns. Filepaths are excluded if they match any of the exclude patterns. max_depth (int) The depth in the directory tree to walk. A depth of 0 limits the walk to the top directory. Default: No limit. Returns A list of local song filepaths matching criteria, a list of local song filepaths filtered out using filter criteria, and a list of local song filepaths excluded using exclusion criteria. get_google_songs(include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false, uploaded=true, purchased=true) Create song list from user s Google Music library. include_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a uploaded (bool) Include uploaded songs. Default: True. purchased (bool) Include purchased songs. Default: True. Returns A list of Google Music song dicts matching criteria and a list of Google Music song dicts filtered out using filter criteria. download(songs, template=none) Download Google Music songs. songs (list or dict) Google Music song dict(s). template (str) A filepath which can include template patterns. 8 Chapter 2. Music Manager

13 Returns A list of result dictionaries. [ {'result': 'downloaded', 'id': song_id, 'filepath': downloaded[song_id]}, # downloaded {'result': 'error', 'id': song_id, 'message': error[song_id]} # error ] upload(filepaths, enable_matching=false, transcode_quality= 320k, delete_on_success=false) Upload local songs to Google Music. filepaths (list or str) Filepath(s) to upload. enable_matching (bool) If True attempt to use scan and match. This requieres ffmpeg or avconv. transcode_quality (str or int) If int, pass to ffmpeg/avconv -q:a for libmp3lame VBR quality < If string, pass to ffmpeg/avconv -b:a for libmp3lame CBR quality < Default: 320k delete_on_success (bool) Delete successfully uploaded local files. False Returns A list of result dictionaries. Default: [ {'result': 'uploaded', 'filepath': <filepath>, 'id': <song_id>}, # uploaded {'result': 'matched', 'filepath': <filepath>, 'id': <song_id>}, # matched {'result': 'error', 'filepath': <filepath>, 'message': <error_ message>}, # error {'result': 'not_uploaded', 'filepath': <filepath>, 'id': <song_ id>, 'message': <reason_message>}, # not_uploaded ALREADY_EXISTS {'result': 'not_uploaded', 'filepath': <filepath>, 'message': <reason_message>} # not_uploaded ] 9

14 10 Chapter 2. Music Manager

15 CHAPTER 3 Utils Utility functions for gmusicapi_wrapper. >>> import gmusicapi_wrapper.utils as gmw_utils >>> from gmusicapi_wrapper.utils import... convert_cygwin_path(path) Convert Unix path from Cygwin to Windows path. compare_song_collections(src_songs, dst_songs) Compare two song collections to find missing songs. src_songs (list) Google Music song dicts or filepaths of local songs. dest_songs (list) Google Music song dicts or filepaths of local songs. Returns A list of Google Music song dicts or local song filepaths from source missing in destination. get_supported_filepaths(filepaths, supported_extensions, max_depth=inf ) Get filepaths with supported extensions from given filepaths. filepaths (list or str) Filepath(s) to check. supported_extensions (tuple or str) Supported file extensions or a single file extension. max_depth (int) The depth in the directory tree to walk. A depth of 0 limits the walk to the top directory. Default: No limit. Returns A list of supported filepaths. exclude_filepaths(filepaths, exclude_patterns=none) Exclude file paths based on regex patterns. filepaths (list or str) Filepath(s) to check. 11

16 exclude_patterns (list) Python regex patterns to check filepaths against. Returns A list of filepaths to include and a list of filepaths to exclude. filter_google_songs(songs, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false) Match a Google Music song dict against a set of metadata filters. Returns songs (list) Google Music song dicts to filter. include_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid Google Music metadata field available to the Musicmanager client. Patterns are Python regex patterns. Google Music songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a A list of Google Music song dicts matching criteria and a list of Google Music song dicts filtered out using filter criteria. (matched, filtered) filter_local_songs(filepaths, include_filters=none, exclude_filters=none, all_includes=false, all_excludes=false) Match a local file against a set of metadata filters. Returns filepaths (list) Filepaths to filter. include_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values don t match any of the given patterns. exclude_filters (list) A list of (field, pattern) tuples. Fields are any valid mutagen metadata fields. Patterns are Python regex patterns. Local songs are filtered out if the given metadata field values match any of the given patterns. all_includes (bool) If True, all include_filters criteria must match to include a all_excludes (bool) If True, all exclude_filters criteria must match to exclude a A list of local song filepaths matching criteria and a list of local song filepaths filtered out using filter criteria. Invalid music files are also filtered out. (matched, filtered) 12 Chapter 3. Utils

17 get_suggested_filename(metadata) Generate a filename for a song based on metadata. metadata (dict) A metadata dict. Returns A filename. template_to_filepath(template, metadata, template_patterns=none) Create directory structure and file name based on metadata template. template (str) A filepath which can include template patterns as defined by :param template_patterns:. metadata (dict) A metadata dict. template_patterns (dict) A dict of pattern: field pairs used to replace patterns with metadata field values. Default: :const TEMPLATE_PATTERNS: Returns A filepath. walk_depth(path, max_depth=inf ) Walk a directory tree with configurable depth. path (str) A directory path to walk. max_depth (int) The depth in the directory tree to walk. A depth of 0 limits the walk to the top directory. Default: No limit. 13

18 14 Chapter 3. Utils

19 Python Module Index g gmusicapi_wrapper.mobileclient, 3 gmusicapi_wrapper.musicmanager, 7 gmusicapi_wrapper.utils, 11 15

20 16 Python Module Index

21 Index C compare_song_collections() (in module gmusicapi_wrapper.utils), 11 convert_cygwin_path() (in module gmusicapi_wrapper.utils), 11 D download() (MusicManagerWrapper method), 8 E exclude_filepaths() (in module gmusicapi_wrapper.utils), 11 F filter_google_songs() (in module gmusicapi_wrapper.utils), 12 filter_local_songs() (in module gmusicapi_wrapper.utils), 12 G get_google_playlist() (MobileClientWrapper method), 5 get_google_playlist_songs() (MobileClientWrapper method), 5 get_google_songs() (MobileClientWrapper method), 4 get_google_songs() (MusicManagerWrapper method), 8 get_local_playlist_songs() (MobileClientWrapper method), 5 get_local_playlists() (MobileClientWrapper method), 4 get_local_songs() (MobileClientWrapper method), 4 get_local_songs() (MusicManagerWrapper method), 7 get_suggested_filename() (in module gmusicapi_wrapper.utils), 12 get_supported_filepaths() (in module gmusicapi_wrapper.utils), 11 gmusicapi_wrapper.mobileclient (module), 3 gmusicapi_wrapper.musicmanager (module), 7 gmusicapi_wrapper.utils (module), 11 I is_authenticated (MobileClientWrapper attribute), 3 is_authenticated (MusicManagerWrapper attribute), 7 is_subscribed (MobileClientWrapper attribute), 3 L login() (MobileClientWrapper method), 3 login() (MusicManagerWrapper method), 7 logout() (MobileClientWrapper method), 3 logout() (MusicManagerWrapper method), 7 M MobileClientWrapper (class in gmusicapi_wrapper.mobileclient), 3 MusicManagerWrapper (class in gmusicapi_wrapper.musicmanager), 7 T template_to_filepath() (in module gmusicapi_wrapper.utils), 13 U upload() (MusicManagerWrapper method), 9 W walk_depth() (in module gmusicapi_wrapper.utils), 13 17

RouteMobile Mobile Client Manual for Android Version: 2.0

RouteMobile Mobile Client Manual for Android Version: 2.0 RouteMobile Mobile Client Manual for Android Version: 2.0 Route Mobile Limited 2018. All rights reserved 1 Contents Installation... 3 Getting Started... 5 Login Page... 6 Main Screen... 7 Send SMS... 9

More information

MyGeotab Python SDK Documentation

MyGeotab Python SDK Documentation MyGeotab Python SDK Documentation Release 0.8.0 Aaron Toth Dec 13, 2018 Contents 1 Features 3 2 Usage 5 3 Installation 7 4 Documentation 9 5 Changes 11 5.1 0.8.0 (2018-06-18)............................................

More information

ShareSync Get Started Guide for Mac

ShareSync Get Started Guide for Mac ShareSync Get Started Guide for Mac ShareSync Overview ShareSync is a file backup and sharing service. It allows you to: Back up your files in real-time to protect against data loss from ransomware, accidental

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

prompt Documentation Release Stefan Fischer

prompt Documentation Release Stefan Fischer prompt Documentation Release 0.4.1 Stefan Fischer Nov 14, 2017 Contents: 1 Examples 1 2 API 3 3 Indices and tables 7 Python Module Index 9 i ii CHAPTER 1 Examples 1. Ask for a floating point number: >>>

More information

SecuriSync Get Started Guide for Windows

SecuriSync Get Started Guide for Windows SecuriSync Get Started Guide for Windows Intermedia Backup and File Sharing - SecuriSync SecuriSync is a file backup and sharing service. It allows you to: Back up your files in real-time to protect against

More information

Getting Started New User. To begin, open the Multi-Factor Authentication Service in your inbox.

Getting Started New User. To begin, open the Multi-Factor Authentication Service  in your inbox. Getting Started New User To begin, open the Multi-Factor Authentication Service email in your inbox. 1 1 Getting Started New User Click the link https://mfa.baptisthealth.net/portal. This link takes you

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Contents. Multi-Factor Authentication Overview. Available MFA Factors

Contents. Multi-Factor Authentication Overview. Available MFA Factors The purpose of this document is to provide National University student Single Sign-On users with instructions for how to configure and use Multi-Factor Authentication. Contents Multi-Factor Authentication

More information

pybtsync Documentation

pybtsync Documentation pybtsync Documentation Release 0.0.1 Tiago Macarios December 04, 2014 Contents 1 Tutorial and Walkthrough 3 1.1 Getting Started.............................................. 3 2 pybtsync module classes

More information

eoddata-client Documentation

eoddata-client Documentation eoddata-client Documentation Release 0.3.3 Aleksey Sep 27, 2017 Table of Contents: 1 Usage 1 2 Client API 3 2.1 Http client................................................ 3 2.2 Errors...................................................

More information

Secure Remote Access Installation and User Guide

Secure Remote Access Installation and User Guide Secure Remote Access Installation and User Guide Version 1.0 Published July 2016 TABLE OF CONTENTS 1 System Requirements...3 1.1 Take Control for Windows...3 1.2 Take Control for OSX...3 2 Configure User

More information

Administering Jive Mobile Apps for ios and Android

Administering Jive Mobile Apps for ios and Android Administering Jive Mobile Apps for ios and Android TOC 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios...3 Custom App Wrapping for ios...3 Authentication with Mobile

More information

Using Microsoft Azure Active Directory MFA as SAML IdP with Pulse Connect Secure. Deployment Guide

Using Microsoft Azure Active Directory MFA as SAML IdP with Pulse Connect Secure. Deployment Guide Using Microsoft Azure Active Directory MFA as SAML IdP with Pulse Connect Secure Deployment Guide v1.0 May 2018 Introduction This document describes how to set up Pulse Connect Secure for SP-initiated

More information

Google 2 factor authentication User Guide

Google 2 factor authentication User Guide Google 2 factor authentication User Guide Description: Updated Date: This guide describes how to setup Two factor authentication for your Google account. March, 2018 Summary ITSC is pleased to launch Two

More information

Contents. Introduction To CloudSync. 2. System Requirements...2. Installing CloudSync 2. Getting Started 4

Contents. Introduction To CloudSync. 2. System Requirements...2. Installing CloudSync 2. Getting Started 4 Quick Start Guide Contents Introduction To CloudSync. 2 System Requirements...2 Installing CloudSync 2 Getting Started 4 1 Introduction To CloudSync On behalf of FilesAnywhere, we would like to welcome

More information

SSH with Globus Auth

SSH with Globus Auth SSH with Globus Auth Summary As the community moves away from GSI X.509 certificates, we need a replacement for GSI-OpenSSH that uses Globus Auth (see https://docs.globus.org/api/auth/ ) for authentication.

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.7.0 The owncloud developers October 30, 2018 CONTENTS 1 Release Notes 1 1.1 Changes in 2.7.0............................................. 1 1.2 Changes in 2.6.0.............................................

More information

MFA (Multi-Factor Authentication) Enrollment Guide

MFA (Multi-Factor Authentication) Enrollment Guide MFA (Multi-Factor Authentication) Enrollment Guide Morristown Medical Center 1. Open Internet Explorer (Windows) or Safari (Mac) 2. Go to the URL: https://aka.ms/mfasetup enter your AHS email address and

More information

SONOS. Product Requirements Document (Version 2.0)

SONOS. Product Requirements Document (Version 2.0) SONOS Product Requirements Document (Version 2.0) Team: Euphoria Project Name: Block Party Members: Pedro Sosa Mena Iskander Miguel Delgado Connor Shanks Brian David Wolfe Table of Contents 1. Introduction

More information

owncloud Android App Manual

owncloud Android App Manual owncloud Android App Manual Release 2.0.0 The owncloud developers December 14, 2017 CONTENTS 1 Using the owncloud Android App 1 1.1 Getting the owncloud Android App...................................

More information

yagmail Documentation

yagmail Documentation yagmail Documentation Release 0.10.189 kootenpv Feb 08, 2018 Contents 1 API Reference 3 1.1 Authentication.............................................. 3 1.2 SMTP Client...............................................

More information

Samsung Knox Mobile Enrollment. VMware Workspace ONE UEM 1902

Samsung Knox Mobile Enrollment. VMware Workspace ONE UEM 1902 Samsung Knox Mobile Enrollment VMware Workspace ONE UEM 1902 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this

More information

SITEMASTER INSTITUTIONAL ADMINISTATOR USER GUIDE INTRODUCTION

SITEMASTER INSTITUTIONAL ADMINISTATOR USER GUIDE INTRODUCTION SITEMASTER INSTITUTIONAL ADMINISTATOR USER GUIDE 1.0 1. INTRODUCTION The institutional administrator dashboard allows librarians and other authorized personnel to view and edit information about their

More information

Introduction to application management

Introduction to application management Introduction to application management To deploy web and mobile applications, add the application from the Centrify App Catalog, modify the application settings, and assign roles to the application to

More information

Multi-factor Authentication Instructions

Multi-factor Authentication Instructions What is MFA? (MFA) is a security measure to confirm your identity in addition to your username and password. It helps in the prevention of unauthorized access to your account. MFA authentication is typically

More information

Multi-factor Authentication Instructions

Multi-factor Authentication Instructions What is MFA? Multi-factor Authentication (MFA) is a security measure to confirm your identity in addition to your username and password. It helps in the prevention of unauthorized access to your account.

More information

BCBST Secure File Gateway Instructions (HTTPS)

BCBST Secure File Gateway Instructions (HTTPS) BCBST Secure File Gateway Instructions (HTTPS) 1 Table of Contents New BCBST Secure File Gateway pg 3 Upload file to BCBST pg 4 Search Function pg 12 Download file from BCBST pg 13 Subscribe to e-mail

More information

django-oauth2-provider Documentation

django-oauth2-provider Documentation django-oauth2-provider Documentation Release 0.2.7-dev Alen Mujezinovic Aug 16, 2017 Contents 1 Getting started 3 1.1 Getting started.............................................. 3 2 API 5 2.1 provider.................................................

More information

How to upload documentation

How to upload documentation How to upload documentation June 2016 Table of Contents IMPORTANT... 2 UPDATE... 2 Step 1 Obtain your Username and Password... 2 Step 2 Login... 3 Step 3 Upload the Submission Zip File... 3 Step 4 - Tell

More information

Data Insight Feature Briefing Box Cloud Storage Support

Data Insight Feature Briefing Box Cloud Storage Support Data Insight Feature Briefing Box Cloud Storage Support This document is about the new Box Cloud Storage Support feature in Symantec Data Insight 5.0. If you have any feedback or questions about this document

More information

Cloud UC. Program Downloads I WOULD LIKE TO... DOWNLOADING THE CLIENT SOFTWARE

Cloud UC. Program Downloads I WOULD LIKE TO... DOWNLOADING THE CLIENT SOFTWARE I WOULD LIKE TO... Cloud UC Program Downloads Avaya Cloud allows you to setup your telephone to be used the way you want it to. There are additional programs that extend the abilities of the application

More information

Flask-SimpleLDAP Documentation

Flask-SimpleLDAP Documentation Flask-SimpleLDAP Documentation Release 1.1.2 Alexandre Ferland Sep 14, 2017 Contents 1 Quickstart 3 2 Configuration 5 3 API 7 3.1 Classes.................................................. 7 3.2 History..................................................

More information

Set up the Outlook mobile app on an Android device

Set up the Outlook mobile app on an Android device Set up the Outlook mobile app on an Android device You can set up the Outlook mobile app on your Android device to access your email, calendar, and contacts. The instructions below will show you how to

More information

Administering Jive Mobile Apps

Administering Jive Mobile Apps Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Custom App Wrapping for ios... 4 Native App Caching: Android...4 Native App

More information

Match My . Set-Up Guide. Single Match Version Single Match Set-Up Guide RAE Internet Inc

Match My  . Set-Up Guide. Single Match Version Single Match Set-Up Guide RAE Internet Inc Match My Email Set-Up Guide Single Match Version 2.0.4 Single Match Set-Up Guide RAE Internet Inc. 2012 1 Copyright 2011-2012, RAE Internet Inc. (dba Match My Email). This document is the copyrighted intellectual

More information

OSIsoft PI Custom Datasource. User Guide

OSIsoft PI Custom Datasource. User Guide OSIsoft PI Custom Datasource User Guide Nov 2015 1. Introduction... 5 Key Capabilities... 6 Retrieving PI Tag Lists... 6 Retrieving PI Tag Data... 6 Retrieving AF Elements, Metadata and Data... 7 Retrieving

More information

XIA Configuration Server

XIA Configuration Server XIA Configuration Server XIA Configuration Server v6 Cloud Services Quick Start Guide Tuesday, 20 May 2014 1 P a g e X I A C o n f i g u r a t i o n C l o u d S e r v i c e s Contents Overview... 3 Creating

More information

f5-icontrol-rest Documentation

f5-icontrol-rest Documentation f5-icontrol-rest Documentation Release 1.3.10 F5 Networks Aug 04, 2018 Contents 1 Overview 1 2 Installation 3 2.1 Using Pip................................................. 3 2.2 GitHub..................................................

More information

Netmiko Documentation

Netmiko Documentation Netmiko Documentation Release 1.0 Kirk Byers Mar 22, 2018 Contents 1 Netmiko Classes 3 1.1 BaseConnection............................................. 3 2 Indices and tables 11 i ii Contents: Contents

More information

Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures

Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures Step-by-Step Guide to Ansur Executive 3.0 Installation With or without Electronic Signatures Ansur with Electronic Signatures Background: Electronic signature is a new feature that is implemented in Ansur

More information

The current topic: Python. Announcements. Python. Python

The current topic: Python. Announcements. Python. Python The current topic: Python Announcements! Introduction! reasons for studying languages! language classifications! simple syntax specification Object-oriented programming: Python Types and values Syntax

More information

YouTube. What is YouTube?

YouTube. What is YouTube? YouTube What is YouTube? YouTube is a video-sharing website on which users can upload, view and share videos. The majority of the content on YouTube has been uploaded by individuals, although media corporations

More information

1. Open Microsoft Outlook and under Microsoft Outlook's new menu "Outlook Integration".

1. Open Microsoft Outlook and under Microsoft Outlook's new menu Outlook Integration. 1. Product Installation Installing SharePointBoost's Outlook Integration Please check with the Installation Guide Once you have successfully installed both Server and Client side of Outlook Integration,

More information

CDR Analysis and reporting tool

CDR Analysis and reporting tool CDR Analysis and reporting tool The Cisco Unified Communications Manager CDR Analysis and Reporting (CAR) tool generates reports of information for quality of service, traffic, user call volume, billing,

More information

User Guide Online Backup

User Guide Online Backup User Guide Online Backup Table of contents Table of contents... 1 Introduction... 2 Getting Started with the Online Backup Software... 2 Installing the Online Backup Software... 2 Configuring a Device...

More information

Configuring Thunderbird for GMail

Configuring Thunderbird for GMail Configuring Thunderbird for GMail There are a couple of settings that need to be changed on Gmail before you can add the account to Thunderbird. 1) Log in to Gmail and click on Settings (which looks like

More information

OneKey Mobile App USER GUIDE

OneKey Mobile App USER GUIDE USER GUIDE Updated in September 2017 All rights reserved. No part of this publication may be produced or transmitted in any form or by any means, including photocopying and recording, without seeking the

More information

ANNEX A GETTING STARTED WITH SINGAPORE STUDENT LEARNING SPACE Instructions for Students

ANNEX A GETTING STARTED WITH SINGAPORE STUDENT LEARNING SPACE Instructions for Students ANNEX A GETTING STARTED WITH SINGAPORE STUDENT LEARNING SPACE Instructions for Students SYSTEM REQUIREMENTS 1. The Singapore Student Learning Space (SLS) is accessible through the internet browsers on

More information

How to submit an article to Parergon: Journal of the Australian and New Zealand Association for Medieval and Early Modern Studies

How to submit an article to Parergon: Journal of the Australian and New Zealand Association for Medieval and Early Modern Studies How to submit an article to Parergon: Journal of the Australian and New Zealand Association for Medieval and Early Modern Studies This is a short guide to walk you through the process of submitting an

More information

How to access Launchpad and Textbooks online

How to access Launchpad and Textbooks online Quest Tech Tips Launchpad & Textbooks Online Directions (front and back) How to setup your mobile device to receive school/district notifications (front and back) Edline parent instructions Free Microsoft

More information

Extract from the ARC & RVRC Operational & Administrative Procedures

Extract from the ARC & RVRC Operational & Administrative Procedures 2.2 Configuring MASmobile 2.2.1 Configuring MASmobile settings (iphone) 2.2.2 Configuring MASmobile settings (Android) 2.2.3 Main Menu 2.2.4 Logging In 2.2.5 Managing Accounts 2.2.6 Searching for Systems

More information

Akana API Platform: Upgrade Guide

Akana API Platform: Upgrade Guide Akana API Platform: Upgrade Guide Version 8.0 to 8.2 Akana API Platform Upgrade Guide Version 8.0 to 8.2 November, 2016 (update v2) Copyright Copyright 2016 Akana, Inc. All rights reserved. Trademarks

More information

IAG Second Factor Delivery Methods

IAG Second Factor Delivery Methods IAG Second Factor Delivery Methods In our ongoing efforts to protect Starbucks information, we have implemented the Identity Access Gateway (IAG) enhanced login procedures for Starbucks systems and applications.

More information

PaperCut Printing Guide for Students

PaperCut Printing Guide for Students PaperCut Printing Guide for Students Table of Contents: 1. Log-in and Add Funds 2. Make Copies 3. Print from AMDA Computer (Windows) 4. Print from AMDA Computer (Mac) 5. Print from Personal Computer (Web

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

gmusicapi Documentation

gmusicapi Documentation gmusicapi Documentation Release 11.0.4-rc.1 Simon Weber Nov 03, 2018 Contents 1 Features 3 2 Using gmusicapi 5 2.1 Usage................................................... 5 2.2 Support for Other Languages......................................

More information

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin

A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin A Guide to Understand, Install and Use Pie Register WordPress Registration Plugin 1 P a g e Contents 1. Introduction... 5 2. Who is it for?... 6 3. Community v/s PRO Version... 7 3.1. Which version is

More information

Office 365 Business and Office 365 Pro Plus Deployment Guide V 1.0

Office 365 Business and Office 365 Pro Plus Deployment Guide V 1.0 Office 365 Business and Office 365 Pro Plus Deployment Guide Table of Contents 1. Provisioning Office 365... 1 1.1 Operating system requirements... 1 1.2 Browser requirements Administration Centre and

More information

Standards New Zealand Online Library user guide for Read-Only users Logging in as a Read-Only user

Standards New Zealand Online Library user guide for Read-Only users Logging in as a Read-Only user Standards New Zealand Online Library user guide for Read-Only users Logging in as a Read-Only user Go to www.standards.co.nz. Click Login at the top of the page. Type your Read-Only username and password

More information

Desktop Application Reference Guide For Windows and Mac

Desktop Application Reference Guide For Windows and Mac Desktop Application Reference Guide For Windows and Mac UNTETHERED LABS, INC. support@gkaccess.com Contents 1. GateKeeper Feature Description... 2 1.1 What is the GateKeeper Desktop Application?... 2 1.2

More information

SymmetryCRM: Outlook Mail Application Tool

SymmetryCRM: Outlook Mail Application Tool SymmetryCRM: Outlook Mail Application Tool Overview The Symmetry Outlook application allows smooth integration of inbound and outbound email When sending an email to one or more people, a user has the

More information

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide

SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide SAS Visual Analytics 7.3 for SAS Cloud: Onboarding Guide Introduction This onboarding guide covers tasks that account administrators need to perform to set up SAS Visual Statistics and SAS Visual Analytics

More information

MEDIASEAL Encryptor Client Manual

MEDIASEAL Encryptor Client Manual MEDIASEAL Encryptor Client Manual May 2018 Version 3.7.1 Fortium Technologies Ltd www.fortiumtech.com Copyright 2018 - Fortium Technologies Ltd Information contained in this document is subject to change

More information

Enhancing cloud applications by using external authentication services. 2015, 2016 IBM Corporation

Enhancing cloud applications by using external authentication services. 2015, 2016 IBM Corporation Enhancing cloud applications by using external authentication services After you complete this section, you should understand: Terminology such as authentication, identity, and ID token The benefits of

More information

Integration tool user manual

Integration tool user manual Integration tool user manual contact@ilocksystems.com www.ilocksystems.com tel.+ (48) 61 669 06 87 technical support: support@ilocksystems.com 1 P age Table of contents I. Basic information.... 2 1. What

More information

Updating Users. Updating Users CHAPTER

Updating Users. Updating Users CHAPTER CHAPTER 18 Update the existing user information that is in the database by using the following procedure:, page 18-1 Retaining Stored Values, page 18-2 Using the BAT Spreadsheet to Create a CSV Data File

More information

Duo Enrollment for DA Employees

Duo Enrollment for DA Employees Duo Enrollment for DA Employees Duo s Multi-Factor Authentication will be used to authenticate DA employees when using DA Portal, DA s Outlook Web Access (OWA), and DA s O365. It is RECOMMENDED to have

More information

The following topics provide more information on user identity. Establishing User Identity Through Passive Authentication

The following topics provide more information on user identity. Establishing User Identity Through Passive Authentication You can use identity policies to collect user identity information from connections. You can then view usage based on user identity in the dashboards, and configure access control based on user or user

More information

VIEVU Solution App User Guide

VIEVU Solution App User Guide VIEVU Solution App User Guide Contact Us If you need assistance or have any questions, please visit www.vievu.com/vievu-solutionsupport, contact us by phone at 888-285-4548, or email support@vievu.com.

More information

Identity Policies. Identity Policy Overview. Establishing User Identity through Active Authentication

Identity Policies. Identity Policy Overview. Establishing User Identity through Active Authentication You can use identity policies to collect user identity information from connections. You can then view usage based on user identity in the dashboards, and configure access control based on user or user

More information

Media AI. Adaptive. Intelligent. Architectural Design Document

Media AI. Adaptive. Intelligent. Architectural Design Document Adaptive. Intelligent. Nick Burwell CS 130 Software Development Thursday, December 16, 2004 Table of Contents 1. Introduction...1 2. Architecture...1 3. Component Design...2 3.1 User login & administration...2

More information

LOGIX Hosted PBX GENERAL HPBX TRAINING. Page 1 of 18

LOGIX Hosted PBX GENERAL HPBX TRAINING. Page 1 of 18 2018 LOGIX Hosted PBX GENERAL HPBX TRAINING LOGIX FIBER NETWORKS Version 10.2.2018 Page 1 of 18 Table of Contents Revision History... 3 Overview... 4 Going over the Logix.Com website... 5 Going over the

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Netmiko Documentation

Netmiko Documentation Netmiko Documentation Release 1.0 Kirk Byers Dec 14, 2018 Contents 1 Netmiko Classes 3 1.1 BaseConnection............................................. 3 2 Indices and tables 13 i ii Contents: Contents

More information

Guide to your CGIAR Network account Self Service tool

Guide to your CGIAR Network account Self Service tool Guide to your CGIAR Network account Self Service tool The self-service tool allows you to: Change Password: Change your current password from anywhere using your web browser. Reset Password: Reset your

More information

Pymixup Documentation

Pymixup Documentation Pymixup Documentation Release 1.0.2 Richard DeVost June 09, 2016 Contents 1 Why Obfuscate? 3 2 What pymixup Does 5 3 Contents 7 3.1 Installation................................................ 7 3.2 Program

More information

Ricoh Managed File Transfer (MFT) User Guide

Ricoh Managed File Transfer (MFT) User Guide Ricoh Managed File Transfer (MFT) User Guide -- TABLE OF CONTENTS 1 ACCESSING THE SITE... 3 1.1. WHAT IS RICOH MFT... 3 1.2. SUPPORTED BROWSERS... 3 1.3. LOG IN... 3 1.4. NAVIGATION... 4 1.5. FORGOTTEN

More information

Troubleshooting Single Sign-On

Troubleshooting Single Sign-On Security Trust Error Message, on page 1 "Invalid Profile Credentials" Message, on page 2 "Module Name Is Invalid" Message, on page 2 "Invalid OpenAM Access Manager (Openam) Server URL" Message, on page

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

How to social login with Aruba controller. Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00

How to social login with Aruba controller. Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00 Bo Nielsen, CCIE #53075 (Sec) December 2016, V1.00 Overview This short document describes the basic setup for social login using Aruba ClearPass and Aruba wireless LAN controller. Aruba ClearPass, version

More information

Info Input Express Network Edition

Info Input Express Network Edition Info Input Express Network Edition Administrator s Guide A-61892 Table of Contents Using Info Input Express to Create and Retrieve Documents... 9 Compatibility... 9 Contents of this Guide... 9 Terminology...

More information

etrac ATOM Android App Setup Guide

etrac ATOM Android App Setup Guide etrac ATOM Android App Setup Guide Version: 1.0.0 Published: 10/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Initial Setup... 3 Settings...

More information

Troubleshooting Single Sign-On

Troubleshooting Single Sign-On Security Trust Error Message, page 1 "Invalid Profile Credentials" Message, page 2 "Module Name Is Invalid" Message, page 2 "Invalid OpenAM Access Manager (Openam) Server URL" Message, page 2 Web Browser

More information

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager

Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) Modified 15 SEP 2017 VMware Identity Manager Setting Up Resources in VMware Identity Manager (SaaS) You can find the most up-to-date technical documentation

More information

GMusicProcurator Documentation

GMusicProcurator Documentation GMusicProcurator Documentation Release 0.5.0 Mark Lee Sep 27, 2017 Contents 1 Features 3 2 Table of Contents 5 2.1 Installation................................................ 5 2.1.1 Requirements..........................................

More information

QR-PATROL M.A.R.S. USER GUIDE. Mobile Guard Tour Monitoring

QR-PATROL M.A.R.S. USER GUIDE. Mobile Guard Tour Monitoring QR-PATROL M.A.R.S. USER GUIDE Mobile Guard Tour Monitoring QR-Patrol M.A.R.S. User Guide Download QR-Patrol M.A.R.S. from: Google PlayStore: https://play.google.com/store/apps/details?id=com.terracom.qrpatrol

More information

VIEVU Solution App User Guide

VIEVU Solution App User Guide VIEVU Solution App User Guide INTRODUCTION VIEVU Solution is the next generation, fully-hosted, cloud evidence management system. This guide describes how to operate the VIEVU Solution. Additional support

More information

pydas Documentation Release Kitware, Inc.

pydas Documentation Release Kitware, Inc. pydas Documentation Release 0.3.6 Kitware, Inc. January 28, 2016 Contents 1 Introduction To pydas 3 1.1 Requirements............................................... 3 1.2 Installing and Upgrading pydas.....................................

More information

Building the Modern Research Data Portal using the Globus Platform. Rachana Ananthakrishnan GlobusWorld 2017

Building the Modern Research Data Portal using the Globus Platform. Rachana Ananthakrishnan GlobusWorld 2017 Building the Modern Research Data Portal using the Globus Platform Rachana Ananthakrishnan rachana@globus.org GlobusWorld 2017 Platform Questions How do you leverage Globus services in your own applications?

More information

Texas Division How to Login and Register for My IT Support and ServiceNow

Texas Division How to Login and Register for My IT Support and ServiceNow Texas Division How to Login and Register for My IT Support and ServiceNow Go to texas.mychiitsuppport.org. You'll see the screen below. My IT Support/ServiceNow is a national system and utilizes national

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 1.1.2-stable Juda Kaleta Nov 10, 2017 Contents 1 Installation & Setup 3 1.1 Installation................................................ 3 1.2 Setup...................................................

More information

Error While Opening Connection - Ldap Error Code 49 - Invalid Credentials

Error While Opening Connection - Ldap Error Code 49 - Invalid Credentials Error While Opening Connection - Ldap Error Code 49 - Invalid Credentials AuthenticationException: (LDAP: error code 49-80090308: LdapErr: invalid credentials new user directory with the original configuration

More information

Getting Started with HeidiSongs Streaming Video Subscriptions on VHX

Getting Started with HeidiSongs Streaming Video Subscriptions on VHX Getting Started with HeidiSongs Streaming Video Subscriptions on VHX 1. To begin, go to this link: https://heidisongs.vhx.tv/ 2. You will see a screen like the one below. We recommend that before purchasing,

More information

212Posters Instructions

212Posters Instructions 212Posters Instructions The 212Posters is a web based application which provides the end user the ability to format and post content, abstracts, posters, and documents in the form of pre-defined layouts.

More information

User Guide: Windows Mac Android ios

User Guide: Windows Mac Android ios 1 TM Laplink Software, Inc. For technical support issues or questions, please visit: http://www.laplink.com/contact For other inquiries, please see contact details below: E-mail: CustomerService@laplink.com

More information

South Essex College Remote Resources

South Essex College Remote Resources South Essex College Remote Resources South Essex College Remote Resources can be configured on Windows so that the programs appear in your Start menu for ease of use, please see below under Set up RemoteApp

More information

Rhythm Rhyme Results educationalrap.com. Screenshots and Information

Rhythm Rhyme Results educationalrap.com. Screenshots and Information Screenshots and Information RRR.fm Welcome Email Once your subscription to RRR.fm has been processed you will receive this Welcome to RRR.fm email. Read the directions carefully and keep in a convenient

More information

How does it look like?

How does it look like? EasyAdmin Windows Authentication KB4031b 1 The OpenLM EasyAdmin administrative web interface incorporates a role-based security access scheme, facilitating different levels of access to different role

More information