Installation

It is compatible with Python versions 3.10 and above.

Using pip

pip install waybacktweets

Using Poetry

poetry add waybacktweets

From source

Clone the repository:

git clone git@github.com:claromes/waybacktweets.git

Change directory:

cd waybacktweets

Install Poetry, if you haven’t already:

pip install poetry

Install the dependencies:

poetry install

Install the pre-commit:

poetry run pre-commit install

Run the CLI:

poetry run waybacktweets [SUBCOMMANDS]

Run the Streamlit App:

  • Starts a new shell and activates the virtual environment:

    poetry shell
    
  • Run the Streamlit:

    streamlit run app/app.py
    

Build the docs:

cd docs
make clean html

Read the Poetry CLI documentation.