V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
Selenium39
0D
V2EX  ›  Python

哪里能下载越南语 cp1258 的编码集

  •  
  •   Selenium39 · Apr 6, 2021 · 2989 views
    This topic created in 1853 days ago, the information mentioned may be changed or developed.
    4 replies    2021-04-07 09:08:22 +08:00
    koebehshian
        1
    koebehshian  
       Apr 6, 2021   ❤️ 2
    koebehshian
        2
    koebehshian  
       Apr 6, 2021
    我刚下下来看了下,越南语的在 lib/cp1258.h 头文件中
    dll30
        3
    dll30  
       Apr 6, 2021
    奇怪的需求增加了Σ( ° △ °|||)︴
    Selenium39
        4
    Selenium39  
    OP
       Apr 7, 2021   ❤️ 1
    http://code.cside.com/3rdpage/us/windows/windows-1258.html
    这里能够看到所有编码.

    import requests
    from bs4 import BeautifulSoup

    url = "http://code.cside.com/3rdpage/us/windows/windows-1258.html"
    response = requests.request(method='get', url=url)
    html_doc = response.text
    soup = BeautifulSoup(html_doc, 'html.parser')
    for input in soup.find_all('input', class_='ix'):
    with open("label_viet.txt", "a") as f:
    f.writelines(input.get('value')+"\n")
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2455 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 30ms · UTC 04:53 · PVG 12:53 · LAX 21:53 · JFK 00:53
    ♥ Do have faith in what you're doing.