File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,39 @@ print(locks[0].name)
22
22
lock[0 ].lock()
23
23
```
24
24
25
+ ## Installation
26
+
27
+ ### Pip
28
+
29
+ To install pyschlage, run this command in your terminal:
30
+
31
+ ``` sh
32
+ $ pip install pyschlage
33
+ ```
34
+
35
+ ### Source code
36
+
37
+ Pyschlage is actively developed on Github, where the code is [ always available] ( https://github.com/dknowles2/pyschlage ) .
38
+
39
+ You can either clone the public repository:
40
+
41
+ ``` sh
42
+ $ git clone https://github.com/dknowles2/pyschlage
43
+ ```
44
+
45
+ Or download the latest [ tarball] ( https://github.com/dknowles2/pyschlage/tarball/main ) :
46
+
47
+ ``` sh
48
+ $ curl -OL https://github.com/dknowles2/pyschlage/tarball/main
49
+ ```
50
+
51
+ Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:
52
+
53
+ ``` sh
54
+ $ cd pyschlage
55
+ $ python -m pip install .
56
+ ```
57
+
25
58
## Documentation
26
59
27
60
API reference can be found on [ Read the Docs] ( https://pyschlage.readthedocs.io )
You can’t perform that action at this time.
0 commit comments