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

https://github.com/nvbn/example-for-importing-different-packages-depending-on-python-version

Example for https://nvbn.github.io/2017/05/31/import-different/
https://github.com/nvbn/example-for-importing-different-packages-depending-on-python-version

Last synced: 6 months ago
JSON representation

Example for https://nvbn.github.io/2017/05/31/import-different/

Awesome Lists containing this project

README

          

# Example for https://nvbn.github.io/2017/05/31/import-different/

Example for Python 2.7 and 3.5.

Usage:
```python
➜ python main.py
hello from 2.7
➜ python3 main.py
hello from 3.5
```