Looking for some free python script to scrape web pages to CSV or JSON.: https://www.reddit.com/r/Python/comments/504hgi/looking_for_some_free_python_script_to_scrape_web/
reddit
Looking for some free python script to scrape web... • /r/Python
I want to scrape the web pages to CSV or JSON. What are the best free resources and scripts available?
drawing svg in python with paths not shapes or convert them: http://stackoverflow.com/questions/39165287/drawing-svg-in-python-with-paths-not-shapes-or-convert-them
Stack Overflow
drawing svg in python with paths not shapes or convert them
I'm making a microscope filter generator, first it draws svg image then they are converted in 3D for 3d printing.
I used 'svgwrite'
However this librayry generates svg with shapes (line, circle, ...
I used 'svgwrite'
However this librayry generates svg with shapes (line, circle, ...
Finally stable release of Django JET - responsive and fresh admin interface: https://www.reddit.com/r/Python/comments/504vcl/finally_stable_release_of_django_jet_responsive/
reddit
Finally stable release of Django JET - responsive and... • /r/Python
2 points and 0 comments so far on reddit
How "generate " multiple TCP clients using Threads instead of opening multiple instances of the terminal and run the script several times?: http://stackoverflow.com/questions/39005901/how-generate-multiple-tcp-clients-using-threads-instead-of-opening-multiple-i
Stackoverflow
How "generate " multiple TCP clients using Threads instead of opening multiple instances of the terminal and run the script several…
I wrote the code for a simple TCP client:
from socket import *
# Configurações de conexão do servidor
# O nome do servidor pode ser o endereço de
# IP ou o domínio (ola.python.net)
serverHost = '
from socket import *
# Configurações de conexão do servidor
# O nome do servidor pode ser o endereço de
# IP ou o domínio (ola.python.net)
serverHost = '
I am making a RPG game creation interface, criticism welcomed: https://www.reddit.com/r/Python/comments/504yt4/i_am_making_a_rpg_game_creation_interface/
reddit
I am making a RPG game creation interface, criticism... • /r/Python
2 points and 0 comments so far on reddit
Visual Studio Code Python extension: slow autocompletion: https://www.reddit.com/r/Python/comments/50513t/visual_studio_code_python_extension_slow/
reddit
Visual Studio Code Python extension: slow autocompletion • /r/Python
Hi all, I was looking for a better alternative to Spyder and kind of started to like Visual Studio Code quite a lot. I installed the "Python"...
What OSS project are you really proud of that still gets used?: https://www.reddit.com/r/Python/comments/505dpy/what_oss_project_are_you_really_proud_of_that/
reddit
What OSS project are you really proud of that still... • /r/Python
Last week one of my first OSS [Python Projects broke.](https://github.com/GeneralMills/pytrends). I was wondering if it was worth fixing when I...
How to randomly divide dataset into train/test given a ratio?: https://www.reddit.com/r/Python/comments/505nae/how_to_randomly_divide_dataset_into_traintest/
reddit
How to randomly divide dataset into train/test given a... • /r/Python
I recently found out that bash scripts isn't that good at handling with floating number, from which my prior implementation didn't work as...
DTrace and Python [slides]: https://github.com/pyconsk/2016-slides/blob/master/Python_and_DTrace/DTrace - pyconSK.pdf
What is a cool thing in Python to show someone what it can do? (X-post from r/learnprogramming): https://www.reddit.com/r/Python/comments/506iw7/what_is_a_cool_thing_in_python_to_show_someone/
reddit
What is a cool thing in Python to show someone what it... • /r/Python
1 points and 2 comments so far on reddit
Daroyan - a modern utility tool which integrates CloudFlare with Fail2Ban: https://www.reddit.com/r/Python/comments/506rbr/daroyan_a_modern_utility_tool_which_integrates/
reddit
Daroyan - a modern utility tool which integrates... • /r/Python
0 points and 0 comments so far on reddit
I made a text to image encoder: https://www.reddit.com/r/Python/comments/506qb8/i_made_a_text_to_image_encoder/
reddit
I made a text to image encoder • /r/Python
As a little one hour project I made a little encoder that takes a sentence from the user then converts every character to a number and lastly put...
tqdm: fast and extensible progress bars in an instant: https://www.reddit.com/r/Python/comments/507nay/tqdm_fast_and_extensible_progress_bars_in_an/
reddit
tqdm: fast and extensible progress bars in an instant
Your loop: for i in iterable: ... now with a progress bar, from tqdm import tqdm for i in tqdm(iterable): ... like...
Getting random numbers from a distribution: https://www.reddit.com/r/Python/comments/507wv3/getting_random_numbers_from_a_distribution/
reddit
Getting random numbers from a distribution • /r/Python
Hi, if I want random numbers to be distributed according to w(x) = x**-0.5, how do I do this? Needs to be so that if I use f(x) with x the...
[Help] Compiling code and resource files into standalone executable: https://www.reddit.com/r/Python/comments/5081o9/help_compiling_code_and_resource_files_into/
reddit
[Help] Compiling code and resource files into... • /r/Python
Hey all, As the title explains, I'm having trouble compiling my GUI into a standalone executable. I'm using pyinstaller. I created a SPEC file...