Installation

It is compatible with Python versions 3.10 and above.

Using pipx

pipx install waybacktweets

Using pip

pip3 install waybacktweets

Using Poetry

poetry add waybacktweets

From source

Clone the repository:

git clone [email protected]:claromes/waybacktweets.git

Change directory:

cd waybacktweets

Install Poetry, if you haven’t already:

pip3 install poetry

Install the dependencies:

poetry install

Install the pre-commit:

poetry run pre-commit install

Run the CLI:

poetry run waybacktweets [OPTIONS] USERNAME

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