https://github.com/bmlt-enabled/fetch-meditation-py
Python library for reading and parsing daily meditations
https://github.com/bmlt-enabled/fetch-meditation-py
Last synced: 4 days ago
JSON representation
Python library for reading and parsing daily meditations
- Host: GitHub
- URL: https://github.com/bmlt-enabled/fetch-meditation-py
- Owner: bmlt-enabled
- Created: 2023-11-06T03:23:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-05T02:53:01.000Z (about 1 year ago)
- Last Synced: 2025-06-05T06:11:20.961Z (about 1 year ago)
- Language: Python
- Homepage: https://bmlt-enabled.github.io/fetch-meditation-py/
- Size: 101 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Fetch Meditation Py
* Python library for reading and parsing daily meditations
### Basic Usage
```py
from fetch_meditation.jft_language import JftLanguage
from fetch_meditation.jft_settings import JftSettings
from fetch_meditation.jft import Jft
settings = JftSettings(JftLanguage.Russian)
jft_instance = Jft.get_instance(settings)
jft_entry = jft_instance.fetch()
print(jft_entry.quote)
```