An open API service indexing awesome lists of open source software.

https://github.com/sleepingkingstudios/python-reference-sheet


https://github.com/sleepingkingstudios/python-reference-sheet

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Python Reference Sheet

A [Flask](https://flask.palletsprojects.com/en/3.0.x/) application.

## Local Development

1. Activate the `venv` Virtual Environment:

```bash
. .venv/bin/activate
```

2. Install the application:

```bash
pip install -e .
```

3. Run the application:

```bash
flask --app anaconda run --port=3000 --debug
```

> @note: The default port 5000 is not recommended on macOS devices due to a
> conflict with Airdrop services.

4. Run the unit tests:

```bash
pytest
```

5. Run the code linter:

```bash
pycodestyle anaconda
```