Skip to content

Commit

Permalink
Removed postfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Jul 17, 2024
1 parent cbbd781 commit 0cc9695
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ SNMP Library for Python
-----------------------

[![Become a Sponsor](https://img.shields.io/badge/Become%20a%20Sponsor-lextudio-orange.svg?style=for-readme)](https://github.com/sponsors/lextudio)
[![PyPI](https://img.shields.io/pypi/v/pysnmp-lextudio.svg)](https://pypi.python.org/pypi/pysnmp-lextudio)
[![PyPI Downloads](https://img.shields.io/pypi/dd/pysnmp-lextudio)](https://pypi.python.org/pypi/pysnmp-lextudio/)
[![Python Versions](https://img.shields.io/pypi/pyversions/pysnmp-lextudio.svg)](https://pypi.python.org/pypi/pysnmp-lextudio/)
[![PyPI](https://img.shields.io/pypi/v/pysnmp.svg)](https://pypi.python.org/pypi/pysnmp)
[![PyPI Downloads](https://img.shields.io/pypi/dd/pysnmp)](https://pypi.python.org/pypi/pysnmp/)
[![Python Versions](https://img.shields.io/pypi/pyversions/pysnmp.svg)](https://pypi.python.org/pypi/pysnmp/)
[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/lextudio/pysnmp/master/LICENSE.rst)

This is a pure-Python, open source and free implementation of v1/v2c/v3
Expand All @@ -14,7 +14,7 @@ SNMP engine distributed under 2-clause [BSD license](https://www.pysnmp.com/pysn
The PySNMP project was initially sponsored by a [PSF](http://www.python.org/psf/) grant.
Thank you!

This repo is a fork of Ilya Etingof's project [etingof/pysnmp](https://github.com/etingof/pysnmp), but [LeXtudio Inc. is taking over the entire PySNMP ecosystem](https://github.com/etingof/pysnmp/issues/429), including the library, documentation, and the website.
This repo is derived from Ilya Etingof's project [etingof/pysnmp](https://github.com/etingof/pysnmp), but [LeXtudio Inc. has taken over the entire PySNMP ecosystem](https://github.com/etingof/pysnmp/issues/429), including the library, documentation, and the website.

Ilya sadly passed away on 10-Aug-2022. Announcement [here](https://lists.openstack.org/pipermail/openstack-discuss/2022-August/030062.html). His work is still of great use to the Python community and he will be missed.

Expand Down Expand Up @@ -48,13 +48,13 @@ Features, specific to SNMPv3 model include:
Download & Install
------------------

The PySNMP software is freely available for download from [PyPI](https://pypi.python.org/pypi/pysnmp-lextudio)
The PySNMP software is freely available for download from [PyPI](https://pypi.python.org/pypi/pysnmp)
and [GitHub](https://github.com/lextudio/pysnmp.git).

Just run:

```bash
$ pip install pysnmp-lextudio
$ pip install pysnmp
```

To download and install PySNMP along with its dependencies:
Expand All @@ -69,7 +69,7 @@ Besides the library, command-line [SNMP utilities](https://github.com/lextudio/s
written in pure-Python could be installed via:

```bash
$ pip install snmpclitools-lextudio
$ pip install snmpclitools
```

and used in the very similar manner as conventional Net-SNMP tools:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/download.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The best way to obtain PySNMP and dependencies is to run:

.. code-block:: bash
$ pip install pysnmp-lextudio
$ pip install pysnmp
Related Resources
-----------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Best way is usually to install PySNMP using `PySNMP PyPI package`_.

.. code-block:: bash
$ pip install pysnmp-lextudio
$ pip install pysnmp
If that does not work for you for some reason, you might need to read the
following page.
Expand Down
16 changes: 8 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "pysnmp-lextudio"
name = "pysnmp"
version = "6.2.1"
description = "A Python library for SNMP"
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
Expand Down Expand Up @@ -29,7 +29,7 @@ include = ["docs", "tests", "examples"]
python = "^3.8"
pyasn1 = ">=0.4.8, !=0.5.0"
pysnmpcrypto = "^0.0.4"
pysmi-lextudio = "^1.3.0"
pysmi = "^1.3.0"
pytest-cov = "^4.0.0"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 0cc9695

Please sign in to comment.