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

https://github.com/arantebw/asteroids

Boot.dev: My second guided project.
https://github.com/arantebw/asteroids

Last synced: 2 months ago
JSON representation

Boot.dev: My second guided project.

Awesome Lists containing this project

README

          

# asteroids

## Here's how to use `uv` run

Run Python scripts:

```
uv run python main.py
uv run python -c "print('hello')"
```

Start a Python REPL:

```
uv run python
```

Install packages:

```
uv add # Adds to pyproject.toml and installs
uv remove # Removes from pyproject.toml
```

Run installed CLI tools:

```
uv run
```

Example:

```
uv run pytest
```

Run one-off commands with packages (without installing):

```
uv run --with python -c "import "
```

Example:

```
uv run --with requests python script.py
```