Skip to content

Commit e62c1c2

Browse files
committed
WS-3151: README/branding updates. Events example string.
1 parent 35bb8bb commit e62c1c2

3 files changed

Lines changed: 9 additions & 15 deletions

File tree

README.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
<a href="https://www.babelstreet.com/rosette"><img src="https://s3.amazonaws.com/styleguide.basistech.com/logos/rosette-logo.png" width="181" height="47" /></a>
2-
3-
---
1+
<a href="https://www.babelstreet.com/rosette"><img src="https://charts.babelstreet.com/icon.png" width="47" height="60"/></a>
2+
# Rosette by Babel Street
43

54
[![PyPI version](https://badge.fury.io/py/rosette-api.svg)](https://badge.fury.io/py/rosette-api)
65
[![Python Versions](https://img.shields.io/pypi/pyversions/rosette-api.svg?color=dark%20green&label=Python%20Versions)](https://img.shields.io/pypi/pyversions/rosette-api.svg?color=dark%20green&label=Python%20Versions)
76

8-
## Rosette API
9-
The Rosette Text Analytics Platform uses natural language processing, statistical modeling, and machine learning to
10-
analyze unstructured and semi-structured text across 364 language-encoding-script combinations, revealing valuable
11-
information and actionable data. Rosette provides endpoints for extracting entities and relationships, translating and
12-
comparing the similarity of names, categorizing and adding linguistic tags to text and more.
7+
Rosette uses natural language processing, statistical modeling, and machine learning to analyze unstructured and semi-structured text across hundreds of language-script combinations, revealing valuable information and actionable data. Rosette provides endpoints for extracting entities and relationships, translating and comparing the similarity of names, categorizing and adding linguistic tags to text and more. Rosette Server is the on-premises installation of Rosette, with access to Rosette's functions as RESTful web service endpoints. This solves cloud security worries and allows customization (models/indexes) as needed for your business.
138

149
## Rosette API Access
1510
- Rosette Cloud [Sign Up](https://developer.rosette.com/signup)
@@ -25,11 +20,10 @@ in the [examples](https://github.com/rosette-api/python/tree/develop/examples) d
2520

2621
#### Documentation & Support
2722
- [Binding API](https://rosette-api.github.io/python/)
28-
- [Rosette Platform API](https://developer.rosette.com/features-and-functions)
23+
- [Rosette Platform API](https://docs.babelstreet.com/API/en/index-en.html)
2924
- [Binding Release Notes](https://github.com/rosette-api/python/wiki/Release-Notes)
30-
- [Rosette Platform Release Notes](https://support.rosette.com/hc/en-us/articles/360018354971-Release-Notes)
31-
- [Binding/Rosette Platform Compatibility](https://developer.rosette.com/features-and-functions?python#)
32-
- [Support](https://support.rosette.com)
25+
- [Rosette Platform Release Notes](https://babelstreet.my.site.com/support/s/article/Rosette-Cloud-Release-Notes)
26+
- [Support](https://babelstreet.my.site.com/support/s/)
3327
- [Binding License: Apache 2.0](https://github.com/rosette-api/python/blob/develop/LICENSE.txt)
3428

3529
## Binding Developer Information

examples/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def run(key, alt_url='https://api.rosette.com/rest/v1/'):
1515
# Create an API instance
1616
api = API(user_key=key, service_url=alt_url)
1717

18-
events_text_data = "I am looking for flights to Super Bowl 2022 in Inglewood, LA."
18+
events_text_data = "Alice has a flight to Budapest. She has not booked a hotel."
1919
params = DocumentParameters()
2020
params["content"] = events_text_data
2121

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
NAME = "rosette_api"
99
DESCRIPTION = "Rosette API Python client SDK"
10-
AUTHOR = "Basis Technology Corp."
11-
AUTHOR_EMAIL = "support@rosette.com"
10+
AUTHOR = "Rosette by Babel Street"
11+
AUTHOR_EMAIL = "helpdesk@babelstreet.com"
1212
HOMEPAGE = "https://github.com/rosette-api/python"
1313
VERSION = rosette.__version__
1414

0 commit comments

Comments
 (0)