PTI.Microservices.Library.AzureComputerVision
2.0.0-preview
See the version list below for details.
dotnet add package PTI.Microservices.Library.AzureComputerVision --version 2.0.0-preview
NuGet\Install-Package PTI.Microservices.Library.AzureComputerVision -Version 2.0.0-preview
<PackageReference Include="PTI.Microservices.Library.AzureComputerVision" Version="2.0.0-preview" />
paket add PTI.Microservices.Library.AzureComputerVision --version 2.0.0-preview
#r "nuget: PTI.Microservices.Library.AzureComputerVision, 2.0.0-preview"
// Install PTI.Microservices.Library.AzureComputerVision as a Cake Addin #addin nuget:?package=PTI.Microservices.Library.AzureComputerVision&version=2.0.0-preview&prerelease // Install PTI.Microservices.Library.AzureComputerVision as a Cake Tool #tool nuget:?package=PTI.Microservices.Library.AzureComputerVision&version=2.0.0-preview&prerelease
PTI.Microservices.Library
Documentation for our NuGet Package "PTI.Microservices.Library"
The purpose of this package is to help developers create solutions faster by integrating several Cloud Services in one package, and enforcing Logging and Exception Handling, while still allowing the developers to have the control over the configuration. The package is designed to be consumed from microservices, so most items are async and do as little as possible, unless you configure it to do more, for example, in the case of Twitter Services, they support retry configuration, and have out of the box support for waiting for Twitter API Rate Limit, thanks for the great work done by Joe Mayo (https://github.com/JoeMayo) with his LinqToTwitter library. The TwitterFakeFollowersService currently supports communicating back to the consumer by using Action delegates, and the future version of it will support using SignalR. "PTI.Microservices.Library" is currently running under .NET 5.
The library is designed so that you can use your own Azure Resources, by setting your own configuration.
Install The Following Packages.
- PTI.Microservices.Library https://www.nuget.org/packages/PTI.Microservices.Library/
- PTI.Microservices.Library.Models https://www.nuget.org/packages/PTI.Microservices.Library.Models
How To Use The Package
- Set your RapidApiKey.
- Register Services (or manually create services instances)
About the Configuration Classes
The services configuration classes have an endpoint property, in the case of Azure services, those will usually be the Url for your created resource in Azure, or the base azure service api. In the case of the specialized services such as Customer Finder, Emotions Analyzer, Books Translation and similar, the property is prefilled with the Rapid API base service, if you use appSettings-based configuration the default value will be overwritten to respect developer-based configuration, this means you will need to set the correct service Url when using appSettings-based configuration.
Quick Samples
Setting your key
//The given key is for demo purposes and will stop working eventually.
//To get your own key request it by writing to services@pticostarica.com
GlobalPackageConfiguration.RapidApiKey = "a3893edcbfmsh2efa1861dcc7a10p159864jsnf17e667d1bf7";
Register your services
services.AddSingleton(twitterConfiguration);
services.AddLogging();
services.AddTransient<ILogger, Logger<TwitterPossibleFakeAccount>>();
services.AddTransient<CustomHttpClientHandler>();
services.AddTransient<CustomHttpClient>();
services.AddTransient<TwitterService>();
services.AddTransient<TwitterPossibleFakeAccountService>();
Sample 1 - Upload Images with tags to Azure Custom Vision
[HttpPost("[action]")]
public async Task<IActionResult> UploadImages([FromBody]UploadImagesModel model)
{
Guid projectId = Guid.Parse(model.ProjectId);
List<Uri> lstImages = model.Items.Where(p=>p.IsSelected==true).Select(p => new Uri(p.ImageUrl)).ToList();
var uploadImagesResult = await AzureCustomVisionService.UploadImagesAsync(lstImages, projectId);
List<string> tags = new List<string>() { model.Tag };
foreach (var singleImage in uploadImagesResult)
{
try
{
await this.AzureCustomVisionService.CreateImageTagsAsync(projectId,
singleImage.Image.Id,
tags);
await Task.Delay(TimeSpan.FromSeconds(1));
}
catch (Exception ex)
{
this.Logger.LogError(ex, ex.Message);
}
}
return Ok();
}
Sample 2 - Detect Possible Twitter Fake Followers
await twitterFakeFollowersService.GetAllPossibleFakeFollowersForUsernameAsync(this.TwitterConfiguration.ScreenName,
(possibleFakeUser) =>
{
//Your custom logic to execute when a new possible twitter fake user has been detected
}, cancellationToken: cancellationTokenSource.Token);
Sample 3 - Detect current weather and hear it on Default Speakers
AudibleWeatherService audibleWeatherService = new AudibleWeatherService(logger, azureMapsService, azureSpeechService);
await audibleWeatherService.SpeakCurrentWeatherAsync(geoCoordinates);
Sample 4 - Translate a DOCX file to anothere language
var result = await booksTranslationService.TranslateDocXFileFromUrlAsync(fileUrl, TranslationLanguage.English, TranslationLanguage.Spanish,
BookTranslationMode.KeepFormatting, emailAddress:"youremail@yourdomain.xyz");
Sample 5 - Get All Keywords Found in an Azure Media Services Video Indexer Account
var allKeywords = await azureVideoIndexerService.GetAllKeywordsAsync(onNewKeywordFound:(keyword)=>
{
//Your custom code to execute when a keyword has been processed.Added so that you do not have to wait for the whole process to finish
});
Sample 6 - Detects Sentiment and Personality information based on text in a spreadsheet
var result =
await emotionsAnalyzerService.AnalyzeFileFromUrlAsync(fileUrl,
model: new Microservices.Library.Models.EmotionsAnalyzer.AnalyzeFileModel()
{
SourceFileUrl=fileUrl,
EmailForResults="youremail@yourdomain.xyz",
AnalysisWorksheet =
new Microservices.Library.Models.EmotionsAnalyzer.AnalysisWorksheet()
{
ColumnToAnalyze="PostText",
ColumnWithDate="RecordDate",
ColumnWithUniqueId="RecordUniqueId",
SentimentPlaceholderColumn="SentimentAnalysisPlaceHolder",
WorksheetName="FacebookPosts"
},
PlaceWorksheet=new Microservices.Library.Models.EmotionsAnalyzer.PlaceWorksheet()
{
SentimentPlaceholderColumn="PlaceSentimentPlaceHolder",
WorksheetName="PlaceSentiment"
}
});
Sample 7 - Detect the topics found in a specified Twitter Username
TwitterDataAnalysisService twitterDataAnalysisService = new TwitterDataAnalysisService(
logger, twitterService, azureTextAnalyticsService);
var twitterUserTopics = await twitterDataAnalysisService.GetTopicsForUserAsync("twitterusername");
More samples at https://github.com/efonsecab/PTI.Microservices.Library/blob/master/README.md
The following are sample applications of things you could do with the package
- Search Images on Bing and feed your Custom Vision Models: https://github.com/efonsecab/BlazorCustomVisionUploader
- Search Images on Bing and feed your Azure Video Indexer Person Models: https://github.com/efonsecab/BlazorVideoIndexerUploader
For inquiries, and business deals, you can write an email to services@pticostarica.com
Roadmap
October 2020
- Integrate Custom Finder APIs into the package. You can check our public APIs here:https://rapidapi.com/organization/pti-costa-rica
November 2020
- Add Support for Azure Cognitive Search
- Integrate PTI Emotions Analyzer APIs into the package.
December 2020
- Add support for gRPC
- Integrate PTI Books Translator APIs into the package
- Enable package monthly payment using Paypal-based subscriptions.
January 2021
- Create a .NET 5 based version of the package
- Add support for SignalR to TwitterFakeFollowersService (only for .NET 5)
- Integrate PTI's SitemapScanner into the main package (.NET 3.1 version)
Feature Requests
If there is any functionality you would like to see included in the package, write an email with the subject "Feature Request" to services@pticostarica.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net5.0
- PTI.Microservices.Library.Core (>= 2.0.0-preview)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on PTI.Microservices.Library.AzureComputerVision:
Package | Downloads |
---|---|
PTI.Microservices.Library.AudibleTwitter
Cloud Services library designed to be consumed in Microservices |
|
PTI.Microservices.Library.AudibleComputerVision
Cloud Services library designed to be consumed in Microservices |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.0.0.3 | 388 | 11/13/2022 |
7.0.0.2 | 334 | 11/12/2022 |
7.0.0.1 | 335 | 11/12/2022 |
7.0.0 | 455 | 11/12/2022 |
6.0.0-preview | 244 | 5/17/2022 |
2.0.0-preview | 259 | 7/9/2021 |