Metadata-Version: 2.1
Name: ru-accent-poetic-text
Version: 0.0.1
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)

# 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 ru_accent
>>> ru_accent.accent_line('Р­С‚Рѕ РёРЅСЃС‚СЂСѓРјРµРЅС‚ РґР»СЏ СЂР°Р·РјРµС‚РєРё СѓРґР°СЂРµРЅРёР№')
Р­'С‚Рѕ РёРЅСЃС‚СЂСѓРјРµ'РЅС‚ РґР»СЏ СЂР°Р·РјРµ'С‚РєРё СѓРґР°СЂРµ'РЅРёР№
```

To put stress marks in files
```
>>> ru_accent.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


