Metadata-Version: 2.1
Name: ru-accent-poet
Version: 0.1.5
Summary: A package for putting stress marks in russian poetic texts
Home-page: https://github.com/yuliya1324/ru_accent
Author: Julia Korotkova
Author-email: koylenka15@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.21.0)
Requires-Dist: russtress

# ru_accent_poet

This is a tool for putting stress marks in russian poetic texts 

### Installation
```
pip install ru-accent-poet
```
### Usage example

To put stress marks in text
```
>>> from ru_accent_poet import accent_line
>>> accent_line('Это инструмент для разметки ударений')
Э'то инструме'нт для разме'тки ударе'ний
```

To put stress marks in files
```
>>> ru_accent_poet.write_file(['my_file_1.txt'])
```

This will return new file called 
"my_file.accented.txt" with the same text 
where stress marks are put

