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

https://github.com/isur/python-algorithms

Some basic algorithms and structures in python.
https://github.com/isur/python-algorithms

Last synced: about 1 year ago
JSON representation

Some basic algorithms and structures in python.

Awesome Lists containing this project

README

          

# Create virtual environment
Linux: `python3 -m venv venv`

Windows: `py -m venv venv`
# Activate virtual environment
Linux: `source ./venv/bin/activate`

Windows: `.\venv\Scripts\activate`

# Install packages
`pip install -r requirements.txt`

# Save packages
`pip freeze > requirements.txt`