Skip to content
View elydev01's full-sized avatar

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
elydev01/README.md

Pinned Loading

  1. PRECOMMIT DIRECTIVEPRECOMMIT 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 pythonSegment a multimedia file in python
    1
    importtime, os
    2
    frompydubimportAudioSegment
    3
    frommoviepy.video.io.ffmpeg_toolsimportffmpeg_extract_subclip
    4
    5
  3. Android intent action listAndroid 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 SCRIPTASCII ART SCRIPT
    1
    importsys
    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
    importsetuptools
    2
    3
    withopen("README.md", "r") asfh:
    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
    fromvalidate_emailimportvalidate_email
    4
    5
    defis_valid_email(email):