Skip to main content

keep and reuse your thoughts

Project description

Rethink

Unittest License Package version Supported Python versions

English | 简体中文

Rethink is a new understanding of self-developing.

Every time a new thought is recorded, the relevant old thought will automatically emerge, cross-connect, and continuously analogize and upgrade cognition.

The official web version can be found at https://rethink.run.

demo

Let ideas find you rather than you find them

Let people who love to record with no useless thought. Even with a continuous stream of input, you don't need to worry about finding it.

We introduce a recommendation mechanism that allows old records to come back while recording a new thought. Making the new thought more connectable and memorable.

Features

  1. Bi-directional links: To @ link in the note with one click;
  2. Markdown syntax: Seamless support for Markdown syntax;
  3. Automatic association: Automatically recommend related notes while writing, actively assist you in forming a knowledge network.
  4. Local storage: Rethink attaches great importance to data security. You can store data in a local storage. Or the online version https://rethink.run, which makes it easy to synchronize across multiple platforms.
  5. Multi-language: Support multiple languages, including Chinese and English.

Deploy by Docker

  1. Pull the image:
docker pull morvanzhou/rethink
  1. Run the container:

For keeping your data safe, you should mount a local path to the container.

docker run -p 8080:8080 -v /your/data/path:/app/.data morvanzhou/rethink

Then you can visit http://127.0.0.1:8080 in your browser.

If you want to define another host's port, you have to also add an environment variable API_URL:

docker run -e API_URL=http://127.0.0.1:8001 -p 8001:8080 -v /your/data/path:/app/.data morvanzhou/rethink

If you want to set a password for authorization, you have to also add a environment variable APP_PASSWORD:

docker run -e APP_PASSWORD=12345678 -p 8080:8080 -v /your/data/path:/app/.data morvanzhou/rethink

All environment variables:

  • API_URL: the API url in app js code, default is http://127.0.0.1:8080
  • APP_PASSWORD: authorization password, default is None
  • APP_LANGUAGE: language, default is English, optional: zh, en

Use Python and pip to install

The second way to use Rethink is to install it via pip.

First install:

pip install retk

To update:

pip install -U retk

Usage

Quickly start the note web service with retk.run(), and save your note data locally, The default save path is the .data folder under the path of this script:

import retk

retk.run()

If you need to customize settings, you can set the parameters in retk.run():

import retk

retk.run(
   path='.',  # path to store notes, default is current directory
   host="127.0.0.1",  # host ip, default is localhost
   port=8080,  # port number, default is 8080
   language="zh",  # language, default is English, optional: zh, en
   password="12345678",  # authorization password, default is None
   headless=False,  # set True to not auto open browser, default is False
   debug=False,  # set True to print debug info, default is False
)

All notes will be stored in the path specified by path, and the .data folder will be created in your path directory.

English and Chinese languages are supported, and the default is English en. If you want to use Chinese zh, you can use language="zh" parameter.

Open your browser and visit http://127.0.0.1:8080 to start recording your ideas.

Star History

Star History Chart

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

retk-0.2.9.tar.gz (6.0 MB view hashes)

Uploaded Source

Built Distribution

retk-0.2.9-py3-none-any.whl (6.2 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page