Skip to content
View elydev01's full-sized avatar
Block or Report

Block or report elydev01

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
elydev01/README.md

Pinned

  1. PRECOMMIT DIRECTIVE PRECOMMIT DIRECTIVE
    1
    # PRECOMMIT DIRECTIVE
    2
    
                  
    3
    # python -m pip install pre-commit
    4
    # pre-commit install
    5
    # pre-commit run --all-files
  2. Segment a multimedia file in python Segment a multimedia file in python
    1
    import time, os
    2
    from pydub import AudioSegment
    3
    from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
    4
    
                  
    5
    
                  
  3. Android intent action list Android intent action list
    1
    'ACTION_AIRPLANE_MODE_CHANGED'
    2
    'ACTION_ALARM_CHANGED'
    3
    'ACTION_ALL_APPS'
    4
    'ACTION_ANSWER'
    5
    'ACTION_APPLICATION_PREFERENCES'
  4. ASCII ART SCRIPT ASCII ART SCRIPT
    1
    import sys
    2
    
                  
    3
    ASCII_ART_LETTERS = [
    4
        " .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .-----------------. .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------. ",
    5
        "| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |",
  5. Configuration of setup.py file for p... Configuration of setup.py file for publishing a package on pip.
    1
    import setuptools
    2
    
                  
    3
    with open("README.md", "r") as fh:
    4
        long_description = fh.read()
    5
    
                  
  6. Vérifier si une adresse email est co... Vérifier si une adresse email est correct et existe réellement en python
    1
    # Avec la bibliothèque `validate_email`
    2
    
                  
    3
    from validate_email import validate_email
    4
    
                  
    5
    def is_valid_email(email):