Skip to content

Commit

Permalink
docs: updated markdown for example code in README
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainGod2 committed Apr 15, 2024
1 parent 761a3d5 commit 0149f71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ To set up the Chaturbate Poller, follow these steps:
3. Install the Python package:

```bash
pip install chaturbate-poller
$ pip install chaturbate-poller
```

3. Set up your environment variables by creating a `.env` file in the root directory with the following content:

```
```bash
CB_USERNAME=your_chaturbate_username
CB_TOKEN=your_api_token
```
Expand Down Expand Up @@ -75,15 +75,15 @@ See `examples/` for more detailed usage instructions, including usage regarding
For development purposes, especially to run tests or develop additional features, consider setting up a virtual environment and installing the development dependencies:

```bash
python -m venv .venv
source .venv/bin/activate # On Windows, use `.venv\Scripts\Activate`
pip install -r requirements-dev.txt
$ python -m venv .venv
$ source .venv/bin/activate # On Windows, use `.venv\Scripts\Activate`
$ pip install -r requirements-dev.txt
```

To run tests:

```bash
pytest
$ pytest
```

## Contributing
Expand Down

0 comments on commit 0149f71

Please sign in to comment.