Shaare your links...
3416 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 2 / 10
Newer►
200 results for tags python x
  • pygame.draw — Pygame v1.9.5.dev0 documentation
    permalink -
    - https://www.pygame.org/docs/ref/draw.html#pygame.draw.circle
    pygame python
  • Making Games with Python & Pygame
    source code  et explications détaillées
    permalink -
    - https://inventwithpython.com/pygame/
    pygame python
  • Creating a 13 line backdoor worry free of A/V - TrustedSec - Information Security
    voir aussi :
    https://www.youtube.com/watch?v=p2u5iOKLrt8
    https://www.youtube.com/watch?v=tNvsBzNoiMU
    https://0x00sec.org/t/how-to-make-a-reverse-tcp-backdoor-in-python-part-1/1038
    https://www.trustedsec.com/june-2011/creating-a-13-line-backdoor-worry-free-of-av/
    permalink -
    - https://www.trustedsec.com/june-2011/creating-a-13-line-backdoor-worry-free-of-av/
    backdoor python
  • Welcome to PyInstaller official website — PyInstaller
    permalink -
    - http://www.pyinstaller.org/
    python
  • Bottle - Full Stack Python
    ressources pour python bottle
    permalink -
    - https://www.fullstackpython.com/bottle.html
    bottle python
  • ZeroBin
    seb a fait un petit script pour récupérer des citations sur un site. Il utilise UserDict pour stocker les pages visitées en faisant un wrapper pour sqlite... c'est cool !

    Après il prend lxml pour parser le html... parce qu'il aime bien xpath... moi pas trop
    Merci Seb pour le partage, j'ai encore appris un truc !
    permalink -
    - http://sebsauvage.net/paste/?12bf3badbd066925#24uaJVn4zDNKymWTEYzOIAdInksekhSyCJYvWqw7/Qw
    python
  • The 10 Most Common Mistakes That Python Programmers Make | Toptal
    Ben, j'en apprends des choses !! à garder sous le coude.
    permalink -
    - http://www.toptal.com/python/top-10-mistakes-that-python-programmers-make
    python
  • Nuitka Home | Nuitka Home
    via sametmax : http://sametmax.com/le-don-du-mois-nuitka/

    Compile un programme python pour le rendre executable stanalone...
    permalink -
    - http://nuitka.net/
    python
  • Scrapy | A Fast and Powerful Scraping and Web Crawling Framework
    via seb : http://sebsauvage.net/links/?e_XbJQ
    permalink -
    - http://scrapy.org/?utm_content=bufferbca32&utm_medium=social
    python scraper webscraping
  • itertools.product fait sauter des boucles imbriquées | Sam & Max
    permalink -
    - http://sametmax.com/itertools-product-fait-sauter-des-boucles-imbriquees/
    python
  • python - How to automatically start supervisord on Linux (Ubuntu) - Server Fault
    https://github.com/Supervisor/initscripts
    permalink -
    - https://serverfault.com/questions/96499/how-to-automatically-start-supervisord-on-linux-ubuntu
    python supervisor
  • Riverbank | Software | PyQt | What is PyQt?
    permalink -
    - https://riverbankcomputing.com/software/pyqt/intro
    pyqt python
  • Découverte de l'interpréteur interactif IPython
    permalink -
    - http://eric-pommereau.developpez.com/tutoriels/introduction-ipython/
    ipython python
  • PEP 0008 -- Style Guide for Python Code | Python.org
    permalink -
    - https://www.python.org/dev/peps/pep-0008/#blank-lines
    memo python
  • Aller plus loin avec les hash maps en Python | Sam & Max
    permalink -
    - http://sametmax.com/aller-plus-loin-avec-les-hash-maps-en-python/
    dict memo python
  • Réagir à un changement sur un fichier avec watchdog | Sam & Max
    A creuser...
    permalink -
    - http://sametmax.com/reagir-a-un-changement-sur-un-fichier-avec-watchdog/
    python ut
  • Beautiful Soup Documentation — Beautiful Soup 4.4.0 documentation
    encoding guessing !

    from bs4 import UnicodeDammit
    dammit = UnicodeDammit("Sacr\xc3\xa9 bleu!")
    print(dammit.unicode_markup)
    # Sacré bleu!
    dammit.original_encoding
    # 'utf-8'
    permalink -
    - https://beautiful-soup-4.readthedocs.org/en/latest/#unicode-dammit
    beautifulsoup encoding python
  • comment installer python sous linux debian ubuntu, formation DIF python à Grenoble Lyon
    permalink -
    - http://www.rasadacrea.com/fr/cours-informatiques/comment-installer-python
    python
  • Extensions Registry | Flask (A Python Microframework)
    flask extensions :
       flask-Login
       flask_seasurf (anti CSRF)
       flask-sijax (AJAX)
       flask-uploads
       flask-WTF (forms with anti CSRF)
    permalink -
    - http://flask.pocoo.org/extensions/
    flask python
  • [Python] Python ctypes BigEndianStructure - Pastebin.com
    en lien avec : http://sametmax.com/lire-un-format-binaire-en-python-avec-struct/

    decode header with ctypes :

    import ctypes

    class Header_Decoder(ctypes.BigEndianStructure): # {
       _pack_ = 1
       _fields_ = [
           ('protocol_id', ctypes.c_uint8, 8),      # 1 byte:  byte 1,      bits 00-07
           ('segmentation', ctypes.c_uint8, 3),     # 3 bits:  byte 2,      bits 08-10
           ('transaction_type', ctypes.c_uint8, 5), # 5 bits:  byte 2,      bits 11-15
           ('packet_length', ctypes.c_uint32),      # 4 bytes: bytes 3-6,   bits 16-47
           ('checksum', ctypes.c_uint16),           # 2 bytes: bytes 7-8,   bits 48-63
       ]
    # } Header_Decoder

    HEADER_LENGHT_BYTES = ctypes.sizeof(Header_Decoder)

    packet = b'\xFF\x10\x00\x00\x00\x0C\x00\xE3\x48\x65\x79\x21'

    header = Header_Decoder.from_buffer_copy(packet[0 : 0 + HEADER_LENGHT_BYTES])

    print("Protocol ID:", header.protocol_id)
    print("Segmentation:", header.segmentation)
    print("Transaction type:", header.transaction_type)
    print("Checksum:", header.checksum)
    print("Data:", packet[HEADER_LENGHT_BYTES : header.packet_length].decode('ascii'))
    permalink -
    - http://pastebin.com/G7FjUJLh
    python
Links per page: 20 50 100
◄Older
page 2 / 10
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.