https://github.com/azrubael/250604-quotes-report
The tutorial repository with scripts to get graphs
https://github.com/azrubael/250604-quotes-report
Last synced: 8 months ago
JSON representation
The tutorial repository with scripts to get graphs
- Host: GitHub
- URL: https://github.com/azrubael/250604-quotes-report
- Owner: Azrubael
- Created: 2025-06-04T04:07:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-04T07:40:46.000Z (about 1 year ago)
- Last Synced: 2025-06-04T12:04:10.172Z (about 1 year ago)
- Language: Python
- Size: 252 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
The project with scripts to automatically generate cryptocurrency quote graphs and so on.
**The suggested order of virtual environment preparation.**
[1] - Install Python 3.10 (or later), pip и python3.10-venv
* https://docs.python.org/3/using/windows.html#launcher
* https://pip.pypa.io/en/stable/installing/
```bash
apt install python3.10-venv
```
[2] - Create isolated invironment
* For Linux
```bash
$ python3 -m venv crypto_env
$ source crypto_env/bin/activate
```
* For Windows
```bash
$ py -m venv crypto_wenv
$ .\crypto_wenv\Scripts\activate
```
[3] - Activate virtual environment:
```bash
$ source crypto_env/bin/activate
```
[4] - Restore dependencies:
```bash
(crypto_env)$ pip install -r dependencies.txt
```
[5] - Start local dev server:
```bash
(crypto_env)$ python ./mysite/manage.py runserver
```
[6] - Create list of dependencies
```bash
(crypto_env)$ pip freeze > dependencies.txt
```
[7] - To deactivate isolated environment
```bash
(crypto_env)$ deactivate
```