cleanup + more args
This commit is contained in:
34
README.md
34
README.md
@@ -1,17 +1,34 @@
|
||||
<h1 align="center">
|
||||
Pip Install Bitches 😩
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://img.shields.io/pypi/v/bitches?style=flat-square" </a>
|
||||
<img src="https://img.shields.io/pypi/l/bitches?style=flat-square" </a>
|
||||
<img src="https://img.shields.io/pypi/dm/bitches?style=flat-square" </a>
|
||||
<img src="https://img.shields.io/github/stars/Rdimo/pip-install-bitches?label=Stars&style=flat-square" </a>
|
||||
<img src="https://img.shields.io/github/forks/Rdimo/pip-install-bitches?label=Forks&style=flat-square" </a>
|
||||
<kbd>
|
||||
<img src="https://raw.githubusercontent.com/Rdimo/images/master/pip-install-bitches/Roxy-pip-install-bitches.jpg"></img>
|
||||
</kbd>
|
||||
</p>
|
||||
|
||||
#### pip-install-bitches was made by
|
||||
<p align="center">
|
||||
<img src="https://img.shields.io/pypi/v/bitches?style=flat-square">
|
||||
<img src="https://img.shields.io/pypi/dm/bitches?style=flat-square">
|
||||
<img src="https://sonarcloud.io/api/project_badges/measure?project=Rdimo_pip-install-bitches&metric=ncloc">
|
||||
<img src="https://img.shields.io/github/stars/Rdimo/pip-install-bitches?label=Stars&style=flat-square">
|
||||
<img src="https://img.shields.io/github/forks/Rdimo/pip-install-bitches?label=Forks&style=flat-square">
|
||||
</p>
|
||||
|
||||
<h2 align="center">
|
||||
pip-install-bitches was made by
|
||||
|
||||
Love ❌ code ✅
|
||||
|
||||
</h2>
|
||||
|
||||
---
|
||||
|
||||
### 🎈・Code example
|
||||
|
||||
Example of how you can use [bitches](https://pypi.org/project/bitches/)
|
||||
|
||||
```py
|
||||
import bitches #valid
|
||||
|
||||
@@ -19,5 +36,8 @@ bitches.get()
|
||||
|
||||
or
|
||||
|
||||
bitches.get("yes") #yes is the name of the directory that will be created
|
||||
bitches.get(
|
||||
"yes", # directory name (default: "bitches")
|
||||
5 # amount of bitches (default: randint(5, 10))
|
||||
)
|
||||
```
|
||||
|
||||
@@ -1,49 +1,31 @@
|
||||
#how about you import some bitches
|
||||
import os
|
||||
# how about you import some bitches
|
||||
import requests
|
||||
from os import mkdir, sep
|
||||
from random import randint
|
||||
from threading import Thread
|
||||
from zipfile import ZipFile, ZIP_DEFLATED
|
||||
|
||||
api = 'https://api.waifu.pics/nsfw/waifu'
|
||||
|
||||
def get(dirr=None):
|
||||
'''can choose directory name too'''
|
||||
directory = "bitches"
|
||||
if dirr:
|
||||
directory = dirr
|
||||
try: os.mkdir(directory)
|
||||
except Exception: pass
|
||||
for i in range(randint(5, 10)):
|
||||
Thread(target=bitches, args=(directory, )).start()
|
||||
|
||||
def bitches(dir_):
|
||||
for i in range(randint(3, 7)):
|
||||
def get(directory="bitches", amount=randint(5, 10)):
|
||||
'''can choose directory name too'''
|
||||
try:
|
||||
mkdir(directory)
|
||||
except Exception:
|
||||
pass
|
||||
for i in range(amount):
|
||||
Thread(target=bitches, args=(directory, amount)).start()
|
||||
|
||||
|
||||
def bitches(dir_, amount=randint(3, 7)):
|
||||
for i in range(amount):
|
||||
req_url = requests.get(api)
|
||||
url = req_url.json()['url']
|
||||
if not req_url.ok:
|
||||
print("error: "+req_url)
|
||||
with open(dir_+os.sep+url[21:], 'wb') as f:
|
||||
with open(dir_+sep+url[21:], 'wb') as f:
|
||||
response = requests.get(url, stream=True)
|
||||
for block in response.iter_content(1024):
|
||||
if not block:
|
||||
break
|
||||
f.write(block)
|
||||
|
||||
def tempDir():
|
||||
system = os.name
|
||||
if system == 'nt':
|
||||
return os.getenv('temp')
|
||||
elif system == 'posix':
|
||||
return '/tmp/'
|
||||
|
||||
def zipfile(_file):
|
||||
_zipfile = os.path.join(os.getcwd(), 'bitches.zip')
|
||||
zipped_file = ZipFile(_zipfile, "w", ZIP_DEFLATED)
|
||||
abs_src = os.path.abspath(_file)
|
||||
for dirname, _, files in os.walk(_file):
|
||||
for filename in files:
|
||||
absname = os.path.abspath(os.path.join(dirname, filename))
|
||||
arcname = absname[len(abs_src) + 1:]
|
||||
zipped_file.write(absname, arcname)
|
||||
zipped_file.close()
|
||||
4
setup.py
4
setup.py
@@ -1,7 +1,7 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
__name__ = "bitches"
|
||||
__version__ = "0.0.2"
|
||||
__version__ = "0.0.3"
|
||||
|
||||
setup(
|
||||
name=__name__,
|
||||
@@ -11,7 +11,7 @@ setup(
|
||||
description="how about you pip install some bitches",
|
||||
long_description_content_type="text/markdown",
|
||||
long_description=open("README.md", encoding="utf-8").read(),
|
||||
url = "https://github.com/rdimo/pip-install-bitches",
|
||||
url="https://github.com/rdimo/pip-install-bitches",
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/rdimo/pip-install-bitches/issues",
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user