Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamidbyte/advent-of-code-2022-python
Advent of Code 2022
https://github.com/hamidbyte/advent-of-code-2022-python
advent-of-code advent-of-code-2022 advent-of-code-2022-python aoc aoc-2022 aoc-2022-in-python aoc2022 aoc2022-in-python aocpython python python3
Last synced: about 1 month ago
JSON representation
Advent of Code 2022
- Host: GitHub
- URL: https://github.com/hamidbyte/advent-of-code-2022-python
- Owner: HamidByte
- Created: 2023-01-19T02:29:56.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T09:26:23.000Z (about 2 years ago)
- Last Synced: 2024-11-09T18:07:07.258Z (3 months ago)
- Topics: advent-of-code, advent-of-code-2022, advent-of-code-2022-python, aoc, aoc-2022, aoc-2022-in-python, aoc2022, aoc2022-in-python, aocpython, python, python3
- Language: Python
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent-of-Code-2022-Python
Python solutions to the `Advent of Code 2022` problems. Check out https://adventofcode.com
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as a speed contest, interview prep, company training, university coursework, practice problems, or to challenge each other.
## Dependencies
> PythonIf you are managing Python packages (libraries) with pip, you can use the configuration file `requirements.txt` to install the specified packages with the specified version.
### Install packages with pip:
> pip install -r requirements.txt### Export current environment configuration file:
> pip freeze > requirements.txtMore information: https://note.nkmk.me/en/python-pip-install-requirements/
### Generate requirements.txt file for any project based on imports
pipreqs automatically generates requirements.txt for any python project. The output file contains all the imports libraries with versions you are using in the installed python or virtual environment.
**Installation**
> pip install pipreqs**Usage**
> pipreqs /home/project/locationMore information: https://github.com/bndr/pipreqs