summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2017-02-02 22:16:30 +0100
committerIlya Etingof <etingof@gmail.com>2017-02-02 22:16:30 +0100
commit40f11f312f7b3c993c9ce209fa0f43427dfaa5a0 (patch)
tree1c31326baa0c93b88567ef00182e5f41d76c8449 /README.md
parent913c913484c76d77fa7fc8ee57dcfa485795c4df (diff)
downloadpyasn1-git-40f11f312f7b3c993c9ce209fa0f43427dfaa5a0.tar.gz
shorten README trivia
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 7 insertions, 19 deletions
diff --git a/README.md b/README.md
index 5674892..9589d29 100644
--- a/README.md
+++ b/README.md
@@ -67,14 +67,12 @@ class Record(Sequence):
componentType = NamedTypes(
NamedType('id', Integer()),
OptionalNamedType(
- 'room',
- Integer().subtype(
+ 'room', Integer().subtype(
implicitTag=Tag(tagClassContext, tagFormatSimple, 0)
)
),
DefaultedNamedType(
- 'house',
- Integer(0).subtype(
+ 'house', Integer(0).subtype(
implicitTag=Tag(tagClassContext, tagFormatSimple, 1)
)
)
@@ -140,27 +138,17 @@ compiled ASN.1 modules for different protocols and file formats
could be found in the pyasn1-modules
[repo](https://github.com/etingof/pyasn1-modules).
-Download
---------
+How to get pyasn1
+-----------------
The pyasn1 package is distributed under terms and conditions of 2-clause
BSD [license](http://pyasn1.sourceforge.net/license.html). Source code is freely
-available as a Github [repo](https://github.com/etingof/pyasn1).
-
-Installation
-------------
-
-Download pyasn1 from [PyPI](https://pypi.python.org/pypi/pyasn1) or just run:
-
-```bash
-$ pip install pyasn1
-```
+available as a GitHub [repo](https://github.com/etingof/pyasn1).
-Getting help
-------------
+You could `pip install pyasn1` or download it from [PyPI](https://pypi.python.org/pypi/pyasn1).
If something does not work as expected,
-[open an issue](https://github.com/etingof/pyasn1/issues) at Github or
+[open an issue](https://github.com/etingof/pyasn1/issues) at GitHub or
post your question [to Stack Overflow](http://stackoverflow.com/questions/ask)
or try browsing pyasn1
[mailing list archives](https://sourceforge.net/p/pyasn1/mailman/pyasn1-users/).