journalyze 0.1.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

journalyze 0.1.1

Journalyze
A Python library to facilitate the journinaling experience.







Overview
Journalyze:

Fetches journaling prompts

Installation
pip install --upgrade journalyze

How to Use
from journalyze import *

# Randomly select and return a prompt from the list of prompts in csv file
get_prompt()

# Randomly select and return an easy/short prompt
get_prompt_easy()

# Randomly select a given number of prompts and return
get_prompt_num()

# Adds a new given prompt to the list of prompts in csv file
add_prompt()

# Removes a given prompt from the list of prompts in csv file
remove_prompt()

# Searches the list of prompts for a keyword and returns a list of prompts that contain the keyword.
search_prompt()

Example
Running the following code
import journalyze as dp

dp = DailyPrompt('journalyze/prompts.csv')
prompt = dp.get_prompt()
print(prompt)

Outputs something like this to the console
Describe yourself using the first 10 words that come to mind. Then list 10 words that you’d like to use to describe yourself. List a few ways to transform those descriptions into reality.

Details
This project is a pure python project using modern tooling. It uses a Makefile as a command registry, with the following commands:

make: list available commands
make develop: install and build this library and its dependencies using pip
make build: build the library using setuptools
make lint: perform static analysis of this library with flake8 and black
make format: autoformat this library using black
make annotate: run type checking using mypy
make test: run automated tests with pytest
make coverage: run automated tests with pytest and collect coverage information
make dist: package library for distribution

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.