https://github.com/pybites-open-source/eatlocal
This package helps users solve PyBites code challenges on their local machine.
https://github.com/pybites-open-source/eatlocal
hacktoberfest pybites
Last synced: 11 months ago
JSON representation
This package helps users solve PyBites code challenges on their local machine.
- Host: GitHub
- URL: https://github.com/pybites-open-source/eatlocal
- Owner: PyBites-Open-Source
- License: mit
- Created: 2022-01-13T18:27:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-14T10:43:11.000Z (about 1 year ago)
- Last Synced: 2025-04-06T23:15:59.507Z (11 months ago)
- Topics: hacktoberfest, pybites
- Language: Python
- Homepage:
- Size: 4.53 MB
- Stars: 23
- Watchers: 3
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://forthebadge.com)
# eatlocal
Eatlocal helps users solve [Pybites](https://pybitesplatform.com) code challenges locally. This cli tool allows you to download bites from the platform. You can display bite directions directly in the terminal. Once you have solved the bite you can use eatlocal to submit and it offers to open your default browser the corresponding bite page.
## Table of Contents
- [eatlocal](#eatlocal)
- [Updates](#updates)
- [Version](#version-080)
- [Breaking Changes](#breaking-changes)
- [Table of Contents](#table-of-contents)
- [Usage](#usage)
- [Installation](#installation)
- [macOS/Linux](#macoslinux)
- [Windows](#windows)
- [Setup](#setup)
## Updates
eatlocal 1.0.0+ has been updated to work with version 2.0 of the PyBites platform.
### Breaking Changes
#### Version 1.1.1
+ Moved the local bites database to a new location. It used to be in the directory set by the user, now eatlocal will look for it in `~/.eatlocal`. Run `eatlocal init` to set the new location.
#### Version 1.1.0
+ Uses the bite slug for the name of the directory.
#### Version 1.0.0
+ eatlocal version `1.0.0` only works on the new platform (v2).
+ eatlocal directory no longer has to be a git repository.
+ Submitting a bite no longer pushes it to GitHub.
+ Bite directories are now names by the bites instead of the number.
+ No need to download chrome and chrome driver.
+ No more verbose mode
## Setup
Run `eatlocal init` to configure your PyBites username, PyBites password*, and local where you will solve your bites.
*Note: If you signed up for PyBites by authenticating through GitHub or Google, you will need to set a password on the platform first.
## Usage
Set up your email, password, and directory where you will solve your bites. It will also create the local bites database, and the cache database:
```bash
eatlocal init
```
Download bites:
```bash
# Show all bites
eatlocal download
# Show only newbie bites
eatlocal download --level newbie
# Show only intro bites
eatlocal download --level intro
# Show only beginner bites
eatlocal download --level Beginner
# Show only intermediate bites
eatlocal download --level Intermediate
# Show only advanced bites
eatlocal download --level Advanced
```
If you want to force a re-download of a given bite use the `--force` flag. This will overwrite the bite directory.
```bash
eatlocal download --force
```
By default, `eatlocal` will cache the bites list and update it every 30 days. If you are not seeing a new bite, then you can clear the cache with the `--clear-cache` flag.
```bash
eatlocal download --clear-cache
```
Display bites in the terminal:
```bash
# change the theme with -t
eatlocal display
```
Submit bites:
```bash
eatlocal submit
```
## Installation
There are a few options for install eatlocal.
### Using uv
If you have [uv](https://github.com/astral-sh/uv) installed:
```bash
uv tool install eatlocal
```
### Using pipx
If you have [pipx](https://pypa.github.io/pipx/) installed:
```bash
pipx install eatlocal
```
### macOS/Linux
```bash
pip3 install eatlocal
```
### Windows
```bash
pip install eatlocal
```
## Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**, be sure to explore the [contributing guide](CONTRIBUTING.md) for more information..