w3neu.net::bookmark
タグクラウド
ピクチャーウォール
日々
RSSフィード
  • RSSフィード
  • ATOM Feed
  • Daily Feed
フィルター

ページあたりのブックマーク数

  • 20 links
  • 50 links
  • 100 links

Display

タグのないブックマークをフィルタする
結果 46 件 タグ付け python  ✕
面倒なブラウザ操作をSeleniumを使って自動化する-Vol.03(環境構築編) / 開発者向けブログ・イベント | GMO Developers https://developers.gmo.jp/19955/#chrome%E3%83%89%E3%83%A9%E3%82%A4%E3%83%90%E3%83%BC%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB-2
Wed May 15 09:01:29 2024 archive.org
thumbnail
チュートリアルとしてよく纏まっている
automation install Python Selenium tutorial
PyPI · The Python Package Index https://pypi.org/
Wed May 15 08:31:40 2024 archive.org
thumbnail
pip install が弾かれるときはここから直接入手だ
index library organized Python search
【会社でPython・内緒】社内オフラインでpipを実施する方法 | だんにこブログ https://danniko.blog/programming/proxy-pipinstall/
Wed May 15 08:30:32 2024 archive.org
まぁオンラインでインストーラーにアクセスできる環境なら内緒とは言わない
install library offline pip Python
GitHub - facebookresearch/audiocraft: Audiocraft is a library for audio processing and generation with deep learning. It features the state-of-the-art EnCodec audio compressor / tokenizer, along with MusicGen, a simple and controllable music generation LM with textual and melodic conditioning. https://github.com/facebookresearch/audiocraft
Sun Aug 27 12:16:35 2023 archive.org
thumbnail
音楽自動生成プロジェクト
generator github music openSource Python torch web
# Keygen program for Siglent oscilloscopesimport hashlib# You get this b - Pastebin.com https://pastebin.com/fygAJy6y
Fri Jul 9 23:52:21 2021 archive.org
# Keygen program for Siglent oscilloscopes

import hashlib

# You get this by running "SCOPEID?" at the SCIP prompt and removing the dashes
SCOPEID = '0000000000000000'
# Replace this with your SN
SN = 'SDS00000000000'
# This is one of the four options below
Model = 'SDS1000X-E'
# 'SDS1000X-E', 'SDS2000X-E', 'SDS2000X+', 'SDS5000X', 'ZODIAC-'

bwopt = ('25M', '40M', '50M', '60M', '70M', '100M', '150M', '200M',
         '250M', '300M', '350M', '500M', '750M', '1000M', 'MAX')
otheropt = ('AWG', 'WIFI', 'MSO', 'FLX',
            'CFD', 'I2S', '1553', 'FG', '16LA')

hashkey = '5zao9lyua01pp7hjzm3orcq90mds63z6zi5kv7vmv3ih981vlwn06txnjdtas3u2wa8msx61i12ueh14t7kqwsfskg032nhyuy1d9vv2wm925rd18kih9xhkyilobbgy'

def gen(x):
    h = hashlib.md5((
        hashkey +
        (Model+'\n').ljust(32, '\x00') +
        opt.ljust(5, '\x00') +
        2*(((SCOPEID if opt in bwopt else SN) + '\n').ljust(32, '\x00')) +
        '\x00'*16).encode('ascii')
    ).digest()
    key = ''
    for b in h:
        if (b <= 0x2F or b > 0x39) and (b <= 0x60 or b > 0x7A):
            m = b % 0x24
            b = m + (0x57 if m > 9 else 0x30)
        if b == 0x30:
            b = 0x32
        if b == 0x31:
            b = 0x33
        if b == 0x6c:
            b = 0x6d
        if b == 0x6f:
            b = 0x70
        key += chr(b)
    return key.upper()

for opt in bwopt:
    print('{:5} {}'.format(opt, gen(SCOPEID)))
for opt in otheropt:
    print('{:5} {}'.format(opt, gen(SN)))
hack oscilloscope python script Siglent tutorial
kripken/emscripten - GitHub https://github.com/kripken/emscripten
Tue May 24 08:26:01 2011 archive.org
thumbnail
PythonやLuaスクリプト言語をウェブ上でJavaScriptとして実行できるツール
application compiler CUI javaScript Lua openSource Python web
The Ren'Py Visual Novel Engine http://www.renpy.org
Thu Jan 13 04:20:16 2011 archive.org
テキストアドベンチャーゲームを作るのに良さげなフレームワーク
framework game library Python text
Python による日本語自然言語処理 http://nltk.googlecode.com/svn/trunk/doc/book-jp/ch12.html
Tue Nov 16 06:21:59 2010 archive.org
Pythonだけじゃなくどんな言語でも、日本語の処理系作るなら一通り読むと為になるねぇ。きっと
language linguistics programming Python resource
ことぶ記: GerbMerge http://www.yapan.org/diary/2006/09/gerbmerge.html
Thu Oct 7 08:44:18 2010 archive.org
ガーバーファイルをまとめるためのツールGerbMargeの紹介。
electricity freeWare gerber Python tutorial utility
don-gabacho - Project Hosting on Google Code http://code.google.com/p/don-gabacho
Mon May 17 04:20:50 2010 archive.org
GAEによる帳簿出力システム
business generator googleCode openSource Python receipt report
elFinder - file manager for web http://elrte.ru/en/elfinder
Thu Apr 15 08:06:44 2010 archive.org
オンラインファイルマネージャ。eXtplorerに対向できるかなー
file manager online openSource PHP Python server web
reStructuredText http://lowlife.jp/yasusii/wiki/restructuredtext.html
Tue Mar 23 02:59:33 2010 archive.org
Pythonコードに埋め込む目的で提唱されてる文書形式についての解説。
format openSource Python text
phpsh -- an interactive shell for php http://www.phpsh.org
Thu Feb 4 04:34:49 2010 archive.org
PHPでシェル。バックエンドはPythonらしいけど
openSource PHP Python shell
pystachio - Project Hosting on Google Code http://code.google.com/p/pystachio
Thu Dec 10 06:40:52 2009 archive.org
Pythonで書いたコードをJavaScriptで実行してくれるというインタプリタみたいなツール
googleCode javaScript MIT Python translation
p2k's pygowave at master - GitHub http://github.com/p2k/pygowave
Thu Dec 10 05:14:33 2009 archive.org
thumbnail
Pythonで書かれたGoogleWaveサーバ互換なサーバ。砂区と主オープンベータが来るまでは、こういうので我慢しなくちゃだなぁ
compatible github googleWave openSource Python server
GerbMerge -- A Gerber-file merging program http://claymore.engineer.gvsu.edu/~steriana/Python/gerbmerge
Thu Nov 19 04:08:46 2009 archive.org
Pythonで動作するガーバファイル結合ツール。面付けしたい時とかに
DIY freeUse garver Python utility
Portable Python http://portablepython.com
Thu Oct 15 00:19:50 2009 archive.org
ポータブルなIDE付きPythonプログラミング環境
development environment IDE portable programming Python USB
Scrapy | An open source web scraping framework for Python http://scrapy.org
Thu Oct 8 01:09:06 2009 archive.org
Python用のウェブスクレイピングライブラリ。
library openSource Python scraping web
CSSHttpRequest - Hacks - nb.io http://nb.io/hacks/csshttprequest
Thu Oct 8 01:08:23 2009 archive.org
CSSを使ってクロスドメイン通信しちゃおうか、というアクロバティックな実験的スクリプト。
crossDomain CSS github javaScript openSource PHP Python Ruby
Kazuho@Cybozu Labs: URL と Base64 http://labs.cybozu.co.jp/blog/kazuho/archives/2006/01/url_base64.php
Wed Oct 7 08:52:10 2009 archive.org
URLセーフなBase64エンコードデコードをPythonとPerlとPHPでどう書くか。
Base64 code decode encode Perl PHP Python snippet
Tornado Web Server http://www.tornadoweb.org
Fri Sep 11 09:10:13 2009 archive.org
FriendFeedの使っているリアルタイムウェブ向けに開発されたウェブサーバ。多数同時接続に強そう
FriendFeed httpd openSource Python server web
xantus's mojo-paste at master - GitHub http://github.com/xantus/mojo-paste/tree/master
Thu Sep 10 03:58:40 2009 archive.org
thumbnail
コードスニペット保存サービスが構築できるよ。
code Django openSource Python service snippet web
MOONGIFT: » 高性能!StackOverflow.comクローン「CNProg」:オープンソースを毎日紹介 http://www.moongift.jp/2009/09/cnprog
Tue Sep 1 03:00:39 2009 archive.org
質問サイト、stacoverflow.comのDjango版クローン。GAEとかで動くのかな
clone Django FAQ openSource Python
gae-django-cms - Project Hosting on Google Code http://code.google.com/p/gae-django-cms
Tue Aug 11 01:41:31 2009 archive.org
GoogleAppEngine上でDjangoなCMSを動作させる
CMS Django GoogleAppEngine googleCode openSource Python
MIX Online's Gestalt: Write Ruby, Python and XAML in your HTML pages. http://www.visitmix.com/labs/gestalt
Tue Jul 28 03:34:49 2009 archive.org
SilverlightのDLLを呼び出してきてIronPythonとかIronRubyをウェブページ上でスクリプトとして動作させることが出来るという。ProjectPage→http://www.codeplex.com/Gestalt
HTML IronPython IronRuby javaScript Microsoft openSource Python Ruby Silverlight web
OpenTumblr http://blog.opentumblr.com
Wed Jul 22 02:55:57 2009 archive.org
Pythonで書かれたTumblrクライアント。閲覧できないので投稿用と割り切って使えば便利そう。
client MacOSX post Python tumblr
Scriptlets - Quick web scripts http://www.scriptlets.org
Mon Jul 13 03:01:14 2009 archive.org
PHPやPython、JavaScriptなどのコードを実行して出力結果をプレビューできるオンラインサービス。セキュリティ的に心配だけど、便利。
environment javaScript online PHP programming Python service web
darwin's firepython at master - GitHub http://github.com/darwin/firepython/tree/master
Tue Jun 30 00:49:02 2009 archive.org
Pythonもfirebugでデバグ!
debug firebug firefox plugin Python
ajaxzip3 - Google Code http://code.google.com/p/ajaxzip3
Mon Jun 29 20:41:44 2009 archive.org
JSONP形式にも対応した、郵便番号検索用API提供ライブラリ。
JSON JSONP library Python zipCode
mongoose - Google Code http://code.google.com/p/mongoose
Mon Jun 29 20:38:05 2009 archive.org
超軽量ウェブサーバ。組み込みもOK。
embedded httpd openSource Python server web
Patrick F. Spear » Projects » gcalcron http://www.pfspear.net/projects/gcalcron
Mon Jun 29 16:38:09 2009 archive.org
GoogleCalendarからCronスケジュールを生成、実行させることが出来るんだそうな。cronへの依存度が高いなら、タスク実行スケジュールの管理に便利そう。
Calendar cron Google openSource Python
Home - Hatta Wiki http://hatta.sheep.art.pl
Fri Dec 12 23:36:46 2008 archive.org
Python/Mercurialで動く1ファイルwikiツール。Pythonの実装読むのも楽しそうだな。
Mercurial openSource Python wiki
基礎からはじめるPython---目次:ITpro http://itpro.nikkeibp.co.jp/article/COLUMN/20080207/293301/?ST=techskill
Sat Aug 16 18:29:08 2008 archive.org
thumbnail
Pythonの入門記事。GoogleAppEngineでの稼働まで解説
document Python tutorial
smtp2web - Google Code http://code.google.com/p/smtp2web
Fri Jul 25 06:41:37 2008 archive.org
ウェブアプリが自分自身に届くメールを解釈出来るようにするライブラリ。
GoogleCode library mail openSource Python web
phppython - Google Code http://code.google.com/p/phppython
Fri Jul 25 05:35:20 2008 archive.org
PHPのコードをPythonに変換してくれるツール。
GoogleCode openSource PHP Python transformer
Python Imaging Library (PIL) http://www.pythonware.com/products/pil
Thu May 29 20:34:40 2008 archive.org
Python向けの画像処理ライブラリ。ImageMagick使うよりも軽いかも。
Django imageProcessing library Python
lxml http://codespeak.net/lxml
Thu May 29 20:32:51 2008 archive.org
Python向けのxml操作ライブラリ。世話に...なるか?
library openSource Python XML
rietveld - Google Code http://code.google.com/p/rietveld
Tue May 20 20:49:59 2008 archive.org
thumbnail
Python作者謹製のソースコード共有レビュー環境。GoogleAppで動いてる
coding development googlecode openSource python
zoto-server - Google Code http://code.google.com/p/zoto-server
Thu Apr 3 16:23:46 2008 archive.org
某サイトの写真共有システムがOpenSourceに。熱いなー
file image python server sharing
gmapcatcher - Google Code http://code.google.com/p/gmapcatcher
Tue Apr 1 15:48:23 2008 archive.org
GoogleMapのオフライン版アプリ。
googlecode map python Windows
SourceForge.jp: Project Info - ニコニコ動画保存 Nicovideo Downloader http://sourceforge.jp/projects/nicovideo-dl
Fri Jan 25 18:23:55 2008 archive.org
ニコ動のFLVを保存するPythonスクリプト。CUIで動くからサーバにつっこむのも容易だけど、規約的にアレだな...
openSource python video
Phatch - Photo Batch Processor http://sd-2986.dedibox.fr/photobatch
Fri Nov 9 14:13:04 2007 archive.org
画像変換用プログラムをパッチの組み合わせで作れるという。一度作ったらD&Dだけでよくなるのは便利そう。
converter file image python Windows
SourceForge.net: unalog http://sourceforge.net/projects/unalog
Tue Sep 25 08:32:33 2007 archive.org
Pythonで動作するっぽいブックマーク系ウェブアプリ
bookmark openSource python
Webstemmer http://www.unixuser.org/~euske/python/webstemmer/index-j.html
Mon Sep 3 07:56:17 2007 archive.org
Pythonで実装された、タイトル+本文クローラ。コレは来るかも...
crawler openSource python text
Cybozu Developer Network: フレームワーク 「 Thrift 」 調査報告 http://cydn.cybozu.co.jp/2007/06/thrift.html
Tue Jun 26 13:46:04 2007 archive.org
C++,Java,PHP,RubyやPythonでも使えるフレームワークだそうな。Facebookで使用されている物らしい
development framework java openSource PHP python ruby
Cybozu Developer Network: Python調査報告 (2006/10) http://cydn.cybozu.co.jp/files/python_survey_at_cydn.html
Thu Dec 14 22:52:41 2006 archive.org
サイボウズによるPython言語のレポート。
document IT programming python
5801 links