check-rkn 0.1.1__tar.gz → 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,19 +1,25 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: check-rkn
3
- Version: 0.1.1
3
+ Version: 1.0.0
4
4
  Summary: Library that check blocked website on blocklist.rkn.gov.ru
5
+ Home-page: https://codeberg.org/IvanyaK/check-rkn
6
+ License: Apache-2.0
5
7
  Author: IvanyaK
6
8
  Author-email: ivanrus200519@gmail.com
7
9
  Requires-Python: >=3.10,<4.0
10
+ Classifier: License :: OSI Approved :: Apache Software License
8
11
  Classifier: Programming Language :: Python :: 3
9
12
  Classifier: Programming Language :: Python :: 3.10
10
13
  Classifier: Programming Language :: Python :: 3.11
11
14
  Requires-Dist: anticaptchaofficial (>=1.0.53,<2.0.0)
12
15
  Requires-Dist: selenium (>=4.10.0,<5.0.0)
16
+ Project-URL: Repository, https://codeberg.org/IvanyaK/check-rkn
13
17
  Description-Content-Type: text/markdown
14
18
 
15
19
  # Check_rkn
16
20
 
21
+ [![PyPI](https://img.shields.io/pypi/v/check-rkn)](https://pypi.org/project/check-rkn/)
22
+
17
23
  This is library, that check blocked websites on [blocklist.rkn.gov.ru](https://blocklist.rkn.gov.ru/). Library uses [Selenium](https://pypi.org/project/selenium/) and [anticaptchaofficial](https://pypi.org/project/anticaptchaofficial/). *WARNING!* You need to register on [anti-captcha.com](https://anti-captcha.com/) to get the api key and top up your balance (For residents of the Russian federation: MIR cards are available, you can also pay with cryptocurrency)
18
24
 
19
25
  ## How to use
@@ -1,5 +1,7 @@
1
1
  # Check_rkn
2
2
 
3
+ [![PyPI](https://img.shields.io/pypi/v/check-rkn)](https://pypi.org/project/check-rkn/)
4
+
3
5
  This is library, that check blocked websites on [blocklist.rkn.gov.ru](https://blocklist.rkn.gov.ru/). Library uses [Selenium](https://pypi.org/project/selenium/) and [anticaptchaofficial](https://pypi.org/project/anticaptchaofficial/). *WARNING!* You need to register on [anti-captcha.com](https://anti-captcha.com/) to get the api key and top up your balance (For residents of the Russian federation: MIR cards are available, you can also pay with cryptocurrency)
4
6
 
5
7
  ## How to use
@@ -1,9 +1,11 @@
1
1
  [tool.poetry]
2
2
  name = "check-rkn"
3
- version = "0.1.1"
3
+ version = "1.0.0"
4
4
  description = "Library that check blocked website on blocklist.rkn.gov.ru"
5
+ license = "Apache-2.0"
5
6
  authors = ["IvanyaK <ivanrus200519@gmail.com>"]
6
7
  readme = "README.md"
8
+ repository = "https://codeberg.org/IvanyaK/check-rkn"
7
9
  packages = [{include = "check_rkn"}]
8
10
 
9
11
  [tool.poetry.dependencies]
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf-8 -*-
2
+ from setuptools import setup
3
+
4
+ packages = \
5
+ ['check_rkn']
6
+
7
+ package_data = \
8
+ {'': ['*']}
9
+
10
+ install_requires = \
11
+ ['anticaptchaofficial>=1.0.53,<2.0.0', 'selenium>=4.10.0,<5.0.0']
12
+
13
+ setup_kwargs = {
14
+ 'name': 'check-rkn',
15
+ 'version': '1.0.0',
16
+ 'description': 'Library that check blocked website on blocklist.rkn.gov.ru',
17
+ 'long_description': '# Check_rkn\n\n[![PyPI](https://img.shields.io/pypi/v/check-rkn)](https://pypi.org/project/check-rkn/)\n\nThis is library, that check blocked websites on [blocklist.rkn.gov.ru](https://blocklist.rkn.gov.ru/). Library uses [Selenium](https://pypi.org/project/selenium/) and [anticaptchaofficial](https://pypi.org/project/anticaptchaofficial/). *WARNING!* You need to register on [anti-captcha.com](https://anti-captcha.com/) to get the api key and top up your balance (For residents of the Russian federation: MIR cards are available, you can also pay with cryptocurrency)\n\n## How to use\n\n```python \nfrom check_rkn.check_rkn import check_website\n\nresult = check_website("your_url", "your_api_key")\nprint(result) # True if website is blocked or False if no\n\n```\n\n## License - [Apache 2.0](NOTICE)\n',
18
+ 'author': 'IvanyaK',
19
+ 'author_email': 'ivanrus200519@gmail.com',
20
+ 'maintainer': 'None',
21
+ 'maintainer_email': 'None',
22
+ 'url': 'https://codeberg.org/IvanyaK/check-rkn',
23
+ 'packages': packages,
24
+ 'package_data': package_data,
25
+ 'install_requires': install_requires,
26
+ 'python_requires': '>=3.10,<4.0',
27
+ }
28
+
29
+
30
+ setup(**setup_kwargs)
check_rkn-0.1.1/setup.py DELETED
@@ -1,30 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- from setuptools import setup
3
-
4
- packages = \
5
- ['check_rkn']
6
-
7
- package_data = \
8
- {'': ['*']}
9
-
10
- install_requires = \
11
- ['anticaptchaofficial>=1.0.53,<2.0.0', 'selenium>=4.10.0,<5.0.0']
12
-
13
- setup_kwargs = {
14
- 'name': 'check-rkn',
15
- 'version': '0.1.1',
16
- 'description': 'Library that check blocked website on blocklist.rkn.gov.ru',
17
- 'long_description': '# Check_rkn\n\nThis is library, that check blocked websites on [blocklist.rkn.gov.ru](https://blocklist.rkn.gov.ru/). Library uses [Selenium](https://pypi.org/project/selenium/) and [anticaptchaofficial](https://pypi.org/project/anticaptchaofficial/). *WARNING!* You need to register on [anti-captcha.com](https://anti-captcha.com/) to get the api key and top up your balance (For residents of the Russian federation: MIR cards are available, you can also pay with cryptocurrency)\n\n## How to use\n\n```python \nfrom check_rkn.check_rkn import check_website\n\nresult = check_website("your_url", "your_api_key")\nprint(result) # True if website is blocked or False if no\n\n```\n\n## License - [Apache 2.0](NOTICE)\n',
18
- 'author': 'IvanyaK',
19
- 'author_email': 'ivanrus200519@gmail.com',
20
- 'maintainer': 'None',
21
- 'maintainer_email': 'None',
22
- 'url': 'None',
23
- 'packages': packages,
24
- 'package_data': package_data,
25
- 'install_requires': install_requires,
26
- 'python_requires': '>=3.10,<4.0',
27
- }
28
-
29
-
30
- setup(**setup_kwargs)
File without changes