Skip to content

Commit

Permalink
Drop Python 2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
python273 committed Sep 11, 2020
1 parent 54ba807 commit 1d24cbe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.idea/
.vscode/

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 2.7, 3.4, 3.5, 3.6, 3.7](https://img.shields.io/pypi/pyversions/vk_api.svg) [![Telegram Chat](https://img.shields.io/badge/-Telegram%20Chat-green?logo=telegram&color=27A7E5)](https://t.me/python273_vk_api)
vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 3.6, 3.7, 3.8](https://img.shields.io/pypi/pyversions/vk_api.svg) [![Telegram Chat](https://img.shields.io/badge/-Telegram%20Chat-green?logo=telegram&color=27A7E5)](https://t.me/python273_vk_api)
=================================================================================================================================================================================
**vk_api** – Python модуль для создания скриптов для социальной сети Вконтакте (vk.com API wrapper)

Expand All @@ -20,5 +20,4 @@ print(vk.wall.post(message='Hello world!'))

Установка
------------
$ pip install vk_api
$ pip3 install vk_api
11 changes: 2 additions & 9 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
Документация vk_api
===================

vk_api – Python модуль для написания скриптов для социальной сети Вконтакте
(vk.com) (API wrapper)
vk_api – Python модуль для создания скриптов для социальной сети Вконтакте (vk.com API wrapper)

`Установка через PIP
<https://pythonworld.ru/osnovy/pip.html>`_:

.. code-block:: shell-session
$ pip install --user vk_api
или

.. code-block:: shell-session
# pip install vk_api
# pip3 install vk_api
Примеры по использованию библиотеки доступны на `GitHub <https://github.com/python273/vk_api/tree/master/examples>`_.

Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
author_email='vk_api@python273.pw',

description=(
u'Python модуль для написания скриптов для социальной сети '
u'Вконтакте (vk.com) (API wrapper)'
u'Python модуль для создания скриптов для социальной сети '
u'Вконтакте (vk.com API wrapper)'
),
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -48,13 +48,10 @@
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
]
Expand Down

0 comments on commit 1d24cbe

Please sign in to comment.