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.
- Host: GitHub
- URL: https://github.com/arantebw/asteroids
- Owner: arantebw
- Created: 2026-01-09T13:52:45.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-10T14:59:14.000Z (5 months ago)
- Last Synced: 2026-01-11T04:23:00.919Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```