AI-powered search & chat for Data / Computer Science Students

Hosting Your Own PyPi

 Python in Plain English

Recently, I have been getting a little annoyed with having to do some daily tasks on my servers. So naturally, the thing to do is figure out a way to automate them and have Python scripts do all the…

Read more at Python in Plain English

The Most Complete Guide for Creating a Good PyPI Package

 Towards Data Science

Everything you need to know — for new and experienced users. Continue reading on Towards Data Science

Read more at Towards Data Science

pydantic

 Towards Data Science

Having complex nested data structures is hard. The traditional approach to store this kind of data in Python is nested dictionaries. Although Python dictionaries are amazing, there are two issues…

Read more at Towards Data Science

The Real Python Podcast – Episode #177: Welcoming PyPI's Safety & Security Engineer Mike Fiedler

 Real Python

You may remember a recent Python Package Index (PyPI) announcement about hiring a full-time security engineer. We've also mentioned several current security initiatives from PyPI. This week on the sho...

Read more at Real Python

Making a Python Library with PyPI

 Analytics Vidhya

Creating your own Python library could be a fun project that you could do to impress your future employer or to impress your fellow Python nerds. It also could be a more noble reason, like helping…

Read more at Analytics Vidhya

Library of the week #2: Pypinfo

 Python in Plain English

Why Pypinfo? Pypinfo is the library I use to display the statistics about how many downloads (in the past month) a python library has had on PyPi . If you need a quick and convenient access (like I do...

Read more at Python in Plain English

Chapter 37 - How to Add Your Code to PyPI

 Python 101

We created a package called mymath in the previous chapter. In this chapter, we will learn how to share it on the Python Packaging Index (PyPI). To do that, we will first need to learn how to create ...

Read more at Python 101

A request for new pypi classifiers

 Daniel Roy Greenfeld Blog

A request for new pypi classifiers November 6, 2010 This was originally posted on blogger here . This request is to help enhance Django Packages , PyPM Index , and other projects. This would also help...

Read more at Daniel Roy Greenfeld Blog

Uploading a Python package to PyPi

 Python in Plain English

As a Python developer, you must be familiar with the python packages installation procedure: pip install Read more at Python in Plain English

Publishing Your Python Packages to PyPi

 Better Programming

If you work with Python, then you are probably aware of packages that you can download and import into your projects using pip. It’s a robust tool that allows developers from all around the world to…

Read more at Better Programming

Getting Started with PyPy

 Towards Data Science

The Python programming language is an interface that can be implemented in many ways. Some examples include CPython which uses the C language, Jython that is implemented using Java, and so on…

Read more at Towards Data Science

Unleashing the Power of Pydantic

 Python in Plain English

A Comprehensive Guide to Data Validation and Settings Management in Python Continue reading on Python in Plain English

Read more at Python in Plain English

Planning Python Package Structure for Publishing to PyPI

 Real Python

PyPI is the public hosting service where open-source Python packages live. When you pip install a package, that’s where it fetches it from. In this video, you’ll learn all about the structures of a pa...

Read more at Real Python

How to publish a project into PyPI

 Python in Plain English

The Python Package Index (or PyPI) is a repository of software to Python and one of the properties that makes it so powerful. With just a simple command, you can access thousand of libraries.

Read more at Python in Plain English

Python 101: Episode #37 - How to Add Your Code to PyPI

 Mouse Vs Python

In this episode, you will learn ye olde method of adding code to the Python Packaging Index. Note that while some of this video is still relevant, you should be using the twine package now for uploadi...

Read more at Mouse Vs Python

Beginner’s Guide for Finding, Installing, and Using Python Packages with PyPI

 Towards AI

Understand the primary usage of Python Packages Continue reading on Towards AI

Read more at Towards AI

How to Upload Your Python Package to PyPI

 Towards Data Science

How to make your Python package widely available on PyPI so others can install it using pip

Read more at Towards Data Science

Publishing Python Packages to PyPI

 Real Python

In this video course, you’ll learn how to create a Python package for your project and how to publish it to PyPI, the Python Package Index. Quickly get up to speed on everything from naming your packa...

Read more at Real Python

How To Upload a Repository on PyPI and GitHub

 Better Programming

Installing PyPI packages made easy Photo by Richy Great on Unsplash Introduction As a graduate student dealing with vast amounts of data, coding for automation is essential for higher efficiency. Thi...

Read more at Better Programming

Pydantic in a Nutshell

 Python in Plain English

Pydantic is a library for type-safe parsing of data into Python objects with optional data validation… and more. A lot of well known Python projects (FastAPI, Project Jupyter), over 40000 open source…...

Read more at Python in Plain English

PyDev of the Week: Aly Sivji

 Mouse Vs Python

This week we welcome Aly Sivji (@CaiusSivjus) as our PyDev of the Week. Aly is an organizer for the Chicago Python Users Group (ChiPy), one of the largest Python groups around. If you'd like to see wh...

Read more at Mouse Vs Python

Analyzing PyPI package download statistics and building a data application

 Towards Data Science

Even though Jupyter notebooks are indispensable to writing code and interactive engagement with data, there is still a need to build applications for non-technical audiences. Fortunately, the Python…

Read more at Towards Data Science

Announcing PyCon Philippines!

 Daniel Roy Greenfeld Blog

Announcing PyCon Philippines! June 9, 2012 PyCon Philippines 2012 , set to occur on June 30 and July 1 , is the first Python programming conference held in the Philippines. PyCon is a volunteer run ef...

Read more at Daniel Roy Greenfeld Blog

Getting Started with Pip and PyPI in Python

 Real Python

Python’s package manager is called pip, and it comes bundled with every recent version of Python. pip allows us to install packages that don’t come bundled with the Python standard library. By default...

Read more at Real Python