Skip to content

Commit

Permalink
beta version release
Browse files Browse the repository at this point in the history
  • Loading branch information
pedropaulofb committed Oct 27, 2023
1 parent b880cad commit b426076
Show file tree
Hide file tree
Showing 89 changed files with 9,753 additions and 11,817 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: LangStrings Python Library
title: LangString Python Library
message: >-
If you use this software, please cite it using the
metadata from this file.
Expand Down
359 changes: 357 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,358 @@
# langstring
[![Project Status - Active](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
![GitHub - Release Date - PublishedAt](https://img.shields.io/github/release-date/pedropaulofb/langstring)
![GitHub - Last Commit - Branch](https://img.shields.io/github/last-commit/pedropaulofb/langstring/main)
![PyPI - Project](https://img.shields.io/pypi/v/langstring)
![Language - Top](https://img.shields.io/github/languages/top/pedropaulofb/langstring)
![Language - Version](https://img.shields.io/pypi/pyversions/langstring)
![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/pedropaulofb/langstring)
![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pedropaulofb/langstring/badge)
![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)
![License - GitHub](https://img.shields.io/github/license/pedropaulofb/langstring)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/OntoUML/langstring/main.svg)](https://results.pre-commit.ci/latest/github/OntoUML/langstring/main)
![Website](https://img.shields.io/website/http/pedropaulofb.github.io/langstring.svg)
![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/pedropaulofb/langstring/code_testing.yml)

Library to manage langStrings in Python
# LangString Python Library

The LangString Python Library offers a powerful and intuitive way to represent strings with associated language metadata. Designed with the intent to simplify language-specific string management, this library encapsulates a string with its language information, allowing for advanced linguistic operations and clear representations.

**📦 PyPI Package:**
The library is conveniently [available as a PyPI package](https://pypi.org/project/langstring/), allowing users to easily import it into other Python projects.

**📚 Documentation:**
For inquiries and further information, please refer to the [comprehensive docstring-generated documentation](https://pedropaulofb.github.io/langstring) available for this project.

## Contents

<!-- TOC -->
* [LangString Python Library](#langstring-python-library)
* [Contents](#contents)
* [LangString Overview](#langstring-overview)
* [Benefits of LangStrings](#benefits-of-langstrings)
* [Practical Use of LangStrings](#practical-use-of-langstrings)
* [LangString Class - Usage Examples](#langstring-class---usage-examples)
* [MultiLangString: Handling Multiple Translations](#multilangstring-handling-multiple-translations)
* [MultiLangString Control Options](#multilangstring-control-options)
* [Available Controls:](#available-controls)
* [Usage Examples for the MultiLangString Class](#usage-examples-for-the-multilangstring-class)
* [Getting Started](#getting-started)
* [Key Classes](#key-classes)
* [Code Testing](#code-testing)
* [How to Contribute](#how-to-contribute)
* [Reporting Issues](#reporting-issues)
* [Code Contributions](#code-contributions)
* [Test Contributions](#test-contributions)
* [General Guidelines](#general-guidelines)
* [License](#license)
* [Author](#author)
<!-- TOC -->

## LangString Overview

**LangString** is a powerful Python library inspired by the RDF's idea of language tagging. It offers a streamlined approach to handle multilingual data in Python.

### Benefits of LangStrings

- **Context**: Knowing the language of a text is crucial for processing and presentation.

- **User Experience**: For apps with global users, displaying data in a user's language improves their experience. LangStrings make this process efficient.

- **Data Consistency**: With LangStrings, multilingual data has a standard format, reducing complexity.

- **Tailored Operations**: Having the language info allows for specialized actions, especially in fields like NLP.

### Practical Use of LangStrings

Consider the value of LangStrings in real-world scenarios:

- **Greeting Users**:

```python
# English vs Japanese greeting
greeting_en = LangString(text="Hello", lang="en")
greeting_ja = LangString(text="こんにちは", lang="ja")

print(greeting_en.to_string()) # "Hello"@en
print(greeting_ja.to_string()) # "こんにちは"@ja
```

- **Multilingual Product Names**:

```python
# Eiffel Tower in English and French
eiffel_en = LangString(text="Eiffel Tower", lang="en")
eiffel_fr = LangString(text="Tour Eiffel", lang="fr")

print(eiffel_en.to_string()) # "Eiffel Tower"@en
print(eiffel_fr.to_string()) # "Tour Eiffel"@fr
```

### LangString Class - Usage Examples

The `LangString` class in the `langstring_lib` module encapsulates a string with its associated language information.

1. Initialization
```python
# Create a LangString object with only text
simple_string = LangString("Hello, world!")

# Create a LangString object with text and language information
english_greeting = LangString("Hello, world!", "en")
```

If an invalid language tag is used or non-string type is provided, appropriate warnings and errors will be raised:

```python
# This will log a warning because 'invalid-lang' is not a valid language tag
invalid_lang = LangString("Hello, world!", "invalid-lang")

# This will raise a TypeError since the text is not a string
invalid_text_type = LangString(12345)
```

2. Converting the LangString Object to String

The `LangString` class provides two methods to convert the object into its string representation, `to_string()` and `__str__()`:

```python
english_greeting = LangString("Hello, world!", "en")

# Using the to_string() method
print(english_greeting.to_string()) # Outputs: "Hello, world!"@en

# Using the __str__() method (which is implicitly called when using Python's built-in str() function)
print(str(english_greeting)) # Outputs: "Hello, world!"@en
```

The string representation will include the text encapsulated in double quotes. If a language is associated with the text, it will be appended after the text, preceded by an "@" symbol.


## MultiLangString: Handling Multiple Translations

While `LangString` manages one string-language pair, `MultiLangString` holds several translations of a string. This is useful for keeping various translations of a term within one object.

For instance, if you have a product with multiple language names:

```python
from langstring_lib import MultiLangString

product_names = MultiLangString({
"en": "Smartphone",
"fr": "Smartphone",
"es": "Teléfono inteligente",
"de": "Smartphone"
})

print(product_names.get_lang("es")) # Teléfono inteligente
```

### MultiLangString Control Options

`MultiLangString` provides granular controls for handling situations where there are multiple entries with the same language tag. This behavior is defined by the `MULTIPLE_ENTRIES_CONTROLS` configuration.

#### Available Controls:

1. **`ALLOW`**:
- **Description**: Permits multiple entries with the same language tag. However, it ensures that no duplicate texts for the same language tag are added.
- **Usage**: Beneficial in situations where multiple translations or interpretations of a term in the same language are valid.

2. **`OVERWRITE`**:
- **Description**: If an entry with the same language tag already exists, this control will overwrite the existing entry with the new value.
- **Usage**: Useful in scenarios where you want to ensure that there's only one entry per language and are okay with updating existing values.

3. **`BLOCK_WARN`**:
- **Description**: Blocks the addition of a `LangString` if a matching language tag already exists and logs a warning.
- **Usage**: Recommended for cases where you want to prevent duplicate entries but only want a log warning instead of a halt in operations.

4. **`BLOCK_ERROR`**:
- **Description**: Blocks the addition of a `LangString` if a matching language tag is present and raises an error.
- **Usage**: Useful when ensuring data integrity is paramount, and you want to halt the operation if a duplicate entry is encountered.

When setting the `control` property of a `MultiLangString` instance, it is essential to provide a valid control strategy. If an invalid strategy is supplied, the system will raise a `ValueError` highlighting the acceptable control values.

To utilize these controls, configure the desired behavior when initializing the `MultiLangString` object or updating its entries.

### Usage Examples for the MultiLangString Class

1. Initialization

You can initialize a `MultiLangString` object by passing in multiple `LangString` objects and specifying control and preferred language properties:

```python
from langstring_lib.langstring import LangString
from your_module import MultiLangString

lang_str1 = LangString("Hello", "en")
lang_str2 = LangString("Bonjour", "fr")

# Initializing MultiLangString with two LangString objects
multi_lang_str = MultiLangString(lang_str1, lang_str2, control="ALLOW", preferred_lang="en")
```

2. Add Method

Use the `add` method to add a new `LangString` object to the `MultiLangString`:

```python
lang_str3 = LangString("Hola", "es")
multi_lang_str.add(lang_str3)
```

3. Getting a Specific Language String

To retrieve a language string for a specific language:

```python
english_strings = multi_lang_str.get_langstring("en") # Returns list of English strings
```

4. Getting the Preferred Language String

Retrieve the language string for the preferred language:

```python
preferred_string = multi_lang_str.get_pref_langstring() # Returns the string for the preferred language
```

5. Removing a Specific LangString

Remove a specific `LangString` object from the `MultiLangString`:

```python
multi_lang_str.remove_langstring(lang_str3) # Removes the Spanish string
```

6. Removing All Strings for a Specific Language

Remove all `LangString` objects associated with a specific language:

```python
multi_lang_str.remove_language("es") # Removes all Spanish strings
```

7. Converting to String

You can convert a `MultiLangString` object to a string representation:
```python
str_representation = multi_lang_str.to_string()
print(str_representation) # Outputs: '"Hello"@en, "Bonjour"@fr'
```

8. Converting to List of Strings

Convert the `MultiLangString` to a list of strings:

```python
list_representation = multi_lang_str.to_string_list()
print(list_representation) # Outputs: ['"Hello"@en', '"Bonjour"@fr']
```

9. Getting the Length

Determine the number of `LangString` objects in a `MultiLangString`:

```python
length = len(multi_lang_str) # Outputs: 2
```

10. String Representation
11.
Get a string representation of the `MultiLangString`:

```python
print(str(multi_lang_str)) # Outputs: '"Hello"@en, "Bonjour"@fr'
```

11. Representation Method

Get a formal string representation of the `MultiLangString` suitable for debugging:

```python
print(repr(multi_lang_str))
```

This is useful for understanding the current state of a `MultiLangString` object.

Remember, the `MultiLangString` class is designed to handle multiple language strings, allowing you to manage multilingual text strings effectively and efficiently.





## Getting Started

Install with:

```bash
pip install langstring
```

Then, encapsulate strings with their language tags as shown in the examples above.

### Key Classes

- **`LangString`**: Holds a single string with its language.

```python
from langstring_lib import LangString

ls = LangString(text="Hello", lang="en")
```

- **`MultiLangString`**: Contains multiple translations of a string.

```python
from langstring_lib import MultiLangString

mls = MultiLangString({
"en": "Hello",
"fr": "Bonjour"
})
```

## Code Testing

The code provided has undergone rigorous testing to ensure its reliability and correctness. The tests can be found in the 'tests' directory of the project. To run the tests, navigate to the project root directory and execute the following command:

```bash
langstring> pytest .\langstring_lib\tests
```

## How to Contribute

### Reporting Issues

- If you encounter a bug or wish to suggest a feature, please [open a new issue](https://github.com/pedropaulofb/langstring/issues/new).
- If you notice any discrepancies in the documentation created with the aid of AI, feel free to [report them by opening an issue](https://github.com/pedropaulofb/langstring/issues/new).

### Code Contributions

1. Fork the project repository and create a new feature branch for your work: `git checkout -b feature/YourFeatureName`.
2. Make and commit your changes with descriptive commit messages.
3. Push your work back up to your fork: `git push origin feature/YourFeatureName`.
4. Submit a pull request to propose merging your feature branch into the main project repository.

### Test Contributions

- Enhance the project's reliability by adding new tests or improving existing ones.

### General Guidelines

- Ensure your code follows our coding standards.
- Update the documentation as necessary.
- Make sure your contributions do not introduce new issues.

We appreciate your time and expertise in contributing to this project!

## License

This project is licensed under the Apache License 2.0. See the [LICENSE](https://github.com/pedropaulofb/langstring/blob/main/LICENSE) file for details.

## Author

This project is an initiative of the [Semantics, Cybersecurity & Services (SCS) Group](https://www.utwente.nl/en/eemcs/scs/) at the [University of Twente](https://www.utwente.nl/), The Netherlands. The main developer is:

- Pedro Paulo Favato Barcelos [[GitHub](https://github.com/pedropaulofb)] [[LinkedIn](https://www.linkedin.com/in/pedro-paulo-favato-barcelos/)]

Feel free to reach out using the provided links. For inquiries, contributions, or to report any issues, you can [open a new issue](https://github.com/pedropaulofb/langstring/issues/new) on this repository.
2 changes: 1 addition & 1 deletion docs/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 5beaa6025760315801eb1710b7a5cf8c
config: 838de2afe701ac39b3ccf3a86c451109
tags: 645f666f9bcd5a90fca523b33c5a78b7
2 changes: 1 addition & 1 deletion docs/_sources/autoapi/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ This page contains auto-generated API reference documentation [#f1]_.
.. toctree::
:titlesonly:

/autoapi/langstring/index
/autoapi/langstring_lib/index

.. [#f1] Created with `sphinx-autoapi <https://github.com/readthedocs/sphinx-autoapi>`_
Loading

0 comments on commit b426076

Please sign in to comment.