LightBlog

dimanche 30 avril 2017

How to get Google Assistant on your Windows, Mac, or Linux Machine

Google Assistant is Google’s answer to Amazon’s Alexa smart home assistant. Initially only available with limited functionality in the Google Allo application, Google Assistant later rolled out with the Google Home and Pixel smartphones to bring the full power of Google’s assistant to consumers.

After a few months of waiting, smartphones running Android 6.0+ also received Google Assistant, and just a few days ago Google launched the Google Assistant SDK which allows Assistant to be run on basically any platform. Today, we will show you how to install Google Assistant onto your Windows, Mac, or Linux machine using Python.

Note: at this point in time, this is purely for educational purposes. There’s no fancy GUI for you to play with, and installing Assistant requires you to use the command line.


Get Google Assistant on Windows/Mac/Linux Machines

Requirements:

You’ll need to have Python installed no matter whether or not you are using Windows, macOS, or a GNU/Linux distribution. Installation is fairly simple and already well-documented by the Python wiki, so we won’t go into many details about getting Python up and running on your machine.

Once you’ve got Python working on your machine (you can confirm it is working by opening up a terminal/command prompt and then simply typing python.) If you see the terminal/command prompt return the current Python version on your computer, then you’re golden.

Next, before we can install the necessary files to get Google Assistant working, we need to enable access to the Google Assistant API in the Google Cloud Platform Console.


Configure the Google Assistant API

What follows are step-by-step instructions walking you through the process to enable the Google Assistant API in the Cloud Platform Console so you can access Google Assistant through the Python program. All of these steps are platform independent, meaning that the steps are the same for Windows, macOS, and GNU/Linux users.

  1. Go to the Projects page in the Google Cloud Platform Console.
  2. Click on “Create Project” up top.
  3. Name the Project “My Google Assistant” and click “Create.”
  4. Wait a few seconds for the Console to create your new Project. You should see a spinning progress icon in the top right. After it is done creating your Project, you will be brought to your Project’s configuration page.
  5. Click this link to go straight to the Google Assistant API page. Up top, click “Enable.”
  6. Google will warn you that you need to create credentials to use this API. Click “Create credentials” in the top right. This will take you to a setup wizard page where Google helps you figure out what kind of credentials you need to use this API.
  7. Under “where will you be calling the API from”, select “Other UI (e.g. Windows, CLI tool)“. For “what data will you be accessing” select the “User data” circle. Now tap “what credentials do I need?”
  8. Google should recommend that you create an OAuth 2.0 client ID. Name the Client ID anything you want, for example, your name + Desktop. Once done picking a name, click “create client ID.”
  9. Under “product name shown to users” enter “My Google Assistant.” Click continue.
  10. Click “done.” There’s no need to click download here as we only need the client secret, which we will download next.
  11. Now under the list of OAuth 2.0 client IDs, you should see the client ID you just made. All the way to the right, click on the download icon to download the client_secret_XXX.json file, where ‘XXX’ is your client ID. Save this file anywhere on your computer, ideally in a new folder called “googleassistant.”
  12. Go to the Activity controls page for your Google account and make sure that “Web & App Activity”, “Location History”, “Device Information”, and “Voice & Audio Activity” are enabled. This is so Google Assistant can actually read you personalized information.

 

We have now created a mechanism for a client, in this case our Windows/Mac/Linux machine, to access the Google Assistant API under our Google account. Next we need to set up the client that will access the Google Assistant API.

Install the Google Assistant Sample Python Project

Although Google recommends that you set up Python virtual environments to isolate the Google Assistant SDK and its dependencies from other Python system packages, we’re going to skip this step as it’s unlikely that you’ll play around with this for more than a few minutes. You can easily go back to the Cloud Platform Console and disable the API if you’re worried about the potential for other programs to access your Google account.

Open up a terminal/command prompt window and go through the following steps. First, enter this command:

py -m pip install google-assistant-sdk[samples]

You should see a whole bunch of dependencies being downloaded and installed when you enter this command. These are needed for the sample Python project to work. Wait for it to finish.

Once it’s done, next enter the following command (make sure to adjust the path):

py -m googlesamples.assistant.auth_helpers --client-secrets path\to\your\client_secret_XXX.apps.googleusercontent.com.json

In the command prompt, you will see a response telling you to visit a URL in order to authorize the application.

Copy and paste this URL into your browser. Select the same Google account that you used to configure the Google Assistant API. On the next page, you will see a text box that contains your client’s Access Token.

Copy that Access token and paste it into the command prompt where it asks you for the authorization code. If done correctly, you will see a response that your credentials have been saved.


Test the Google Assistant

The first thing you’ll want to test is whether or not Google Assistant is able to record audio from your microphone. Enter the following command into a command prompt, which will record 5 seconds of audio and play it back to you:

python -m googlesamples.assistant.audio_helpers

If you hear your audio played back to you, then enter this command to begin talking to Google Assistant:

python -m googlesamples.assistant

Wait for the command prompt to say “press Enter to send a new request”, then press Enter to begin talking to Google Assistant. After you’re done speaking, the command prompt will display a transcript of what you just stated and then play back the response. If you see a warning afterwards, just ignore it.

Have fun playing with Google Assistant on your Windows, macOS, or GNU/Linux machine! I played with it for only a few minutes before getting bored with it. It’s not particularly useful in this format, but it is a very quick demonstration of the possibilities that the new Google Assistant SDK represents. Perhaps we may see desktop apps or browser extensions taking advantage of this functionality in the near future.



from xda-developers http://ift.tt/2pxJBY6
via IFTTT

How to get Google Assistant on your Windows, Mac, or Linux Machine

Google Assistant is Google's answer to Amazon's Alexa smart home assistant. Initially only available with limited functionality in the Google Allo application, Google Assistant later rolled out with the Google Home and Pixel smartphones to bring the full power of Google's assistant to consumers.

After a few months of waiting, smartphones running Android 6.0+ also received Google Assistant, and just a few days ago Google launched the Google Assistant SDK which allows Assistant to be run on basically any platform. Today, we will show you how to install Google Assistant onto your Windows, Mac, or Linux machine using Python.

Note: at this point in time, this is purely for educational purposes. There's no fancy GUI for you to play with, and installing Assistant requires you to use the command line.


Get Google Assistant on Windows/Mac/Linux Machines

Requirements:

You'll need to have Python installed no matter whether or not you are using Windows, macOS, or a GNU/Linux distribution. Installation is fairly simple and already well-documented by the Python wiki, so we won't go into many details about getting Python up and running on your machine.

Once you've got Python working on your machine (you can confirm it is working by opening up a terminal/command prompt and then simply typing python.) If you see the terminal/command prompt return the current Python version on your computer, then you're golden.

Next, before we can install the necessary files to get Google Assistant working, we need to enable access to the Google Assistant API in the Google Cloud Platform Console.


Configure the Google Assistant API

What follows are step-by-step instructions walking you through the process to enable the Google Assistant API in the Cloud Platform Console so you can access Google Assistant through the Python program. All of these steps are platform independent, meaning that the steps are the same for Windows, macOS, and GNU/Linux users.

  1. Go to the Projects page in the Google Cloud Platform Console.
  2. Click on "Create Project" up top.
  3. Name the Project "My Google Assistant" and click "Create."
  4. Wait a few seconds for the Console to create your new Project. You should see a spinning progress icon in the top right. After it is done creating your Project, you will be brought to your Project's configuration page.
  5. Click this link to go straight to the Google Assistant API page. Up top, click "Enable."
  6. Google will warn you that you need to create credentials to use this API. Click "Create credentials" in the top right. This will take you to a setup wizard page where Google helps you figure out what kind of credentials you need to use this API.
  7. Under "where will you be calling the API from", select "Other UI (e.g. Windows, CLI tool)". For "what data will you be accessing" select the "User data" circle. Now tap "what credentials do I need?"
  8. Google should recommend that you create an OAuth 2.0 client ID. Name the Client ID anything you want, for example, your name + Desktop. Once done picking a name, click "create client ID."
  9. Under "product name shown to users" enter "My Google Assistant." Click continue.
  10. Click "done." There's no need to click download here as we only need the client secret, which we will download next.
  11. Now under the list of OAuth 2.0 client IDs, you should see the client ID you just made. All the way to the right, click on the download icon to download the client_secret_XXX.json file, where 'XXX' is your client ID. Save this file anywhere on your computer, ideally in a new folder called "googleassistant."
  12. Go to the Activity controls page for your Google account and make sure that "Web & App Activity", "Location History", "Device Information", and "Voice & Audio Activity" are enabled. This is so Google Assistant can actually read you personalized information.

 

We have now created a mechanism for a client, in this case our Windows/Mac/Linux machine, to access the Google Assistant API under our Google account. Next we need to set up the client that will access the Google Assistant API.

Install the Google Assistant Sample Python Project

Although Google recommends that you set up Python virtual environments to isolate the Google Assistant SDK and its dependencies from other Python system packages, we're going to skip this step as it's unlikely that you'll play around with this for more than a few minutes. You can easily go back to the Cloud Platform Console and disable the API if you're worried about the potential for other programs to access your Google account.

Open up a terminal/command prompt window and go through the following steps. First, enter this command:

  py -m pip install google-assistant-sdk[samples]  

You should see a whole bunch of dependencies being downloaded and installed when you enter this command. These are needed for the sample Python project to work. Wait for it to finish.

Once it's done, next enter the following command (make sure to adjust the path):

  py -m googlesamples.assistant.auth_helpers --client-secrets path\to\your\client_secret_XXX.apps.googleusercontent.com.json  

In the command prompt, you will see a response telling you to visit a URL in order to authorize the application.

Copy and paste this URL into your browser. Select the same Google account that you used to configure the Google Assistant API. On the next page, you will see a text box that contains your client's Access Token.

Copy that Access token and paste it into the command prompt where it asks you for the authorization code. If done correctly, you will see a response that your credentials have been saved.


Test the Google Assistant

The first thing you'll want to test is whether or not Google Assistant is able to record audio from your microphone. Enter the following command into a command prompt, which will record 5 seconds of audio and play it back to you:

  python -m googlesamples.assistant.audio_helpers  

If you hear your audio played back to you, then enter this command to begin talking to Google Assistant:

  python -m googlesamples.assistant  

Wait for the command prompt to say "press Enter to send a new request", then press Enter to begin talking to Google Assistant. After you're done speaking, the command prompt will display a transcript of what you just stated and then play back the response. If you see a warning afterwards, just ignore it.

Have fun playing with Google Assistant on your Windows, macOS, or GNU/Linux machine! I played with it for only a few minutes before getting bored with it. It's not particularly useful in this format, but it is a very quick demonstration of the possibilities that the new Google Assistant SDK represents. Perhaps we may see desktop apps or browser extensions taking advantage of this functionality in the near future.



from xda-developers http://ift.tt/2pxJBY6
via IFTTT

samedi 29 avril 2017

Speaki Reads your Notifications Out Loud using Android’s Text-to-Speech

Looking for an app that reads your notifications out loud? Check out Speaki by XDA Junior Member dEVshr. This free app reads your notifications out loud using Android's Text-to-Speech capabilities. You can control when notifications are read out loud by restricting which apps to read from, which audio output device your phone is currently connected to, and choose whether or not to read the full notification content. There are some other features we're glossing over, but check out the thread if you're interested!



from xda-developers http://ift.tt/2qq7nCo
via IFTTT

Speaki Reads your Notifications Out Loud using Android’s Text-to-Speech

Looking for an app that reads your notifications out loud? Check out Speaki by XDA Junior Member dEVshr. This free app reads your notifications out loud using Android’s Text-to-Speech capabilities. You can control when notifications are read out loud by restricting which apps to read from, which audio output device your phone is currently connected to, and choose whether or not to read the full notification content. There are some other features we’re glossing over, but check out the thread if you’re interested!



from xda-developers http://ift.tt/2qq7nCo
via IFTTT

Today Weather – The Best Weather App for S8, S8+ and AMOLED Displays

With everyone getting their new Galaxy S8 phones, we wanted to focus on a weather app that works great on AMOLED displays. Today Weather is a newer weather app that we reviewed a while back. This app is free on the Play store and features a dark theme that is perfect for the Galaxy S8's AMOLED screen.

Keep track of multiple cities in one glance from your side panel.

Beautiful images represent the current weather for the day

The simple design of this weather app also packs a huge amount of data in a small space. Using awesome little icon animations and graphs, the app will show you temperature, humidity, UV index, visibility, dew point and pressure.

See detailed information about your weekly forecast and current temperature on your main screen.

A huge amount of data gives you information about wind speed, air quality, the location of the sun/moon, and live radar.

Download Today Weather!

We thank Today Weather for sponsoring this post. Our sponsors help us pay for the many costs associated with running XDA, including server costs, full time developers, news writers, and much more. While you might see sponsored content (which will always be labeled as such) alongside Portal content, the Portal team is in no way responsible for these posts. Sponsored content, advertising and XDA Depot are managed by a separate team entirely. XDA will never compromise its journalistic integrity by accepting money to write favorably about a company, or alter our opinions or views in any way. Our opinion cannot be bought.

 



from xda-developers http://ift.tt/2qip5Zi
via IFTTT

Today Weather – The Best Weather App for S8, S8+ and AMOLED Displays

With everyone getting their new Galaxy S8 phones, we wanted to focus on a weather app that works great on AMOLED displays. Today Weather is a newer weather app that we reviewed a while back. This app is free on the Play store and features a dark theme that is perfect for the Galaxy S8’s AMOLED screen.

Keep track of multiple cities in one glance from your side panel.

Beautiful images represent the current weather for the day

The simple design of this weather app also packs a huge amount of data in a small space. Using awesome little icon animations and graphs, the app will show you temperature, humidity, UV index, visibility, dew point and pressure.

See detailed information about your weekly forecast and current temperature on your main screen.

A huge amount of data gives you information about wind speed, air quality, the location of the sun/moon, and live radar.

Download Today Weather!

We thank Today Weather for sponsoring this post. Our sponsors help us pay for the many costs associated with running XDA, including server costs, full time developers, news writers, and much more. While you might see sponsored content (which will always be labeled as such) alongside Portal content, the Portal team is in no way responsible for these posts. Sponsored content, advertising and XDA Depot are managed by a separate team entirely. XDA will never compromise its journalistic integrity by accepting money to write favorably about a company, or alter our opinions or views in any way. Our opinion cannot be bought.

 



from xda-developers http://ift.tt/2qip5Zi
via IFTTT

vendredi 28 avril 2017

F-Droid’s Android App Finally Gets a UI Makeover

While Android is based off of open source code, the same cannot be said of most of the apps that make the OS worthwhile to use. Most modern day smart functionality of Android is accomplished through closed source, proprietary apps. Considering the amount of data we store in our phones and the permissions we grant to these apps, there is little that can be done to conclusively trust these apps without studying their source codes.

F-Droid serves as an alternative to such scenarios, as it aims to provide Free and Open Source (FOSS) software on the Android platform. Think of it as a Play Store alternative, but with apps that are entirely free and have their up-to-date code up for inspection and even for building directly from the source code.

F-Droid has been around in the Android space since 2010, and the app’s UI has had minimal changes since its initial release. But finally, this changes with the upcoming v0.103 release of the F-Droid client.

The F-Droid team mentions that they have been hard at work bringing a modern UI to F-Droid. The newest update brings with it some long awaited and much appreciated feature additions:

  • Screenshot and feature graphics
  • Bulk download and install
  • Improved notifications for downloads and pending updates
  • Ability to translate apps metadata

F-Droid is conducting further field tests to ensure that usability issues with the new design are identified and resolved before the alpha releases for v0.103 is rolled out to the public. The team is also inviting feedback and suggestions to further improve the client. Additionally, the team mentions that this is one of the many improvements happening to the broader F-Droid ecosystem in 2017, and there’s more to come.

Do you use F-Droid? What do you like about it? Have you considered replacing Google Play and its services with FOSS alternatives? Let us know in the comments below!


Source: F-Droid Blog



from xda-developers http://ift.tt/2qg8lCa
via IFTTT

F-Droid’s Android App Finally Gets a UI Makeover

While Android is based off of open source code, the same cannot be said of most of the apps that make the OS worthwhile to use. Most modern day smart functionality of Android is accomplished through closed source, proprietary apps. Considering the amount of data we store in our phones and the permissions we grant to these apps, there is little that can be done to conclusively trust these apps without studying their source codes.

F-Droid serves as an alternative to such scenarios, as it aims to provide Free and Open Source (FOSS) software on the Android platform. Think of it as a Play Store alternative, but with apps that are entirely free and have their up-to-date code up for inspection and even for building directly from the source code.

F-Droid has been around in the Android space since 2010, and the app's UI has had minimal changes since its initial release. But finally, this changes with the upcoming v0.103 release of the F-Droid client.

The F-Droid team mentions that they have been hard at work bringing a modern UI to F-Droid. The newest update brings with it some long awaited and much appreciated feature additions:

  • Screenshot and feature graphics
  • Bulk download and install
  • Improved notifications for downloads and pending updates
  • Ability to translate apps metadata

F-Droid is conducting further field tests to ensure that usability issues with the new design are identified and resolved before the alpha releases for v0.103 is rolled out to the public. The team is also inviting feedback and suggestions to further improve the client. Additionally, the team mentions that this is one of the many improvements happening to the broader F-Droid ecosystem in 2017, and there's more to come.

Do you use F-Droid? What do you like about it? Have you considered replacing Google Play and its services with FOSS alternatives? Let us know in the comments below!


Source: F-Droid Blog



from xda-developers http://ift.tt/2qg8lCa
via IFTTT