{"id":19990905,"url":"https://github.com/OrbintSoft/yauaa.netstandard","last_synced_at":"2025-05-04T10:30:54.388Z","repository":{"id":54780441,"uuid":"142356314","full_name":"OrbintSoft/yauaa.netstandard","owner":"OrbintSoft","description":"Yet Another UserAgent Analyzer  .NET Standard Porting","archived":false,"fork":false,"pushed_at":"2022-12-08T09:00:39.000Z","size":11346,"stargazers_count":24,"open_issues_count":4,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-11-13T04:52:49.283Z","etag":null,"topics":["analyzer","browser","csharp","dectect","detection","dotnet","dotnet-core","dotnet-standard","parse","parser","ua","user-agent","user-agent-parser","user-agent-parsing"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OrbintSoft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-25T21:34:21.000Z","updated_at":"2024-01-19T07:58:28.000Z","dependencies_parsed_at":"2023-01-25T00:45:29.530Z","dependency_job_id":null,"html_url":"https://github.com/OrbintSoft/yauaa.netstandard","commit_stats":null,"previous_names":[],"tags_count":80,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OrbintSoft%2Fyauaa.netstandard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OrbintSoft%2Fyauaa.netstandard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OrbintSoft%2Fyauaa.netstandard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OrbintSoft%2Fyauaa.netstandard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OrbintSoft","download_url":"https://codeload.github.com/OrbintSoft/yauaa.netstandard/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252320001,"owners_count":21729055,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analyzer","browser","csharp","dectect","detection","dotnet","dotnet-core","dotnet-standard","parse","parser","ua","user-agent","user-agent-parser","user-agent-parsing"],"created_at":"2024-11-13T04:51:31.722Z","updated_at":"2025-05-04T10:30:50.435Z","avatar_url":"https://github.com/OrbintSoft.png","language":"C#","funding_links":["https://www.paypal.me/orbintsoft","https://www.paypal.me/nielsbasjes"],"categories":["C\\#"],"sub_categories":[],"readme":"# Yauaa: Yet Another User Agent Analyzer\n\n[![Build Status](https://dev.azure.com/orbintsoft/yauaa.netstandard/_apis/build/status/Windows?branchName=master)](https://dev.azure.com/orbintsoft/yauaa.netstandard/_build/latest?definitionId=4\u0026branchName=master)\n[![NuGet](https://img.shields.io/nuget/v/Orbintsoft.Yauaa.NetStandard.svg)](https://www.nuget.org/packages/Orbintsoft.Yauaa.NetStandard/)\n[![License](https://img.shields.io/:license-apache-purple.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)\n[![Donations via PayPal](https://img.shields.io/badge/Donations-via%20Paypal-orange.svg)](https://www.paypal.me/orbintsoft) \n\nThis is a .NET porting of Java library that tries to parse and analyze the useragent string and extract as many relevant attributes as possible.\n\nYou can see the original project at this link: https://github.com/nielsbasjes/yauaa\n\nThe library has been completely rewritten in C# from scratch to be optimized and .NET friendly \n\nA bit more background about this useragent parser can be found in this blog which the author Niels Basjes wrote about it: [https://techlab.bol.com/making-sense-user-agent-string/](https://partnerprogramma.bol.com/click/click?p=1\u0026t=url\u0026s=2171\u0026f=TXL\u0026url=https%3A%2F%2Ftechlab.bol.com%2Fmaking-sense-user-agent-string%2F\u0026name=yauaa)\n\nThe Java documentation can be found here https://yauaa.basjes.nl, soon will be provided a .NET documentation specific for this project\n\nYou can download the .nuget package there: https://www.nuget.org/packages/OrbintSoft.Yauaa.NetStandard\n\n## Example output\n\nAs an example the useragent of a phone:\n\n    Mozilla/5.0 (Linux; Android 7.0; Nexus 6 Build/NBD90Z) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36\n\nis converted into this set of fields:\n\n| Field name | Value |\n| --- | --- |\n|  **Device**Class                      | 'Phone'                |\n|  **Device**Name                       | 'Google Nexus 6'       |\n|  **Device**Brand                      | 'Google'               |\n|  **OperatingSystem**Class             | 'Mobile'               |\n|  **OperatingSystem**Name              | 'Android'              |\n|  **OperatingSystem**Version           | '7.0'                  |\n|  **OperatingSystem**NameVersion       | 'Android 7.0'          |\n|  **OperatingSystem**VersionBuild      | 'NBD90Z'               |\n|  **LayoutEngine**Class                | 'Browser'              |\n|  **LayoutEngine**Name                 | 'Blink'                |\n|  **LayoutEngine**Version              | '53.0'                 |\n|  **LayoutEngine**VersionMajor         | '53'                   |\n|  **LayoutEngine**NameVersion          | 'Blink 53.0'           |\n|  **LayoutEngine**NameVersionMajor     | 'Blink 53'             |\n|  **Agent**Class                       | 'Browser'              |\n|  **Agent**Name                        | 'Chrome'               |\n|  **Agent**Version                     | '53.0.2785.124'        |\n|  **Agent**VersionMajor                | '53'                   |\n|  **Agent**NameVersion                 | 'Chrome 53.0.2785.124' |\n|  **Agent**NameVersionMajor            | 'Chrome 53'            |\n\n## Try it!\n\nYou can try it online with an ASP.NET demo at this link: https://orbintsoft.net/Yauaa/Demo\n\nOr you can download the .nuget package to it try by yourself:  https://www.nuget.org/packages/OrbintSoft.Yauaa.NetStandard\n\nHere you can also find a sample implementation project: https://github.com/OrbintSoft/yauaa.netstandard/tree/master/src/OrbintSoft.Yauaa.WebSample.AspNetCore\n\n## Contribute\n\nIf you like this project or if has business value for you then don't hesitate to support me or the author.\n\nTo support the original project you can make a small donation to:\n[![Donations via PayPal](https://img.shields.io/badge/Donations-via%20Paypal-blue.svg)](https://www.paypal.me/nielsbasjes) **Niels Basjes, Original Author**\n\nTo support this porting, don't esitate to contribute to code sending a Pull request or with reporting issues\n\nFollow here the contrubution guidlines: [CONTRIBUTING.md](https://github.com/OrbintSoft/yauaa.netstandard/blob/master/CONTRIBUTING.md)\n\nOtherwise a small paypal donation can also be apreciated\n[![Donations via PayPal](https://img.shields.io/badge/Donations-via%20Paypal-blue.svg)](https://www.paypal.me/orbintsoft) **Stefano Balzarotti, Author of porting**\n\nDon't forget to be thankful to the original author Nicolaas Basjes, because he did most of the effort.\n\n## License\n\n    Yet Another UserAgent Analyzer for .NET Standard\n  \tPorting realized by Balzarotti Stefano, Copyright (C) OrbintSoft\n  \n  \tOriginal Author and License:\n \n\tYet Another UserAgent Analyzer\n\tCopyright (C) 2013-2019 Niels Basjes\n \n\tLicensed under the Apache License, Version 2.0 (the \"License\");\n\tyou may not use this file except in compliance with the License.\n\tYou may obtain a copy of the License at\n \n\thttps://www.apache.org/licenses/LICENSE-2.0\n \n\tUnless required by applicable law or agreed to in writing, software\n\tdistributed under the License is distributed on an \"AS IS\" BASIS,\n\tWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\tSee the License for the specific language governing permissions and\n\tlimitations under the License.\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOrbintSoft%2Fyauaa.netstandard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOrbintSoft%2Fyauaa.netstandard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOrbintSoft%2Fyauaa.netstandard/lists"}