Shopee Scraper: A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil

A web scraper in python that extract sales, price, avaliable stock, location and more of a given seller in Brazil. The project was created in python 3 and requires only 3 libraries that may need to be installed (in case you don’t have any of them). They are: requests, date and time. Date and Time are default libraries for Linux and Mac users, but if you’re running Windows, make sure to install them using pip. You can easily install requests […]

Read more

A Python package for searching and getting results with many different search engines

A fast, efficiency python package for searching and getting search results with many different search engines. To install the package, run the following command: python3 -m pip install search Or install from Github: python3 -m pip install git+https://github.com/Neurs1/search.git This package support many different search engines. Provide the best speed with BS4 using lxml. Fix bugs, adapt new features and page design from search engines. Output in dict type, easier to interact with. Search using multiple search engines! import search search.google(“Python”) […]

Read more

Item2Vec Wrapped With Python

Gensim 4.x and sklearn Introduction General informations Methods Description GridSearch and BayesSearch Usage BayesSearch Example Prod2Vec or Item2Vec produces embedding for items in a latent space. The method is capable of inferring item-item relations even when user information is not available. It’s based on NLP model Word2Vec. Click here to know more This project provide a class that encapsulates Item2Vec model (word2vec gensim model) as a sklearn estimator. It allows the simple and efficient use of the Item2Vec model by […]

Read more

Streamlit app for pump it up project

This is a basic app that performs two functions First, it allows for the easy mapping of the data on the functionality of water pumps to allow hypothesis formation Second, it gives access to a trained classification model that will predict whether a hypothetical pump is function from a set of input variables A full account of the creation of the model can be found at https://github.com/nonlocal-lia/pump_it_up_competition A working copy of the app can be accessed at https://share.streamlit.io/nonlocal-lia/pump_streamlit/main/front_end.py GitHub View […]

Read more

ABScanner – Python script that looks for open ports/targets

Python script that looks for open ports/targets Using You must specify a target or a network with the subnet mask Type of scans: If you just put the target, the scanner script with all types of scans: ./scanner.py 192.168.0.10 ./scanner.py 192.168.0.10/24 To choose a type of scan, you have to specify it (it doesn’t care about the case); ./scanner.py syn 192.168.0.10 ./scanner.py ICMP 192.168.0.10/24 ./scanner.py arp 10.10.10.10/16 ./scanner.py UDP 192.168.0.254 GitHub View Github    

Read more

Blender addon to quickly view image nodes in Blender’s image viewer

A Blender addon to quickly view images from image nodes in Blender’s image viewer. Support Created for Blender 3.0.0 Installing Download this addon as a zip Inside Blender Preferences > Addons, click Install from File Select the zip you downloaded, and install Using Right click image node in node editor > View Image Node The image will show up in the UV Editor or Image Editor on your screen. GitHub View Github    

Read more
1 275 276 277 278 279 941