Github Top Repositories
Top GitHub repositories in one place ๐ Explore the best projects in programming, AI, data science, and more.
Ko'proq ko'rsatish๐ Telegram kanali Github Top Repositories analitikasi
Github Top Repositories (@githubre) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 13 301 obunachidan iborat bo'lib, Taสผlim toifasida 15 322-o'rinni va Hindiston mintaqasida 32 330-o'rinni egallagan.
๐ Auditoriya koโrsatkichlari va dinamika
ะฝะตะฒัะดะพะผะพ sanasidan buyon loyiha tez oโsib, 13 301 obunachiga ega boโldi.
12 Iyun, 2026 dagi oxirgi maโlumotlarga koโra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 393 ga, soโnggi 24 soatda esa 17 ga oโzgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya oโrtacha 1.11% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 0.75% ini tashkil etuvchi reaksiyalarni toโplaydi.
- Post qamrovi: Har bir post oโrtacha 148 marta koโriladi; birinchi sutkada odatda 100 ta koโrish yigโiladi.
- Reaksiyalar va oโzaro taโsir: Auditoriya faol: har bir postga oโrtacha 1 ta reaksiya keladi.
- Tematik yoโnalishlar: Kontent repository, fork, programming, statistic, description kabi asosiy mavzularga jamlangan.
๐ Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida taโriflaydi:
โTop GitHub repositories in one place ๐
Explore the best projects in programming, AI, data science, and more.โ
Yuqori yangilanish chastotasi (oxirgi maโlumot 13 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boโlib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taสผlim toifasidagi muhim taโsir nuqtasiga aylantirishini koโrsatadi.
#internal_tools #crud #crm #admin_dashboard #self_hosted #web_application #project_management #salesforce #developer_tools #airtable #workflows #low_code #no_code #app_builder #internal_tool #nocode #low_code_development_platform #no_code_platform #low_code_platform #low_code_framework================================== ๐ง By: https://t.me/DataScienceM
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "myDynamicElement"))
)
โข Get the page source after JavaScript has executed.
dynamic_html = driver.page_sourceโข Close the browser window.
driver.quit()
VII. Common Tasks & Best Practices
โข Handle pagination by finding the "Next" link.
next_page_url = soup.find('a', text='Next')['href']
โข Save data to a CSV file.
import csv
with open('data.csv', 'w', newline='', encoding='utf-8') as f:
writer = csv.writer(f)
writer.writerow(['Title', 'Link'])
# writer.writerow([title, url]) in a loop
โข Save data to CSV using pandas.
import pandas as pd
df = pd.DataFrame(data, columns=['Title', 'Link'])
df.to_csv('data.csv', index=False)
โข Use a proxy with requests.
proxies = {'http': 'http://10.10.1.10:3128', 'https': 'http://10.10.1.10:1080'}
requests.get('http://example.com', proxies=proxies)
โข Pause between requests to be polite.
import time
time.sleep(2) # Pause for 2 seconds
โข Handle JSON data from an API.
json_response = requests.get('https://api.example.com/data').json()
โข Download a file (like an image).
img_url = 'http://example.com/image.jpg'
img_data = requests.get(img_url).content
with open('image.jpg', 'wb') as handler:
handler.write(img_data)
โข Parse a sitemap.xml to find all URLs.
# Get the sitemap.xml file and parse it like any other XML/HTML to extract <loc> tags.VIII. Advanced Frameworks (
Scrapy)
โข Create a Scrapy spider (conceptual command).
scrapy genspider example example.comโข Define a
parse method to process the response.
# In your spider class:
def parse(self, response):
# parsing logic here
pass
โข Extract data using Scrapy's CSS selectors.
titles = response.css('h1::text').getall()
โข Extract data using Scrapy's XPath selectors.
links = response.xpath('//a/@href').getall()
โข Yield a dictionary of scraped data.
yield {'title': response.css('title::text').get()}
โข Follow a link to parse the next page.
next_page = response.css('li.next a::attr(href)').get()
if next_page is not None:
yield response.follow(next_page, callback=self.parse)
โข Run a spider from the command line.
scrapy crawl example -o output.json
โข Pass arguments to a spider.
scrapy crawl example -a category=books
โข Create a Scrapy Item for structured data.
import scrapy
class ProductItem(scrapy.Item):
name = scrapy.Field()
price = scrapy.Field()
โข Use an Item Loader to populate Items.
from scrapy.loader import ItemLoader
loader = ItemLoader(item=ProductItem(), response=response)
loader.add_css('name', 'h1.product-name::text')
#Python #WebScraping #BeautifulSoup #Selenium #Requests
โโโโโโโโโโโโโโโ
By: @DataScienceN โจfirst_link = soup.find('a')
โข Find all occurrences of a tag.
all_links = soup.find_all('a')
โข Find tags by their CSS class.
articles = soup.find_all('div', class_='article-content')
โข Find a tag by its ID.
main_content = soup.find(id='main-container')
โข Find tags by other attributes.
images = soup.find_all('img', attrs={'data-src': True})
โข Find using a list of multiple tags.
headings = soup.find_all(['h1', 'h2', 'h3'])
โข Find using a regular expression.
import re
links_with_blog = soup.find_all('a', href=re.compile(r'blog'))
โข Find using a custom function.
# Finds tags with a 'class' but no 'id'
tags = soup.find_all(lambda tag: tag.has_attr('class') and not tag.has_attr('id'))
โข Limit the number of results.
first_five_links = soup.find_all('a', limit=5)
โข Use CSS Selectors to find one element.
footer = soup.select_one('#footer > p')
โข Use CSS Selectors to find all matching elements.
article_links = soup.select('div.article a')
โข Select direct children using CSS selector.
nav_items = soup.select('ul.nav > li')
IV. Extracting Data with BeautifulSoup
โข Get the text content from a tag.
title_text = soup.title.get_text()โข Get stripped text content.
link_text = soup.find('a').get_text(strip=True)
โข Get all text from the entire document.
all_text = soup.get_text()
โข Get an attribute's value (like a URL).
link_url = soup.find('a')['href']
โข Get the tag's name.
tag_name = soup.find('h1').name
โข Get all attributes of a tag as a dictionary.
attrs_dict = soup.find('img').attrs
V. Parsing with lxml and XPath
โข Import the library.
from lxml import html
โข Parse HTML content with lxml.
tree = html.fromstring(response.content)
โข Select elements using an XPath expression.
# Selects all <a> tags inside <div> tags with class 'nav'
links = tree.xpath('//div[@class="nav"]/a')
โข Select text content directly with XPath.
# Gets the text of all <h1> tags
h1_texts = tree.xpath('//h1/text()')
โข Select an attribute value with XPath.
# Gets all href attributes from <a> tags
hrefs = tree.xpath('//a/@href')
VI. Handling Dynamic Content (Selenium)
โข Import the webdriver.
from selenium import webdriver
โข Initialize a browser driver.
driver = webdriver.Chrome() # Requires chromedriverโข Navigate to a webpage.
driver.get('http://example.com')
โข Find an element by its ID.
element = driver.find_element('id', 'my-element-id')
โข Find elements by CSS Selector.
elements = driver.find_elements('css selector', 'div.item')
โข Find an element by XPath.
button = driver.find_element('xpath', '//button[@type="submit"]')
โข Click a button.
button.click()โข Enter text into an input field.
search_box = driver.find_element('name', 'q')
search_box.send_keys('Python Selenium')
โข Wait for an element to become visible.requests)
โข Import the library.
import requests
โข Make a GET request to a URL.
response = requests.get('http://example.com')
โข Check the response status code (200 is OK).
print(response.status_code)
โข Access the raw HTML content (as bytes).
html_bytes = response.contentโข Access the HTML content (as a string).
html_text = response.textโข Access response headers.
print(response.headers)
โข Send a custom User-Agent header.
headers = {'User-Agent': 'My Cool Scraper 1.0'}
response = requests.get('http://example.com', headers=headers)
โข Pass URL parameters in a request.
params = {'q': 'python scraping'}
response = requests.get('https://www.google.com/search', params=params)
โข Make a POST request with form data.
payload = {'key1': 'value1', 'key2': 'value2'}
response = requests.post('http://httpbin.org/post', data=payload)
โข Handle potential request errors.
try:
response = requests.get('http://example.com', timeout=5)
response.raise_for_status() # Raise an exception for bad status codes
except requests.exceptions.RequestException as e:
print(f"An error occurred: {e}")
II. Parsing HTML with BeautifulSoup (Setup & Navigation)
โข Import the library.
from bs4 import BeautifulSoup
โข Create a BeautifulSoup object from HTML text.
soup = BeautifulSoup(html_text, 'html.parser')
โข Prettify the parsed HTML for readability.
print(soup.prettify())
โข Access a tag directly by name (gets the first one).
title_tag = soup.titleโข Navigate to a tag's parent.
title_parent = soup.title.parentโข Get an iterable of a tag's children.
for child in soup.head.children:
print(child.name)
โข Get the next sibling tag.
first_p = soup.find('p')
next_p = first_p.find_next_sibling('p')
โข Get the previous sibling tag.
second_p = soup.find_all('p')[1]
prev_p = second_p.find_previous_sibling('p')
III. Finding Elements with BeautifulSoup#kubernetes #tunnel #golang #networking #mesh_networks #ipfs #nat #blockchain #p2p #vpn #mesh #golang_library #libp2p #cloudvpn #ipfs_blockchain #holepunch #p2pvpn================================== ๐ง By: https://t.me/DataScienceM
#linux #security #server #hardening #security_hardening #linux_server #cc_by_sa #hardening_steps================================== ๐ง By: https://t.me/DataScienceM
#ai #retrieval #reasoning #rag #llm================================== ๐ง By: https://t.me/DataScienceM
#api #ai #mcp #decentralized #text_generation #distributed #tts #image_generation #llama #object_detection #mamba #libp2p #gemma #mistral #audio_generation #llm #stable_diffusion #rwkv #musicgen #rerank================================== ๐ง By: https://t.me/DataScienceM
#python #machine_learning #deep_learning #neural_network #gpu #numpy #autograd #tensor================================== ๐ง By: https://t.me/DataScienceM
#userscript #tampermonkey #aria2 #baidu #baiduyun #tampermonkey_script #baidunetdisk #tampermonkey_userscript #baidu_netdisk #motrix #aliyun_drive #123pan #189_cloud #139_cloud #xunlei_netdisk #quark_netdisk #ali_netdisk #yidong_netdisk #tianyi_netdisk #uc_netdisk================================== ๐ง By: https://t.me/DataScienceM
#ai #agents #autonomous_agents #voice_assistant #llm #llm_agents #agentic_ai #deepseek_r1================================== ๐ง By: https://t.me/DataScienceM
#markdown #cli #hacktoberfest #excitement================================== ๐ง By: https://t.me/DataScienceM
#nlp #deep_learning #inference #pytorch #transformer #llm================================== ๐ง By: https://t.me/DataScienceM
returnPressed signal.
Data Integrity: We added a basic check for stock (quantity > 0). A more robust system would check if the quantity in the cart exceeds the quantity in stock before allowing the sale to complete.
Features for a Real Pharmacy: A production-level system would need many more features: prescription management, patient records, batch tracking for recalls, advanced reporting (e.g., top-selling drugs, low-stock alerts), user accounts with different permission levels, and receipt printing.
Database: SQLite is perfect for a single-user, standalone application. For a pharmacy with multiple terminals, a client-server database like PostgreSQL or MySQL would be necessary.
This project provides a solid foundation, demonstrating how to integrate hardware (like a barcode scanner) with a database-backed desktop application to solve a real-world business problem.
#ProjectComplete #SoftwareEngineering #PythonGUI #HealthTech
โโโโโโโโโโโโโโโ
By: @DataScienceN โจ
Endi mavjud! Telegram Tadqiqoti 2025 โ yilning asosiy insaytlari 
