Python Forum
200,000? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: 200,000? (/thread-21825.html)



200,000? - snippsat - Oct-16-2019

The 100,000 mark for PyPi was on March 4, 2017.
import requests
from bs4 import BeautifulSoup

def pypi_check():
    url = 'https://pypi.org/'
    response = requests.get(url)
    soup = BeautifulSoup(response.content, 'lxml')
    package_count = soup.find('div', class_='statistics-bar').find('p')
    package_count = int(''.join(package_count.text.split()[0].split(',')))
    print(f'PyPi has reach {package_count}\N{fire}\N{fire} projects\N{slightly smiling face}')

pypi_check()
[Image: 6OtrKs.png]


RE: 200,000? - snippsat - Oct-17-2019

As it can be hard to get a good overview of project on PyPi.
Here are a couple of links that help with overview of projects.
Awesome Python
Awesomo