Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Евгений authored and Евгений committed May 3, 2023
1 parent fe9d2ce commit 88d78a4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
[![PyPI version](https://badge.fury.io/py/instld.svg)](https://badge.fury.io/py/instld)

Thanks to this package, it is very easy to manage the lifecycle of packages directly from the code. In runtime.
 
: ⚡ You can use 2 different versions of the same library in the same program.
: ⚡ You can use incompatible libraries in the same project, as well as libraries with incompatible/conflicting dependencies.
: ⚡ It's easy to share written scripts. The script file becomes self-sufficient - the user does not need to install the necessary libraries.
: ⚡ The library does not leave behind "garbage". After the end of the program, no additional files remain in the system.

- ⚡ You can use 2 different versions of the same library in the same program.
- ⚡ You can use incompatible libraries in the same project, as well as libraries with incompatible/conflicting dependencies.
- ⚡ It's easy to share written scripts. The script file becomes self-sufficient - the user does not need to install the necessary libraries.
- ⚡ The library does not leave behind "garbage". After the end of the program, no additional files remain in the system.


## Table of contents
Expand Down Expand Up @@ -40,7 +40,7 @@ import installed


with installed('some_package') as context:
module = context.import_here('some_module')
import some_module
```

The above code downloads `some_package` and imports `some_module` from it.
Expand Down

0 comments on commit 88d78a4

Please sign in to comment.