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

https://github.com/ggrbill/python-examples

Examples of using Python libraries
https://github.com/ggrbill/python-examples

conda-environment hacktoberfest python python-libraries

Last synced: 4 months ago
JSON representation

Examples of using Python libraries

Awesome Lists containing this project

README

          

# Python Examples

Examples of using Python libraries.

## Setup and activate the environment

This project is based in a `conda` environment using `conda-devenv` tool. For `miniconda` package installation follow the instructions [here](https://conda.io/miniconda.html) and for `conda-devenv` installation instructions click [here](https://conda-devenv.readthedocs.io/en/latest/installation.html).

To create and activate the conda environment called `PyExamples` execute the following commands into project root folder:

```shell
$ conda devenv
$ conda activate PyExamples
```

## Running examples

To run the Python examples you must be in the `src` folder, for that execute the following commands:

```shell
$ cd src
$ python {example_filename}.py
```