Skip to content

Instantly share code, notes, and snippets.

import requests
import re
from bs4 import BeautifulSoup
#вызываемая функция для каждого раздела
def parse(page):
global kek
htmlPage = requests.get(page)
soup = BeautifulSoup(htmlPage.text , "html.parser")
while (soup.find('a' , id="link-pagination-next")) :
package by.iba.gomel;
import java.util.Scanner;
/**
* This class contains third dimensions array of char and tools for work with this array.
*
*/
public class CharArray {
private final char[][][] arrayOfChar;