Pytrends 1: How to use Google Trend unofficially with Python

Overview Google Trends provides valuable insights into search trends and keyword popularity. However, Google doesn’t offer an official API for accessing this data. Fortunately, the Pytrends library enables us to access Google Trends data using Python. In this tutorial, we’ll walk you through the installation and setup of Pytrends, and demonstrate how to perform a simple search and interpret the results. Prerequisites To follow this tutorial, you should have: Python 3 installed Basic knowledge of Python programming Familiarity with using Python packages Installation To install Pytrends, simply use pip:...

March 26, 2023 · 2 min · Juhyun Lee

Using Pyenv-virtualenv and Autoenv in Combination for Python Development

I. Overview In this blog post, we will explore how to use pyenv-virtualenv and autoenv together for seamless Python development. These tools can help you manage multiple Python environments and virtual environments with ease, improving your development workflow. II. Pyenv-virtualenv Pyenv-virtualenv is a plugin for pyenv that allows you to create and manage virtual environments for different Python versions. It helps you keep dependencies for different projects separate, ensuring that each project has access to the packages it requires without interference....

March 20, 2023 · 2 min · Juhyun Lee

How to Use Pyenv and Pyenv-Virtualenv

In this blog post, we will discuss how to use pyenv and pyenv-virtualenv, two powerful tools that can help you manage multiple Python versions and virtual environments with ease. We will cover installation instructions for various platforms, such as Mac and Linux, and discuss the most frequently used features of these tools. By the end, you’ll have a solid understanding of how to use these tools effectively in your development workflow....

March 16, 2023 · 3 min · Juhyun Lee