Vadim Polutsigan
Offer Vadim work on your next project.
Rating
Language proficiency level
Skills and abilities
Programming
Design & art
Services
Writing
Portfolio
-
23 USD Chevron on the Uniform
Vector GraphicsBadges for the repair and restoration battalion
-
20 USD Movie search parser
Pythonimport requests
from bs4 import BeautifulSoup
from time import sleep
… headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)
AppleWebKit/537.36 (KHTML, like Gecko)"
" Chrome/101.0.4951.67 Safari/537.36"}
page = int( input('how many pages need to be scraped: '))
def card_film():
for page_num in range(0, page):
URL = f'https://lordserial.live/anime-serialy/page/{page_num}/'
response = requests.get(URL, headers=headers).text
soup = BeautifulSoup(response, 'lxml')
card = soup.find_all('div', class_='th-item')
for data in card:
name = data.find('div', class_='th-title').text
card_url = data.find('a', class_='th-in with-mask').get('href')
yield name, card_url
items = []
for title, url in card_film():
sleep(1)
items.append({'title': title, 'url': url,})
-
Simple parser for extracting product link
Pythonpython
from LxmlSoup import LxmlSoup
import requests
… html = requests.get('https://sunlight.net/catalog').text # getting the HTML code of the site
soup = LxmlSoup(html) # creating an instance of the LxmlSoup class
links = soup.find_all('a', class_='cl-item-link js-cl-item-link js-cl-item-root-link') # getting the list of links and names
for i, link in enumerate(links):
url = link.get("href") # getting the product link
name = link.text() # extracting the name from the link block
price = soup.find_all("div", class_="cl-item-info-price-discount")[i].text() # extracting the price
print(i)
print(f"Url - {url}")
print(f"Name - {name}")
print(f"Price - {price}\n")
-
11 USD Calculator to calculate the potential profit when importing good
PythonImport Requests
Imported JSON
def calculate_profit(cost_of_goods, intermediary_percentage, delivery_cost):
… Calculate the total cost
total_cost = cost_of_goods * (1 + intermediary_percentage / 100) + delivery_cost
Calculate VAT
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299',
‘Content-Type’: ‘application/json’
The
The data = {
‘value’ = total_cost
‘vatRate’: 23
‘Type’: ‘brutto’
The
response = requests.post('https://www.chinskiraport.pl/calc/calcVAT', headers=headers, data=json.dumps(data))
vat = response.json()['result']
Calculate customs duties
The data = {
‘value’ = total_cost
‘Country’: ‘CN’
‘code’ is ‘8418’,
‘Quantity’ : 1,
'unitPrice': total_cost
The
response = requests.post('https://www.chinskiraport.pl/calc/calcCustoms', headers=headers, data=json.dumps(data))
customs_duties = response.json()['result']
# calculate Allegro commission and promotion fee
The data = {
'price': total_cost + vat + customs_duties,
'category': 1 # replace with the Allegro category ID for your product
The
response = requests.post('https://api.allegro.pl/calculator/fees', headers=headers, data=json.dumps(data))
allegro_fees = response.json()['output']['finalValue']
Calculate Profit
profit = cost_of_goods - total_cost - vat - customs_duties - allegro_fees
Return to Profit
The example usage
profit = calculate_profit(1000, 5, 200)
The Profit (Profit)
-
11 USD Chatbot for Dmart
PythonImport Requests
from bs4 import BeautifulSoup
Import time
… # set the URL of the dmarket website
URL = “https://www.dmarket.com/”
Create a list of items and their maximum prices
Items = {
“Item1”: 10.00
“Item2”: 20:00
“Item3”: 30.00
The
# set the interval for re-listing sold items (in seconds)
relist_interval = 3600 # one hour
Create a loop that runs continuously
while true:
Try to:
# send a GET request to the dmarket website
Response = requests.get (url)
Soup = BeautifulSoup(response.content, “html.parser”)
# iterate through the items and check their prices
for item, max_price in items.items():
Find the current price of the item on the website
current_price = float(soup.find("span", {"class": "price"}).text)
Check if the current price is lower than the maximum price
if current_price < max_price:
place a bid that is 1 cent higher than the current price
bid_price = current_price + 0.01
# insert code to place a bid here
# update the maximum price for the item
items[item] = bid_price
# wait for the specified interval before re-listing sold items
time.sleep (relist_interval)
Except for e:
# handle any errors that occur during the bidding process
print("An error occurred :", e)
Activity
| Latest proposals 10 | Budget | Added | Deadlines | Proposal | |
|---|---|---|---|---|---|
|
Refine the logo
16 USD
|
|||||
|
Logo design
45 USD
|
|||||
|
Update the company logo
23 USD
|
|||||
|
Creation of a logo for an image compression website
16 USD
|
|||||
|
It is necessary to refine the logo visually.
23 USD
|
|||||
|
Wedding monograms
16 USD
|
|||||
|
Logo for a fishing store
90 USD
|
|||||
|
A designer is needed to update the logo and create a recognizable icon (theme security/installation).
23 USD
|
|||||
|
Visual under chevron
23 USD
|
|||||
|
TECHNICAL TASK for the development / adjustment of a color logo
45 USD
|