πβοΈTODAY FREEβοΈπ
Entry to our VIP channel is completely free today. Tomorrow it will cost $500! π₯
JOIN π
https://t.iss.one/+DBdNGbxImzgxMDBi
https://t.iss.one/+DBdNGbxImzgxMDBi
https://t.iss.one/+DBdNGbxImzgxMDBi
Entry to our VIP channel is completely free today. Tomorrow it will cost $500! π₯
JOIN π
https://t.iss.one/+DBdNGbxImzgxMDBi
https://t.iss.one/+DBdNGbxImzgxMDBi
https://t.iss.one/+DBdNGbxImzgxMDBi
β€1
This channels is for Programmers, Coders, Software Engineers.
0οΈβ£ Python
1οΈβ£ Data Science
2οΈβ£ Machine Learning
3οΈβ£ Data Visualization
4οΈβ£ Artificial Intelligence
5οΈβ£ Data Analysis
6οΈβ£ Statistics
7οΈβ£ Deep Learning
8οΈβ£ programming Languages
β
https://t.iss.one/addlist/8_rRW2scgfRhOTc0
β
https://t.iss.one/Codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
β€1
β¨ concatenation | Python Glossary β¨
π The operation of joining two or more strings end-to-end to create a new string.
π·οΈ #Python
π The operation of joining two or more strings end-to-end to create a new string.
π·οΈ #Python
β€2
π΅Meet Fotbo β the VPS with a monkey mascot and zero BS.
The deal: Fast NVMe storage, European servers, full control. No surprise bills, no corporate jargon, no waiting days for support.
The specs: β‘ NVMe SSD that actually makes a difference π Netherlands β’ Poland β’ Germany π° Starting at β¬4.80/month (yeah, really) π§ Do whatever you want β it's your server π Outperforms AWS, DigitalOcean & Vultr in benchmarks
Perfect for: Training neural networks without selling your kidney. Running Jupyter 24/7. Testing that crazy idea at 3 AM. Deploying models that actually need to scale. Scraping data without rate limits ruining your day.
π -35% OFF FIRST MONTH Coupon: MONKEY35
https://fotbo.com/
Built by devs who got tired of overpriced cloud providers. Also, there's a monkey π
The deal: Fast NVMe storage, European servers, full control. No surprise bills, no corporate jargon, no waiting days for support.
The specs: β‘ NVMe SSD that actually makes a difference π Netherlands β’ Poland β’ Germany π° Starting at β¬4.80/month (yeah, really) π§ Do whatever you want β it's your server π Outperforms AWS, DigitalOcean & Vultr in benchmarks
Perfect for: Training neural networks without selling your kidney. Running Jupyter 24/7. Testing that crazy idea at 3 AM. Deploying models that actually need to scale. Scraping data without rate limits ruining your day.
π -35% OFF FIRST MONTH Coupon: MONKEY35
https://fotbo.com/
Built by devs who got tired of overpriced cloud providers. Also, there's a monkey π
β€2
Django ModelSearch β intelligent search for models
It indexes Django models and allows searching through the ORM. It works with PostgreSQL FTS, SQLite FTS5, Elasticsearch, and OpenSearch
</i>
It indexes Django models and allows searching through the ORM. It works with PostgreSQL FTS, SQLite FTS5, Elasticsearch, and OpenSearch
</i>
Supports:
β’ autocomplete
β’ faceted search
β’ fuzzy search
β’ structured queries
β’ index rebuilding without downtime
β€2
What if you could see the entire dependency tree of a single team?
You can only debug version conflicts when you understand which packages depend on what. But manually sorting out these connections in a pile of nested dependencies is tedious and time-consuming.
uv tree does this automatically: it displays a complete dependency graph so you can track any package and understand where it came from.
Key features:
β
Full visualization of dependencies
β
Highlights dependencies for which updates are available
β
Shows which packages depend on a specific library
β
Filters the tree to show only the dependencies of the selected package
Installation
π @DataScience4
You can only debug version conflicts when you understand which packages depend on what. But manually sorting out these connections in a pile of nested dependencies is tedious and time-consuming.
uv tree does this automatically: it displays a complete dependency graph so you can track any package and understand where it came from.
Key features:
Installation
uv: pip install uvPlease open Telegram to view this post
VIEW IN TELEGRAM
β€3
This media is not supported in your browser
VIEW IN TELEGRAM
It works like a red team within your system. You describe the task in plain language β then it plans the attack itself, selects tools, and proceeds through the entire process: from reconnaissance to reporting. Without manual fiddling and endless commands.
What it can do in practice:
git clone https://github.com/GH05TCREW/ghostcrew.git
cd ghostcrew
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python main.py
#python #soft #github
Please open Telegram to view this post
VIEW IN TELEGRAM
β€3
β¨ global variable | Python Glossary β¨
π A variable defined at the top level of a module.
π·οΈ #Python
π A variable defined at the top level of a module.
π·οΈ #Python
#python #soft #github
Please open Telegram to view this post
VIEW IN TELEGRAM
β€5π1
Forwarded from PyData Careers
If you're testing forms, mockups, or just want to play with data, there's Mimesis β a generator of fake data. Names, emails, addresses, and phone numbers. There's a location setting that allows you to select a country, and the data will be generated accordingly.
from typing import Dict
from mimesis.enums import Gender
from mimesis import Person
def generate_fake_user(locale: str = "es", gender: Gender = Gender.MALE) -> Dict[str, str]:
"""
Generates fake user data based on the locale and gender.
:param locale: The locale (for example, 'ru', 'en', 'es')
:param gender: The gender (Gender.MALE or Gender.FEMALE)
:return: A dictionary with the fake user data
"""
person = Person(locale)
user_data = {
"name": person.full_name(gender=gender),
"height": person.height(),
"phone": person.telephone(),
"occupation": person.occupation(),
}
return user_data
if __name__ == "__main__":
fake_user = generate_fake_user(locale="es", gender=Gender.MALE)
print(fake_user)
{
'name': 'Carlos Herrera',
'height': '1.84',
'phone': '912 475 289',
'occupation': 'Arquitecto'
)ru, πΊπΈ en, πͺπΈ es, etc.) Save it, it'll come in handy
#python #github #interview
Please open Telegram to view this post
VIEW IN TELEGRAM
β€4
β¨ How to Integrate Local LLMs With Ollama and Python β¨
π Learn how to integrate your Python projects with local models (LLMs) using Ollama for enhanced privacy and cost efficiency.
π·οΈ #intermediate #ai #tools
π Learn how to integrate your Python projects with local models (LLMs) using Ollama for enhanced privacy and cost efficiency.
π·οΈ #intermediate #ai #tools
β¨ introspection | Python Glossary β¨
π The ability of a program to examine the type or properties of an object at runtime.
π·οΈ #Python
π The ability of a program to examine the type or properties of an object at runtime.
π·οΈ #Python
β¨ local variable | Python Glossary β¨
π A variable that you bind inside a function or method body.
π·οΈ #Python
π A variable that you bind inside a function or method body.
π·οΈ #Python
β¨ Quiz: How to Integrate ChatGPT's API With Python Projects β¨
π Test your knowledge of the ChatGPT API in Python. Practice sending prompts with openai and handling text and code responses in this quick quiz.
π·οΈ #intermediate #ai #api
π Test your knowledge of the ChatGPT API in Python. Practice sending prompts with openai and handling text and code responses in this quick quiz.
π·οΈ #intermediate #ai #api
How to correctly terminate Python scripts
In production, it's important to clearly signal the result of the program's work. For this,
β’ 0 β success
β’ a non-zero value β error
This approach helps CI/CD, Docker or cron to correctly respond to failures. It's mandatory for CLI utilities and automation, so that the execution is predictable
https://t.iss.one/DataScience4
In production, it's important to clearly signal the result of the program's work. For this,
sys.exit(<code>) is used:β’ 0 β success
β’ a non-zero value β error
This approach helps CI/CD, Docker or cron to correctly respond to failures. It's mandatory for CLI utilities and automation, so that the execution is predictable
https://t.iss.one/DataScience4
β€5
β¨ Anaconda Navigator | Python Tools β¨
π A desktop graphical interface included with the Anaconda Distribution.
π·οΈ #Python
π A desktop graphical interface included with the Anaconda Distribution.
π·οΈ #Python