Python for Data Analysts
Find top Python resources from global universities, cool projects, and learning materials for data analytics. For promotions: @coderfun Useful links: heylink.me/DataAnalytics
Show moreπ Analytical overview of Telegram channel Python for Data Analysts
Channel Python for Data Analysts (@pythonanalyst) in the English language segment is an active participant. Currently, the community unites 51 492 subscribers, ranking 2 607 in the Technologies & Applications category and 7 356 in the India region.
π Audience metrics and dynamics
Since its creation on Π½Π΅Π²ΡΠ΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 51 492 subscribers.
According to the latest data from 08 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 204 over the last 30 days and by -16 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 5.19%. Within the first 24 hours after publication, content typically collects N/A% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 670 views. Within the first day, a publication typically gains 0 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 9.
- Thematic interests: Content is focused on key topics such as visualization, panda, analyst, sql, analytic.
π Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
βFind top Python resources from global universities, cool projects, and learning materials for data analytics.
For promotions: @coderfun
Useful links: heylink.me/DataAnalyticsβ
Thanks to the high frequency of updates (latest data received on 09 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
import requests
def asteroidOrbits(year, orbitclass):
base_url = "https://jsonmock.hackerrank.com/api/asteroids/search"
page = 1
res = []
while True:
response = requests.get(f"{base_url}?orbit_class={orbitclass}&discovery_date={year}&page={page}").json()
res.extend(response['data'])
if page >= response['total_pages']:
break
page += 1
res.sort(key=lambda x: (float(x.get('period_yr', 1.00)), x['designation']))
return [x['designation'] for x in res]
Rest API: Asteroid Orbits β
Available now! Telegram Research 2025 β the year's key insights 
