Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
200,000?
#1
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]
Reply
#2
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
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020