🌐
GitHub
github.com › topics › python-scripts
python-scripts · GitHub Topics · GitHub
A curated collection of some 😍 cool Python scripts. python open-source automation beginner-project python-scripts hacktoberfest ch20
🌐
GitHub
github.com › topics › python-script
python-script · GitHub Topics · GitHub
This repositories contains a list of python scripts projects from beginner level advancing slowly. More code snippets to be added soon. feel free to clone this repo · github python open-source beginner-project python-script ascii-art collaborate hacktoberfest webscrapping hacktoberfest-accepted student-vscode
🌐
GitHub
github.com › wasmerio › Python-Scripts
GitHub - wasmerio/Python-Scripts: A curated list of python scripts for automating your tasks · GitHub
This repository consists of a list of more than 60 Python scripts, primarily those which automate a specific task. Each folder contains one or more .py files and a README to explain what that specific Python script needs to run.
Author   wasmerio
🌐
GitHub
github.com › avinashkranjan › amazing-python-scripts
GitHub - avinashkranjan/Amazing-Python-Scripts: 🚀 Curated collection of Amazing Python scripts from Basics to Advance with automation task scripts.
🚀 Curated collection of Amazing Python scripts from Basics to Advance with automation task scripts. - avinashkranjan/Amazing-Python-Scripts
Starred by 3.6K users
Forked by 1.3K users
Languages   Jupyter Notebook 95.8% | Python 4.0% | HTML 0.1% | JavaScript 0.1% | CSS 0.0% | Shell 0.0%
🌐
GitHub
github.com › marketplace › actions › run-python-script
Run Python Script - GitHub Marketplace
The only requirement is that you set up the Python environment before running the action. Here is an example workflow that prints the repository root directory contents to the Actions logs: name: Run Script on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.x' - uses: jannekem/run-python-script-action@v1 with: script: | import os print("Directory contents:") for f in os.listdir(): print(f)
🌐
Mechanicalgirl
mechanicalgirl.com › post › using-gitHub-actions-run-python-script
Using GitHub Actions to run a Python script
jobs: generate-pull-request: name: Generate Pull Request runs-on: ubuntu-latest outputs: changes: ${{ steps.git-check.outputs.changes }} steps: - name: Check out repository to the runner uses: actions/checkout@v4 with: fetch-depth: 0 - name: configure git run: | git config user.name github-actions git config user.email github-actions@github.com git checkout main git fetch origin - name: setup python uses: actions/setup-python@v5 with: python-version: 3.12 - name: Run script run: python3 .github/scripts/keys.py - name: check for changes id: git-check run: | if git diff --quiet; then echo "No ch
🌐
Davidmuraya
davidmuraya.com › blog › schedule-python-scripts-github-actions
Run Python Scripts for Free with GitHub Actions: A Complete Guide
December 18, 2025 - Learn how to use GitHub Actions to schedule and run Python scripts automatically. This guide covers cron scheduling, secrets management, and when to use GitHub Actions vs. cloud functions-all with zero infrastructure setup.
🌐
Medium
agnieszkapasieka.medium.com › run-python-scripts-directly-from-github-repository-using-codespaces-902468f50b0a
Run Python scripts directly from GitHub repository using Codespaces | by Agnieszka Pasieka | Medium
September 17, 2024 - Here’s a script you can use: https://github.com/agapasieka/cfg-project-group5. It was my group project for completing the Python course offered by Code First Girls.
🌐
GitHub
gist.github.com › 734950
ejemplos de python · GitHub
Clone this repository at <script src="https://gist.github.com/lfborjas/734950.js"></script> Save lfborjas/734950 to your computer and use it in GitHub Desktop. Download ZIP · ejemplos de python · Raw · archivos.py · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below.
Find elsewhere
🌐
GitHub
github.com › fnplus › python-scripts-collection
GitHub - fnplus/python-scripts-collection: This is a collection of short Python scripts to solve and automate tasks and simplify any work. · GitHub
This is a collection of short Python scripts to solve and automate tasks and simplify any work. - fnplus/python-scripts-collection
Starred by 266 users
Forked by 126 users
Languages   Python 98.1% | Tcl 1.9%
🌐
GitHub
docs.github.com › en › actions › tutorials › build-and-test-code › python
Building and testing Python - GitHub Docs
This guide shows you how to build, test, and publish a Python package. GitHub-hosted runners have a tools cache with pre-installed software, which includes Python and PyPy. You don't have to install anything!
🌐
GitHub
github.com › topics › scripts
scripts · GitHub Topics · GitHub
DAPS (Drazzilb's Arr PMM Scripts) A collection of useful scripts for media management and automation · python bash script plex scripts unraid userscripts
🌐
GitHub
github.com › OpenClassrooms-Student-Center › 7168871-apprenez-les-bases-du-langage-python
GitHub - OpenClassrooms-Student-Center/7168871-apprenez-les-bases-du-langage-python · GitHub
Contribute to OpenClassrooms-Student-Center/7168871-apprenez-les-bases-du-langage-python development by creating an account on GitHub.
Starred by 135 users
Forked by 1.2K users
Languages   Python 84.9% | HTML 15.1%
🌐
GitHub
github.com › geobretagne › datatests
GitHub - geobretagne/datatests: Script python permettant de tester des données au format shape sur la base de tests décris dans un fichier de configuration · GitHub
Script python permettant de tester des données au format shape sur la base de tests décris dans un fichier de configuration - geobretagne/datatests
Author   geobretagne
🌐
GitHub
github.com › maximlt › PythonScript
GitHub - maximlt/PythonScript: TUTO: Comment s'y prendre pour écrire des scripts en Python? · GitHub
L'objectif de ce tutoriel est donc principalement de proposer une méthode complète permettant l'écriture de scripts Python pouvant être exécutés facilement.
Forked by 4 users
Languages   Jupyter Notebook 80.2% | Python 19.6%
🌐
GitHub
github.com › pyscript › pyscript
PyScript is an open source platform for Python in the browser.
An open source platform for Python in the browser. https://pyscript.net Docs: https://docs.pyscript.net/ Try it: https://pyscript.com/ Community: https://discord.gg/HxvBtukrg2 - pyscript/pyscript
Author   pyscript
🌐
GitHub
github.com › Maffey › fun-python-scripts
GitHub - Maffey/fun-python-scripts: Variety of single-purpose scripts with different practicality levels, made for fun in Python. · GitHub
Variety of single-purpose scripts with different practicality levels, made for fun in Python. - Maffey/fun-python-scripts
Starred by 4 users
Forked by 3 users
Languages   Python
🌐
DEV Community
dev.to › ajeetraina › a-python-script-to-connect-to-github-and-fetches-search-results-38jk
A Python Script to connect to GitHub and Fetches Search Results - DEV Community
February 11, 2023 - import requests import json url = "https://api.github.com/search/repositories?q=docker+desktop+extension&sort=stars&order=desc" headers = { "Authorization": "github_pat_XXXX" } response = requests.get(url, headers=headers) if response.status_code == 200: data = json.loads(response.text) for repository in data["items"]: print(f"{repository['name']}: {repository['html_url']}") else: print("Could not retrieve data from GitHub.") In this script, you'll need to replace with your actual GitHub personal access token.
🌐
GitHub
github.com › topics › useful-scripts
useful-scripts · GitHub Topics · GitHub
A ton of useful CLI scripts and other Python related projects.